Aspose.OCR 24.4.0

dotnet add package Aspose.OCR --version 24.4.0
NuGet\Install-Package Aspose.OCR -Version 24.4.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.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.OCR --version 24.4.0
#r "nuget: Aspose.OCR, 24.4.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.4.0

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

Optical character recognition (OCR) API for .NET

Version 24.4.0 Downloads

banner

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

Integrate optical character recognition (OCR) seamlessly into your .NET desktop applications, web sites, cloud services, and serverless Azure functions. With just a few lines of native C# code, you will effortlessly extract text from scans, photos, and screenshots. The library can also convert scanned pages into searchable and indexable PDFs, and find and compare text within images.

What is OCR?

OCR stands for Optical Character Recognition. This technology enables extracting machine-readable text from images, scanned documents, or other types of media that contain text. OCR processes the image or document, identifies characters, and converts them into text that can be edited, searched, or analyzed electronically. OCR is commonly used in various applications such as document management, data entry automation, text extraction from images, and accessibility tools for visually impaired individuals.

Key features

  • Global applications - supporting over 130 languages, our library allows you to recognize texts in Latin, Cyrillic, Arabic, Hindi, Chinese and other scrips.
  • Read everything - retrieve text from any file obtained through a scanner or camera, and process images directly from web links.
  • Reliable results - achieve the highest recognition accuracy for all images, including those that are out-of-focus, rotated, distorted, and noisy.
  • Batch processing - bulk-recognize all images from folders and archives; read multi-page PDF documents, TIFF images and DjVu files.
  • Layout detection - identify and categorize content blocks in images to ensure the correct order of extracted text, regardless of layout.
  • Suitable for any content - image preprocessing and customizable document structure detection enable text extraction from virtually any image, ranging from high-quality scans to street photos.
  • Optimized - the library balances recognition speed, quality, and resource utilization for each specific use case.
  • Easy to use - you only need a few lines of code to convert image to text, create a searchable PDF, save recognition results to document, and many more.
  • Modular - keep your application lean and modular by selectively adding advanced features from our resource repository.
  • Tesseract alternative - Aspose.OCR excels in recognizing complex cases where Tesseract might struggle to achieve sufficient accuracy or even fail entirely.

Supported file formats

Aspose.OCR can work with virtually any file you can get from a scanner or camera:

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

You can also use Aspose.OCR to perform bulk recognition on images within folders and archives, as well as process images directly from URLs without the need to download them locally.

Recognition results are returned in the most popular file and data exchange formats that can be saved, imported to a database, or analyzed in real time:

  • Plain text
  • Searchable PDF
  • Microsoft Office document
  • HTML
  • RTF
  • ePUB
  • Data exchange formats: JSON and XML

Easy to use

The library is very developer-friendly. You only need a few lines of code to convert image to text, create a searchable PDF, save recognition results to document, and many more.

  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! Copy and paste the full code to try it 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 also download the examples to try the advanced library capabilities or visit the product page for live code sample.

Licensing

You can start using Aspose.OCR library right after the installation. In trial mode (without providing a license) you can recognize texts in any supported languages and save recognition results in any of the supported formats with some restrictions:

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

A temporary license removes all limitations of the trial version for 30 days. Use it to start building a fully functional OCR application and make the final decision to purchase Aspose.OCR later.

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.4.0 731 4/15/2024
24.3.1 3,002 3/21/2024
24.3.0 2,063 3/15/2024
24.2.0 5,657 2/27/2024
24.1.0 11,113 1/18/2024
23.12.1 11,088 12/21/2023
23.12.0 6,805 12/4/2023
23.10.1 22,024 10/24/2023
23.10.0 7,315 10/10/2023
23.9.0 19,309 9/14/2023
23.8.1 21,167 8/31/2023
23.7.1 18,947 7/25/2023
23.7.0 11,611 7/11/2023
23.6.0 26,918 6/20/2023
23.5.0 14,231 5/19/2023
23.4.0 15,186 4/25/2023
23.3.1 29,065 3/23/2023
23.2.1 48,477 2/27/2023
23.2.0 10,383 2/13/2023
23.1.0 30,375 1/11/2023
22.12.0 20,248 12/14/2022
22.11.1 10,807 11/30/2022
22.11.0 17,562 11/14/2022
22.10.0 7,171 10/31/2022
22.9.0 26,000 9/28/2022
22.8.0 30,399 8/26/2022
22.7.0 18,425 7/22/2022
22.6.0 11,660 7/1/2022
22.5.0 27,997 5/22/2022
22.4.0 18,259 4/20/2022
22.3.0 22,145 3/28/2022
22.2.0 19,223 2/21/2022
22.1.0 24,738 1/27/2022
21.12.0 18,304 12/24/2021
21.11.0 24,811 11/18/2021
21.10.0 14,623 10/19/2021
21.9.0 31,229 9/21/2021
21.8.0 9,517 9/1/2021
21.7.0 43,359 7/29/2021
21.6.1 15,130 7/7/2021
21.6.0 19,469 6/30/2021
21.5.0 21,104 5/26/2021
21.4.0 64,725 4/29/2021
21.3.0 27,034 3/29/2021
21.2.0 16,297 2/25/2021
21.1.2 8,345 2/2/2021
20.12.1 6,570 2/2/2021
20.11.0 16,620 11/26/2020
20.10.0 13,116 10/27/2020
20.9.0 9,483 9/25/2020
20.8.0 12,427 8/27/2020
20.7.0 8,855 8/5/2020
20.6.1 6,280 8/5/2020
20.4.3 6,537 8/6/2020
19.9.3 9,198 2/5/2020
19.9.2 3,208 2/5/2020
19.9.1 10,610 11/20/2019
19.9.0 17,301 10/2/2019
19.8.1 5,225 9/2/2019
19.8.0 4,241 8/28/2019
17.11.0 18,779 11/15/2017
17.6.0 14,654 6/22/2017
17.3.0 3,998 3/17/2017
17.2.0 2,865 2/16/2017
17.1.0 3,641 1/14/2017
16.12.0 3,710 12/17/2016
16.11.0 2,843 11/11/2016
16.10.0 4,360 10/10/2016
3.7.0 2,843 9/2/2016
3.6.0 8,240 6/15/2016
3.5.0 3,345 4/12/2016
3.4.0 3,181 3/2/2016
3.3.0 3,744 2/1/2016
3.2.0 2,658 12/30/2015
3.1.0 3,385 11/23/2015
3.0.0 4,801 10/15/2015
2.9.0 3,133 9/7/2015
2.8.0 19,311 8/5/2015
2.7.0 7,284 6/26/2015
2.6.0 3,017 5/30/2015
2.5.0 3,059 4/30/2015
2.4.0 2,934 3/30/2015
2.3.0 3,349 2/26/2015
2.2.0 3,448 12/31/2014
2.1.0 2,770 10/21/2014
2.0.0 3,341 6/23/2014
1.9.0 2,844 4/3/2014
1.8.0 3,132 11/20/2013
1.6.0 12,660 7/22/2013
1.5.0 2,738 4/4/2013
1.4.0 2,537 12/27/2012
1.3.0 2,672 11/14/2012
1.2.0 2,638 10/19/2012
1.1.0.1 2,786 2/16/2012
1.1.0 2,617 1/24/2012