Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Add new features to your C# and VB.NET Optical Character Recognition (OCR) solutions with Aspose.OCR for .NET 24.6.0 (DLLs-only). This version supports extracting key details from US passport images and embedding fonts in the generated PDF documents.
Easily extract important details such as name, number, and date of birth from US passport images within your C# OCR applications with the new Aspose.OCR.Country.USA recognition setting in the latest C# OCR API version. Please check out the following code example, which explains the feature usage:
Aspose.OCR.Country.USA
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr(); // Add scanned passport to recognition batch OcrInput passports = new OcrInput(InputType.SingleImage); passports.Add("us_passport_sample.png"); // Explicitly specify that you are processing US passport var recognitionSettings = new PassportRecognitionSettings(); recognitionSettings.Country = Aspose.OCR.Country.USA; // Recognize passport List<Aspose.OCR.RecognitionResult> results = recognitionEngine.RecognizePassport(passports, recognitionSettings); // Parse passport data and output essential details along with image regions they were found in var details = results[0].GetKeywords(); foreach (var item in details) { Console.WriteLine($"{item.Key}: {item.Value.TextInLine}"); Console.WriteLine($"Left: {item.Value.Line.X}; top: {item.Value.Line.Y}; size: {item.Value.Line.Width} x {item.Value.Line.Height}"); }
Source*
You can embed custom fonts within your recognized text saved as PDF files using this version of Aspose.OCR for .NET and implement consistent presentation across platforms. This code example illustrates embedding custom fonts into the generated PDF documents:
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr(); // Add images to OcrInput object Aspose.OCR.OcrInput input = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage); input.Add("page1.png"); input.Add("page2.png"); // Recognize images List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(input); // Save results as text-only PDF in Adobe Ming font Aspose.OCR.AsposeOcr.SaveMultipageDocument("result.pdf", Aspose.OCR.SaveFormat.PdfNoImg, results, "fonts/AdobeMingStd-Light.otf");
Aspose.OCR for .NET 24.6.0 is fully backward compatible, enabling you to effortlessly integrate the new features without code changes.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for .NET 24.6.0 Release Notes.