觀看David Jones, Agorus, 使用Iron Suite創造新效能
觀看Milan Jovanović使用IronPDF
觀看我們的團隊產品演示
準確地從發票和報告中提取文本和數據,使用 IronOCR 以更快地構建功能。
準確地將實體文件和以影像為基礎的 PDF 數位化為機器可讀的文字。非常適合建立可搜尋的檔案、自動從紙張表單輸入資料,以及讓掃描的內容可存取和編入索引。我們的引擎擅長處理常見的掃描瑕疵。
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);
從發票中智慧地抽取結構化資料,自動化您的應付帳款工作流程。除了簡單的文字擷取之外,還能擷取key-value 對,例如發票號碼、到期日、總金額和廠商名稱,甚至跨越不同的版面設計和範本。
using IronOcr; // Instantiate OCR engine var ocr = new IronTesseract(); // Enable table detection ocr.Configuration.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]}");
將智慧型手機相片和相機影像轉換成可用的文字。適用於擷取收據以追蹤開銷、將白板筆記數位化、從產品標籤中擷取資訊,或從路牌和海報中讀取文字的行動應用程式。
using 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 元素,與其他應用程式無縫整合。
using 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);
Install-Package IronOcr
無需信用卡
試用表單已提交成功。您的試用密鑰應該在電子郵件裡。如果沒有,請聯繫support@ironsoftware.com
您的試用密鑰應該在電子郵件裡。如果沒有,請聯繫support@ironsoftware.com
在生產環境中測試而不帶水印。適用於您所需的任何地方。
獲得 30 天完整功能產品。幾分鐘內即可運行。
在您的產品試用期間全面訪問我們的支持技術團隊
產品與其關鍵功能的即時展示
獲取項目特定的功能建議
我們會回答您所有的問題,以確保您掌握所有需要的資訊。(絕無承諾)。
請檢查您的電子郵件以取得試用授權金鑰。
如果您沒有收到電子郵件,請啟動 support@ironsoftware.com
預約無需承諾的諮詢
完成以下表單或發送電子郵件至 sales@ironsoftware.com
您的詳細信息將始終保密。
預訂 30 分鐘的個人演示。
無須合約、無須卡號、無任何長期綁約。
版權所有 © Iron Software 2013-2025