Browse our Products

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.

 

Aspose.OCR for Python via .NET 24.6.0 Windows AMD64

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 172.29MB
  • Date Added:
  • 5/7/2024

Description

This wheel contains Aspose.OCR for Python via .NET version 24.6.0, built for Windows and targeting the AMD64 architecture.

File Details

Experience OCR performance like no other with the latest Aspose.OCR for Python via .NET 24.6.0 release (Windows x64). Embed custom fonts into PDF documents and extract US passport details effortlessly with this update.

Effortless US Passport Data Extraction

Extract crucial information like names, birth dates, and passport numbers directly from US passport images using the new Country.USA recognition setting in the latest Python OCR API release. Check out the following code example to learn about the feature usage.


# 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*

Enhanced PDF Control with Custom Fonts

Developers can seamlessly embed custom fonts into their exported PDF documents for a consistent visual presentation on the Windows 64-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")

Source*

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.

 English