1. Go to this page and download the library: Download ahmedghanem00/tesseract-ocr library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ahmedghanem00 / tesseract-ocr example snippets
$tesseract = new \ahmedghanem00\TesseractOCR\Tesseract();
$tesseract = new \ahmedghanem00\TesseractOCR\Tesseract("path/to/binary/location");
# OR, If you already have an initiated instance
$tesseract->setBinaryPath("path/to/binary/location");
$tesseract = new \ahmedghanem00\TesseractOCR\Tesseract(processTimeout: 3);
# OR
$tesseract->setProcessTimeout(2.5);
use ahmedghanem00\TesseractOCR\Enum\PSM;
# using PSM enum
$result = $tesseract->recognize("test.png", psm: PSM::SINGLE_BLOCK);
# OR by using id directly
$result = $tesseract->recognize("test.png", psm: 3);
use ahmedghanem00\TesseractOCR\Enum\OEM;
# using OEM enum
$result = $tesseract->recognize("test.png", oem: OEM::LEGACY_WITH_LSTM);
# OR by using id directly
$result = $tesseract->recognize("test.png", oem: 3);