ASP.NET 的 OCR
- using ASP .NET 對掃描檔與圖片中的文字進行 OCR 識別
- 支援 C# 與 VB 的 適用於 .NET 的 OCR SDK
- 國際語言光學字元辨識
或直接在此處下載 DLL
圖像轉文字與OCR
查看所有 程式碼範例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