Files
DatBrowser/app/FileTools/OCR/IImageOCR.php
T
2025-06-09 16:27:14 +02:00

15 lines
305 B
PHP

<?php
namespace App\FileTools\OCR;
interface IImageOCR
{
/**
* Perform OCR on the given file.
*
* @param string $filePath The path to the file to be processed.
* @return string The extracted text from the file.
*/
public function performOCR(string $filePath): string;
}