Browse our Products

Aspose.OCR for .NET 21.4 - Release Notes

All Features

KeySummaryCategory
OCRNET-339Add .docx format support for RecognitionResultEnhancement

Enhancements

  • added ability to save the recognition result in the Microsoft Word Document format

Public API and Backwards Incompatible Changes

New API

  • added public enum SaveFormat
  • modified method: public void Save(string fullFileName, SaveFormat saveFormat, bool applySpellingCorrection = false, SpellCheckLanguage language = SpellCheckLanguage.En) in the RecognitionResult class

Removed APIs

Will be deprecated

Usage Example for recognition and spell-checking with language indication

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 = "D://img.png";

            // Recognize image           
            RecognitionResult result = api.RecognizeImage(image, new RecognitionSettings());

            // Save result

			Console.WriteLine(result.RecognitionText);
			
            result.Save("D://test.txt", SaveFormat.Txt);
            result.Save("D://test.docx", SaveFormat.Docx);
        }
    }
}