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.
This initial version of Aspose.OCR for Python via Java (23.12.0) offers essential optical character recognition (OCR) functionalities, laying the groundwork for future feature enhancements. Python app developers can now utilize this efficient library to convert images to text with minimal configuration across platforms.
Here is a simple guide to help you set up the environment and use the Aspose.OCR for Python via Java 23.12.0 library:
import aspose as ocr ''' apply license ''' #lic = ocr.license.License() #lic.set_license('Aspose-OCR-Python-Java.lic') ''' initialize Aspose.OCR engine ''' api = ocr.AsposeOcr() ''' add image to the recognition batch ''' images = ocr.OcrInput(ocr.InputType.SINGLE_IMAGE) images.add('source.png') ''' recognize the image and output extracted text ''' result = api.recognize(images) print(result[0].recognition_text)
Source*
This sample code shows how simple it is to extract text from an image using Aspose.OCR for Python via Java 23.12.0. Once installed and set up, developers can quickly implement the OCR process in their Python OCR applications.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for Python for Java 23.12.0 Release Notes.