Interface for communication with ABBYY cloud OCR
First, you have to register with ABBYY Cloud: https://cloud.ocrsdk.com/Account/Register
use ShoneZlo\AbbyyCloud\AbbyyClient;
$abbyy = new AbbyyClient('my app name', 'my-app-key');
$imagePath = '/absolute/path/to-image.jpg';
$text = $abbyy->performOcr($imagePath);
echo $text;