Download the PHP package ahmedghanem00/tesseract-ocr without Composer
On this page you can find all versions of the php package ahmedghanem00/tesseract-ocr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ahmedghanem00/tesseract-ocr
More information about ahmedghanem00/tesseract-ocr
Files in ahmedghanem00/tesseract-ocr
Package tesseract-ocr
Short Description A PHP wrapper for Tesseract-OCR binary
License MIT
Informations about the package tesseract-ocr
Tesseract-OCR PHP Wrapper
A PHP wrapper for Tesseract-OCR binary.
Originally inspired from ddeboer/tesseract with added features + some Improvements.
Installation
`
Usage
if the tesseract is added to your path, You can just do:
``
Otherwise, You can do:
``
To specify the tesseract process timeout:
``
To specify a custom tessdata-dir:
``
To reset tessdata-dir to default:
``
To get version of the binary:
``
To get all the supported languages:
``
To OCR an Image:
``
Thanks to the Intervention/image package. The recognize method can accept different sources for an image:
- Path of the image in filesystem.
- URL of an image (allow_url_fopen must be enabled).
- Binary image data.
- Data-URL encoded image data.
- Base64 encoded image data.
- PHP resource of type gd
- Imagick instance
- Intervention\Image\Image instance
- SplFileInfo instance (To handle Laravel file uploads via Symfony\Component\HttpFoundation\File\UploadedFile)
To Specify the language(s):
``
To specify the Page-Segmentation-Model (PSM):
``
To specify the OCR-Engine-Mode (OEM):
``
To specify the DPI of the input image:
``
To make the recognize method output the result as a searchable PDF instead of raw text:
``
To specify words-file or patterns-file:
``
To set a config parameters:
``
You can also run tesseract --print-parameters
to see the list of available config parameters.
Licence
Package is licensed under the MIT License. For more info, You can take a look at the License File.
All versions of tesseract-ocr with dependencies
symfony/string Version ^6.0 || ^7.0
symfony/process Version ^6.0 || ^7.0
intervention/image Version ^2.7.0