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.
Great news for Linux developers! Aspose.OCR C++ 24.2.0 has been released for Linux and delivers powerful enhancements and bug fixes to improve your optical character recognition (OCR) experience.
This C++ OCR API release allows C++ developers to add custom recognition settings for individual images within a batch seamlessly and perform accurate OCR for specific content on Linux. This code sample demonstrates how to apply custom settings for a specific image.
// Define custom recognition settings RecognitionSettings customSettings; customSettings.language_alphabet = language::ukr; // Add images to the batch string image1 = "source1.png"; AsposeOCRInput source1; source1.url = image1.c_str(); string image2 = "source2.png"; AsposeOCRInput source2; source2.url = image2.c_str(); source2.special_settings = &customSettings; std::vector<AsposeOCRInput> sources = { source1, source2 }; // Define common recognition settings RecognitionSettings settings; settings.language_alphabet = language::ita; // Extract text from the image auto result = asposeocr_recognize(sources.data(), sources.size(), settings);
Source*
Aspose.OCR for C++ version 24.2.0 delivers an enhanced AsposeOCRInput structure which now includes an optional special_settings property for content-specific recognition control.
AsposeOCRInput
special_settings
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for C++ 24.2.0 Release Notes.