ASP.NET用のOCR
- スキャンと画像からテキストを OCR するには ASP.NET を使用します
- 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