Aspose.OCR for Cloud 20.03 Release Notes

Important Changes and New Features

We are glad to introduce French and German languages support.

API Changes:

Added optional language selection feature:


 static string RecognizeFromContent(Configuration conf)

{

    string name = "10.png";

    using (FileStream fs = File.OpenRead(name))

    {

        OcrApi api = new OcrApi(conf);

        var request = new PostOcrFromUrlOrContentRequest(fs, language: LanguageGroup.German);

        OCRResponse response = api.PostOcrFromUrlOrContent(request);

        return response.Text;

    }

}

Available options: English, German, French