using IronOcr;
int cancel_time = 1000;
// Opens a Large PDF which may need to be cancelled early
IronTesseract ocrTesseract = new IronTesseract() { Language = OcrLanguage.English };
var ocrInput = new OcrInput();
ocrInput.LoadPdf("large-report.pdf");
// Starts a read on the PDF using IronOCR with specified cancel time
OcrReadTask ocrRead = ocrTesseract.ReadAsync(ocrInput, cancel_time);
ocrRead.Wait();
Imports IronOcr
Private cancel_time As Integer = 1000
' Opens a Large PDF which may need to be cancelled early
Private ocrTesseract As New IronTesseract() With {.Language = OcrLanguage.English}
Private ocrInput = New OcrInput()
ocrInput.LoadPdf("large-report.pdf")
' Starts a read on the PDF using IronOCR with specified cancel time
Dim ocrRead As OcrReadTask = ocrTesseract.ReadAsync(ocrInput, cancel_time)
ocrRead.Wait()
Install-Package IronOcr
Délais d'attente
TimeoutMs fournit un délai optionnel en millisecondes, après lequel l'opération de lecture OCR sera annulée.
Similaire à AbortToken, TimeoutMS aide également à la lecture de gros fichiers d'entrée dans le cas où le programme ou l'application est bloqué pendant son exécution.
Veuillez noter que cette fonctionnalité n'est pas prise en charge dans le Framework .NET 4.x.x.
Liens vers des documents connexes
Prêt à commencer ? Version : 2024.9 vient de paraître