.NET developers, rejoice! The newest release of Aspose.OCR for .NET DLLs-only (version 24.3.0) empowers you with exceptional capabilities to take your C# OCR solutions to the next level.
Extended Language Support
This OCR API version offers broader language support, with the ability to effortlessly recognize text in an impressive 135 languages, including Latin, Cyrillic, Chinese, and Indic scripts.
Improved OCR Accuracy
You can now experience enhanced text recognition accuracy across various languages, including Cyrillic, Latin, Extended Latin, and more.
Automated Language Detection
Aspose.OCR for .NET 24.3.0 streamlines OCR app development by automatically detecting extended Latin and Cyrillic characters without manual language specification. The following code example demonstrates the feature usage in C#:
// Initialize Aspose.OCR for .NET recognition API
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
// Add image
Aspose.OCR.OcrInput input = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
input.Add("source.png");
// Set recognition language
Aspose.OCR.RecognitionSettings recognitionSettings = new Aspose.OCR.RecognitionSettings();
recognitionSettings.Language = Aspose.OCR.Language.ExtLatin;
// Recognize image
List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(input, recognitionSettings);
Console.WriteLine(results[0].RecognitionText);
Source*
Deprecated Language Codes
You can easily upgrade existing applications with minimal code changes. Deprecated language codes are preserved for a smooth transition (removal scheduled for January 2025).
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for .NET 24.3.0 Release Notes.