观看 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);
从发票中智能提取结构化数据,实现应付账款工作流程自动化。除了简单的文本提取外,还能捕捉发票号码、到期日、总金额和供应商名称等键值对,甚至可以跨不同的布局和模板。
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}");
即时捕捉和处理应用程序窗口、用户界面或网页内容中的屏幕文本。通过读取其他应用程序的用户界面元素,实现与这些应用程序的无缝集成。
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天。几分钟内即可启动和运行。
在产品试用期间,全面访问我们的支持工程团队
我们产品及其关键功能的在线演示
获取项目特定功能建议
我们会回答您的所有问题,确保您获得所需的全部信息。(无任何承诺)。
请检查您的电子邮件以获取试用许可证密钥。
如果您没有收到电子邮件,请启动live chat或发送电子邮件至support@ironsoftware.com
预订无义务咨询
填写下面的表格或通过sales@ironsoftware.com
您的资料将始终保密。
预定一次 30 分钟的个人演示。
无合约、无卡号、无任何长期承诺。
版权所有 © Iron Software 2013-2025