Aspose.OCR 24.11.0

dotnet add package Aspose.OCR --version 24.11.0                
NuGet\Install-Package Aspose.OCR -Version 24.11.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.OCR" Version="24.11.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.OCR --version 24.11.0                
#r "nuget: Aspose.OCR, 24.11.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspose.OCR as a Cake Addin
#addin nuget:?package=Aspose.OCR&version=24.11.0

// Install Aspose.OCR as a Cake Tool
#tool nuget:?package=Aspose.OCR&version=24.11.0                

Optical character recognition (OCR) API for .NET

Version 24.11.0 Downloads

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

The ultimate OCR solution, designed for both all-in-one functionality and developer ease. Effortlessly integrate powerful optical character recognition into your .NET applications, websites, cloud services, or serverless functions. With just a few lines of C# code, convert images, scans, PDFs, illustrations, and screenshots into accurate, editable, and searchable text. Transform scanned documents into searchable, indexable PDFs, extract and compare text across images, and streamline your workflows with unrivaled precision and performance.

What is optical character recognition (OCR)?

OCR, or Optical Character Recognition, is used to convert different types of images containing written or printed text into machine-readable text that can be edited, searched, and analyzed digitally. OCR analyzes the image, recognizes the shapes and patterns of characters (letters, numbers, symbols), and converts them into text that a computer can process. This allows users to extract information from physical documents, images, and forms and turn it into usable digital data. It also plays a critical role in accessibility, enabling visually impaired individuals to access textual content through screen readers and other assistive tools.

Recognition languages

Aspose OCR is the perfect solution for global applications and multi-lingual documents. With support for nearly all languages, it ensures accurate text extraction across a wide range of scripts and alphabets. Our engine excels at handling mixed-language documents, such as those featuring both Chinese and English.

  • Extended Latin (English, French, German, Spanish, Portuguese, and other European languages)
  • Cyrillic (Russian, Ukrainian, Bulgarian, and more)
  • Arabic and Persian
  • Chinese
  • Hindi and other Devanagari-based scripts
  • Korean
  • Japanese

Aspose OCR can also extract text from handwritten notes and street photos.

Key features

  • Universal – Effortlessly extract text from any image, whether it's a high-quality scan or a casual street photo, captured via scanner or camera.
  • Fast – Achieve rapid text recognition, processing a page in just seconds with minimal resource consumption. Adjust recognition speed, quality, and resource usage according to your specific needs.
  • Developer-friendly – With just a few lines of code, easily convert images to text, create searchable PDFs, save recognition results to documents, and more, integrating OCR into your workflows seamlessly.
  • Modular – Maintain a lean and efficient application by selectively incorporating advanced features from our comprehensive resource repository.
  • Reliable – Experience exceptional recognition accuracy, even with challenging images that are blurry, rotated, distorted, or noisy.
  • Tesseract alternative – Aspose OCR outperforms Tesseract in complex scenarios, ensuring superior accuracy in cases where Tesseract may struggle or fail.

Supported file formats

Aspose OCR can handle nearly any file format from scanners or cameras, including:

  • JPEG, PNG, BMP, and GIF images
  • Single-page and multi-page TIFF files
  • PDF documents
  • DjVu files

All above-mentioned files can be read directly from web links. You can also use Aspose OCR to perform bulk recognition on images within folders and archives, streamlining large-scale document processing.

The recognition results are returned in popular file and data exchange formats, enabling easy storage, database import, or real-time analysis:

  • Plain Text
  • Searchable PDF
  • Microsoft Word or Excel documents
  • HTML
  • RTF
  • ePUB
  • JSON and XML

Platforms

  • .NET 7, .NET 6, .NET 5, .NET Core, .NET Standard, and .NET Framework.
  • Windows, Linux, macOS, AWS, Azure, and Google Cloud.
  • Desktop applications, console applications, services, web, serverless functions, Docker.

Easy to use

Aspose OCR is designed by developers for developers, offering a straightforward and intuitive interface. You only need 5 lines of code to convert image to text:

  1. Create an instance of Aspose OCR recognition engine:
    Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
    
  2. Add one or more images to the recognition batch:
    Aspose.OCR.OcrInput source = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
    source.Add("source.png");
    
  3. Convert image to text:
    List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(source);
    
  4. Output the recognized text:
    Console.WriteLine(results[0].RecognitionText);
    

That's all! Add Aspose OCR library to your project and paste the full code to try yourself:

Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
Aspose.OCR.OcrInput source = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
source.Add("source.png");
List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(source);
Console.WriteLine(results[0].RecognitionText);

You can download sample projects to explore the advanced capabilities of the Aspose OCR library or visit the product page for live code sample.

Licensing

You can begin using the Aspose OCR library immediately after installation. In evaluation mode (without providing a license), you can recognize text in any supported language and save recognition results in all supported formats, with a few limitations:

  • If the number of characters in a recognized image exceeds 300, only the first 300 characters will be recognized.
  • If the number of characters is fewer than 300, only the first 60% of the characters will be recognized.

To unlock all features, request a temporary license, which removes all trial limitations for 30 days. This gives you the opportunity to build a fully functional OCR application and evaluate Aspose.OCR before making your final purchase decision.

Learn more

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Aspose.OCR:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

NovaQual.DocumentConversionLib

This contains all the document conversions functionality e.g word to pdf, exce to pdf etc

Manager_Financial

Manage account between friends

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.11.0 724 11/6/2024
24.10.0 4,555 10/21/2024
24.9.0 6,932 9/28/2024
24.8.1 11,207 8/24/2024
24.8.0 3,905 8/5/2024
24.7.0 8,962 7/17/2024
24.6.0 10,191 6/14/2024
24.5.0 6,648 5/29/2024
24.4.2 5,555 5/1/2024
24.4.1 7,178 4/23/2024
24.4.0 1,658 4/15/2024
24.3.1 9,171 3/21/2024
24.3.0 8,628 3/15/2024
24.2.0 14,087 2/27/2024
24.1.0 29,284 1/18/2024
23.12.1 23,504 12/21/2023
23.12.0 7,905 12/4/2023
23.10.1 36,325 10/24/2023
23.10.0 10,525 10/10/2023
23.9.0 28,668 9/14/2023
23.8.1 29,664 8/31/2023
23.7.1 25,915 7/25/2023
23.7.0 12,245 7/11/2023
23.6.0 42,192 6/20/2023
23.5.0 20,554 5/19/2023
23.4.0 20,041 4/25/2023
23.3.1 41,847 3/23/2023
23.2.1 53,585 2/27/2023
23.2.0 10,861 2/13/2023
23.1.0 47,126 1/11/2023
22.12.0 25,928 12/14/2022
22.11.1 11,312 11/30/2022
22.11.0 21,791 11/14/2022
22.10.0 8,771 10/31/2022
22.9.0 32,387 9/28/2022
22.8.0 41,162 8/26/2022
22.7.0 20,210 7/22/2022
22.6.0 12,799 7/1/2022
22.5.0 32,392 5/22/2022
22.4.0 23,695 4/20/2022
22.3.0 26,156 3/28/2022
22.2.0 21,751 2/21/2022
22.1.0 28,161 1/27/2022
21.12.0 19,083 12/24/2021
21.11.0 30,172 11/18/2021
21.10.0 18,104 10/19/2021
21.9.0 36,189 9/21/2021
21.8.0 10,280 9/1/2021
21.7.0 52,830 7/29/2021
21.6.1 15,828 7/7/2021
21.6.0 22,926 6/30/2021
21.5.0 26,944 5/26/2021
21.4.0 65,206 4/29/2021
21.3.0 31,622 3/29/2021
21.2.0 19,072 2/25/2021
21.1.2 8,717 2/2/2021
20.12.1 6,986 2/2/2021
20.11.0 19,742 11/26/2020
20.10.0 15,900 10/27/2020
20.9.0 10,169 9/25/2020
20.8.0 12,788 8/27/2020
20.7.0 9,273 8/5/2020
20.6.1 6,612 8/5/2020
20.4.3 7,013 8/6/2020
19.9.3 10,235 2/5/2020
19.9.2 3,471 2/5/2020
19.9.1 11,494 11/20/2019
19.9.0 19,895 10/2/2019
19.8.1 5,410 9/2/2019
19.8.0 4,510 8/28/2019
17.11.0 21,540 11/15/2017
17.6.0 15,635 6/22/2017
17.3.0 4,144 3/17/2017
17.2.0 2,994 2/16/2017
17.1.0 3,748 1/14/2017
16.12.0 4,226 12/17/2016
16.11.0 2,945 11/11/2016
16.10.0 4,504 10/10/2016
3.7.0 2,980 9/2/2016
3.6.0 8,477 6/15/2016
3.5.0 3,465 4/12/2016
3.4.0 3,299 3/2/2016
3.3.0 3,870 2/1/2016
3.2.0 2,781 12/30/2015
3.1.0 3,484 11/23/2015
3.0.0 4,914 10/15/2015
2.9.0 3,281 9/7/2015
2.8.0 19,548 8/5/2015
2.7.0 7,414 6/26/2015
2.6.0 3,119 5/30/2015
2.5.0 3,193 4/30/2015
2.4.0 3,046 3/30/2015
2.3.0 3,479 2/26/2015
2.2.0 3,568 12/31/2014
2.1.0 2,851 10/21/2014
2.0.0 3,481 6/23/2014
1.9.0 2,924 4/3/2014
1.8.0 3,216 11/20/2013
1.6.0 14,091 7/22/2013
1.5.0 2,820 4/4/2013
1.4.0 2,620 12/27/2012
1.3.0 2,750 11/14/2012
1.2.0 2,728 10/19/2012
1.1.0.1 2,870 2/16/2012
1.1.0 2,728 1/24/2012