在生產環境中測試,無浮水印。
無論您在哪裡需要,它都能運作。
立即獲取 30 天完整功能版產品。
幾分鐘內即可完成安裝並開始使用。
在產品試用期間,您可隨時聯繫我們的技術支援團隊
利用 IronOCR 精準地從發票和報告中擷取文字與資料,並加速功能開發。
將實體文件和圖像型 PDF 精準數位化為機器可讀的文字。非常適合建立可搜尋的檔案庫、自動化紙本表單的資料輸入,以及讓掃描內容變得可存取且可索引。我們的引擎在處理常見的掃描瑕疵方面表現出色。
學習如何:在 C# 中使用「讀取掃描文件」功能using IronOcr;
using System;
// Instantiate OCR engine
var ocr = new IronTesseract();
// Configure OCR engine
using var input = new OcrInput();
input.LoadImage("potter.tiff");
// Perform OCR
OcrResult result = ocr.ReadDocument(input);
Console.WriteLine(result.Text);
透過從發票中智慧地擷取結構化資料,自動化您的應付帳款工作流程。不僅限於簡單的文字擷取,更能擷取如發票編號、到期日、總金額及供應商名稱等鍵值對,即使面對多變的版面配置與範本亦能游刃有餘。
學習如何:讀取文件中的複雜表格using IronOcr;
// Instantiate OCR engine
var ocr = new IronTesseract();
// Enable table detection
ocr.Co/nfiguration.ReadDataTables = true;
using var input = new OcrPdfInput("sample.pdf");
var result = ocr.Read(input);
// Retrieve the data
var table = result.Tables[0].DataTable;
// Print the retrieved item to the console
Console.WriteLine($"The first item in the table is: {result.Tables[0].DataTable.Rows[0][0]}");
將智慧型手機照片和相機影像轉為可用的文字。非常適合用於擷取收據以進行費用追蹤、將白板筆記數位化、從產品標籤中提取資訊,或從路標和海報中讀取文字的行動應用程式。
學習如何:在 C# 中使用 Read Photousing IronOcr;
var ocr = new IronTesseract();
using var inputPhoto = new OcrInput();
inputPhoto.LoadImageFrame("ocr.tiff", 0);
// Read photo
OcrPhotoResult result = ocr.ReadPhoto(inputPhoto);
// Extract the text in the first region
string textinregion = result.TextRegions[0].TextInRegion;
// Print the text in the first region
Console.WriteLine($"Full Scnned Photo Text: {textinregion}");
即時擷取並處理來自應用程式視窗、使用者介面或網頁內容的螢幕文字。透過讀取其他應用程式的 UI 元素,實現與其的無縫整合。
了解如何:在 C# 中使用 Read Screenshotusing IronOcr;
using System;
using System.Linq;
// Instantiate OCR engine
var ocr = new IronTesseract();
using var inputScreenshot = new OcrInput();
inputScreenshot.LoadImage("screenshotOCR.png");
// Perform OCR
OcrPhotoResult result = ocr.ReadScreenShot(inputScreenshot);
// Output screenshot information
Console.WriteLine(result.Text);