errogaht / yandex-ocr-php
Unofficial PHP client for Yandex-translate OCR
1.0.6
2017-04-23 08:13 UTC
Requires
- php: >=5.5.0
- ext-curl: *
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-14 18:19:34 UTC
README
Now its not working, yandex ban it, but if you want you can repair it and create pull request
Unofficial PHP package to get results from Yandex translate OCR
Features:
- Upload image to Yandex Translate OCR and get response in PHP array
- Convert response to plain text
- Unit test
- Daily build guarantee that package is work, if you see build badge above green - that's mean package work right now
Install
composer require errogaht/yandex-ocr-php
Usage
You can see test file:
// can pass optional arguments: $langFrom, $langTo, API $url $client = new \Errogaht\YandexOCR\Client(); //tell path to recognizing file $client->setFilePath(__DIR__ . '/1e741d3b-ba67-42e5-8229-f07a72072c96.png'); //get response from Yandex translate $response = $client->request(); //convert response to plain text $texter = new \Errogaht\YandexOCR\Response2Text($response); $text = $texter->getText();
Contributing
Please see CONTRIBUTING for details.