超时
TimeoutMs 提供了一个可选的超时参数(单位为毫秒),超过该时间后,OCR 读取操作将被取消。
与 AbortToken 类似,TimeoutMs 也能在程序或应用程序卡住时,协助读取大型输入文件。
请注意,.NET Framework 4.xx 不支持此功能。
准备开始了吗?
Nuget 下载 5,896,332 | 版本: 2026.5 just released
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
TimeoutMs 提供了一个可选的超时参数(单位为毫秒),超过该时间后,OCR 读取操作将被取消。
与 AbortToken 类似,TimeoutMs 也能在程序或应用程序卡住时,协助读取大型输入文件。
请注意,.NET Framework 4.xx 不支持此功能。