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.
Support for OCR in Arabic, Persian, Urdu, and Uyghur languages has been added in Aspose.OCR for Python via Java 24.7.0, with recognition of mixed language text also enabled. This code example demonstrates how to recognize Arabic text in Python apps.
import aspose as ocr api = ocr.AsposeOcr() images = ocr.OcrInput(ocr.InputType.SINGLE_IMAGE) images.add("source.png") recognitionSettings = RecognitionSettings() recognitionSettings.set_language(ocr.Language.ARA) result = api.recognize(images, recognitionSettings) print(result[0].recognition_text)
Source*
Automatically identify defects in images using the latest Python OCR API version, such as salt-and-pepper noise, low contrast, blur, and glare.
We have enhanced the saving of recognition results as searchable PDFs in this API version, with support for embedding TrueType and OpenType fonts. Here is how to use this feature within your Python apps and generate PDF documents.
TrueType
OpenType
import aspose as ocr api = ocr.AsposeOcr() images = ocr.OcrInput(ocr.InputType.PDF) images.add("source.pdf") result = api.recognize(images, recognitionSettings) api.save_multipage_document_user_font("results.pdf", Format.PDF, result, "fonts/AdobeMingStd-Light.otf")
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 24.7.0 Release Notes.