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.
We are pleased to announce the release of Aspose.OCR for Python via .NET 24.6.0, targeting the Windows x32 platform. With this release, you can embed custom fonts into PDFs and extract US passport details.
Seamlessly extract important data, such as names, birth dates, and passport numbers, directly from US passport images with the newly added Country.USA recognition setting in this Python OCR API release.
Country.USA
Code Example:
# Instantiate Aspose.OCR API api = ocr.AsposeOcr() # Add image to the recognition batch input = OcrInput(InputType.SINGLE_IMAGE) input.add("us_passport.png") # Enable US passport recognition settings = ocr.PassportRecognitionSettings() settings.country = ocr.Country.USA # Extract passport details result = api.recognize_passport(input, settings) details = result[0].get_keywords() for detail in details: print(detail.key) print(detail.value.text_in_line)
Source*
You can now embed custom fonts into your exported PDF documents to enable a consistent visual presentation on the Windows 32-bit platform. Here is how to use this functionality in Python.
# Instantiate Aspose.OCR API api = AsposeOcr() # Add image to the recognition batch input = OcrInput(InputType.PDF) input.add("source.pdf") # Recognize the image results = api.recognize(input) # Save recognition result save_multipage_document("result.pdf", SaveFormat.PDF_NO_IMG, results, "fonts/AdobeMingStd-Light.otf")
For more information about the public API changes and deprecations in this release, please visit the release notes page.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for Python via .NET 24.6.0 Release Notes.