Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.OCR for NET 24.2.0 (DLLs only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 126.61MB
  • Date Added:
  • 27/2/2024

Description

It contains Aspose.OCR for .NET 24.2.0 (DLLs-only) release.

File Details

Aspose.OCR for .NET 24.2.0 (DLLs-only package) provides greater control over OCR functionalities. This release gives you the flexibility to choose which features to download and integrate into your .NET development projects.

Enhanced PDF Recognition

Build optimized PDF recognition solutions to extract all document content from PDFs, such as text, vector graphics, and pictures. The latest release of the .NET OCR API equips you with the tools to recognize PDF documents effortlessly.

Select What To Downloads

This version of Aspose.OCR for .NET lets you download only the required OCR features to reduce file size and simplify deployments.

Control Resource Management

You can now manage the project resources and control whether to download them manually or automatically by default in .NET. Please check out the following steps and information to learn about downloading the resources manually.


Resources.SetLocalPath("aspose/ocr");
Resources.AllowAutomaticDownloads(false);
// Set recognition language
Aspose.OCR.RecognitionSettings recognitionSettings = new Aspose.OCR.RecognitionSettings();
recognitionSettings.Language = Aspose.OCR.Language.Ukr;

Source*

Seamless Cyrillic Characters Recognition

The latest C# API release allows recognizing Cyrillic characters easily within your .NET apps. The following code example highlights how to perform such recognition.


// Download Hindi OCR model to "aspose/ocr" directory in the application working directory
Aspose.OCR.Resources.SetLocalPath("aspose/ocr");
Aspose.OCR.Resources.FetchResource("aspose-ocr-cyrillic-v1");
// Initialize Aspose.OCR for .NET recognition API
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
// Add images to OcrInput object
Aspose.OCR.OcrInput input = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
input.Add("source1.png");
input.Add("source2.jpg");
// Set recognition language
Aspose.OCR.RecognitionSettings recognitionSettings = new Aspose.OCR.RecognitionSettings();
recognitionSettings.Language = Aspose.OCR.Language.Ukr;
// Recognize image
List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(input, recognitionSettings);
foreach(Aspose.OCR.RecognitionResult result in results)
{
	Console.WriteLine(result.RecognitionText);
}

Source*

Backward Compatibility

Aspose.OCR 24.2.0 provides flawless backward compatibility so that you can integrate the API features into your existing .NET applications.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for .NET 24.2.0 Release Notes.

 English