Hello,
I have applied ProcessImage in my application C# with sucess , but just for one Photo (Prenom.jpg), and this is my code :
string language = "Arabic";
ProcessingSettings settings = new ProcessingSettings();
settings.SetLanguage(language);
settings.SetOutputFormat(OutputFormat.txt);
String sourceFilePath = @"C:\CINPROCESSING\Prenom.jpg";
OcrSdkTask task = restClient.ProcessImage(sourceFilePath, settings);
String outputFileBase = @"C:\CINPROCESSING\Prenom.txt";
task = waitForTask(task, restClient);
restClient.DownloadResult(task, outputFileBase);
I want to apply ProcessImage to multiple photos at same time : Prenom.jpg , Nom.jpg, Date.jpg
How i fix that?
Thanks,