Aspose.OCR for .NET 24.3.0 brings exciting enhancements to elevate your Optical Character Recognition (OCR) experiences and build powerful .NET solutions.
Broader Language Support
The latest OCR API version includes the ability to effortlessly recognize text in a staggering 135 languages, including Latin, Cyrillic, Chinese, and Indic scripts.
Enhanced OCR Accuracy
Developers working on C# OCR applications can experience improved text recognition accuracy across various languages, including Cyrillic, Latin, Extended Latin, and more.
Automatic Language Detection
This release of the Aspose.OCR for .NET API simplifies 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.