Browse our Products

Aspose.OCR for .NET 22.5 - Release Notes

All Features

KeySummaryCategory
OCRNET-506Extend the languages enumEnhancement
OCRNET-504Integrate the Cyrillic modelEnhancement
OCRNET-508Extend fields for Json ouput formatEnhancement
OCRNET-503Add xml output formatEnhancement
OCRNET-499Fast recognition methodEnhancement

Enhancements

  • added support for cyrillic alphabet and belorussian, bulgarian, ukrainian, kazakh, russian, serbian languages
  • added ability to get result in XML or JSON file format
  • added fast recognition method

Public API and Backwards Incompatible Changes

New API

  • added method string RecognizeImageFast(string fullPath) to the AsposeOcr class
  • added method string GetJson(bool isReadable = false) to the RecognitionResult class
  • added method string GetXml() to the RecognitionResult class

Removed APIs

All methods of the previous release are supported.

Will be deprecated

Usage Example

using Aspose.OCR;

namespace ProgramOCR
{
    class Program
    {
        static void Main(string[] args)
        {
            // Get API
            AsposeOcr api = new AsposeOcr();

            // Create license
            License lic = new License();

            // Set license
            lic.SetLicense("Aspose.Total.lic");

            // Get image for recognize
            string image = "img.jpg";

            // Recognize image without skew correction and areas detection. Uses Latin alphabet. The fastest mode.  
            string result = api.RecognizeImageFast(image);			

			// Print result
			Console.WriteLine(result);
        }
    }
}