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.
Several new APIs have been introduced in this initial version of Aspose.OCR for Python via C++ (v24.1.0). It empowers C++ developers to access and manipulate OCR results more effectively on the macOS platform. This opens up opportunities for improved text extraction and data handling capabilities in your C++ OCR applications.
This release offers speedy and accurate OCR recognition to guarantee faster processing times for large images and more precise text extraction, crucial for high-demand applications.
In the following use case, we have illustrated how to perform basic OCR operations on an image file. For detailed steps involved and instructions on how to run the example, please visit the release notes page of this Python library release.
import sys sys.path.append('./path/to/lib/asposeocr') import asposeocr ''' apply license ''' #license_file_path = "license/file/path" #asposeocr.AsposeOCRSetLicense(license_file_path) ''' add image to the recognition batch ''' images = [asposeocr.AsposeOCRInput()] images[0].url = 'source.png' ''' recognize the image ''' settings = asposeocr.RecognitionSettings() recognition_result = asposeocr.AsposeOCRRecognize(images, settings) recognition_text = asposeocr.AsposeOCRSerializeResult(recognition_result, asposeocr.ExportFormat.text) print(result[0].recognition_text)
Source*
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for Python via C++ 24.1.0 Release Notes.