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.
Developers can now distribute extra OCR features as downloadable modules using Aspose.OCR for Python via Java 24.2.0, and enjoy more control over the specific resources needed for a project.
We have introduced various updates to methods for managing downloadable resources, such as setting repository URLs and manual downloads in the latest Python OCR library release.
import aspose as ocr ocr_resources = [] ocr_resources.append('aspose-ocr-hindi-v1') ocr.Resources.fetch_resources(ocr_resources) api = ocr.AsposeOcr() images = ocr.OcrInput(ocr.InputType.SINGLE_IMAGE) images.add('source.png') recognitionSettings = RecognitionSettings() recognitionSettings.setLanguage(Language.HIN) result = api.recognize(images, recognitionSettings) print(result[0].recognition_text)
Source*
import aspose as ocr # the directory must be present in the application working directory ocr.Resources.set_local_path('aspose/ocr') ocr.Resources.allow_automatic_downloads(false)
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.2.0 Release Notes.