ASP.NET 的 OCR
- using ASP .NET 从扫描件和图像中提取 OCR 文本
- C# & VB 支持 .NET 的 OCR SDK
- 国际语言光学字符识别
或者直接从这里下载 DLL
using OCR 将图像转换为文本
查看所有%s代码示例using IronOcr;
var ocr = new IronTesseract();
using var input = new OcrInput();
input.LoadImage("attachment.png");
input.LoadPdf("report.pdf");
OcrResult result = ocr.Read(input);
string text = result.Text;
Dim ocr = New IronTesseract()
Using input = New OcrInput()
input.LoadImage("attachment.png")
input.LoadPdf("report.pdf")
Dim result As OcrResult = ocr.Read(input)
Dim text As String = result.Text
End Using