OCRInterface.php 398 B

123456789101112131415
  1. <?php
  2. namespace App\Services\OCR;
  3. interface OCRInterface
  4. {
  5. /**
  6. * Recognize text from an image.
  7. *
  8. * @param string $imagePath Absolute path to the image file.
  9. * @param array $options Additional options for the OCR provider.
  10. * @return array Structured result from the OCR provider.
  11. */
  12. public function recognize(string $imagePath, array $options = []): array;
  13. }