Aspose.OCR
23.3.1
See the version list below for details.
dotnet add package Aspose.OCR --version 23.3.1
NuGet\Install-Package Aspose.OCR -Version 23.3.1
<PackageReference Include="Aspose.OCR" Version="23.3.1" />
paket add Aspose.OCR --version 23.3.1
#r "nuget: Aspose.OCR, 23.3.1"
// Install Aspose.OCR as a Cake Addin #addin nuget:?package=Aspose.OCR&version=23.3.1 // Install Aspose.OCR as a Cake Tool #tool nuget:?package=Aspose.OCR&version=23.3.1
Optical character recognition (OCR) API for .NET
[] (https://releases.aspose.com/ocr/net/)
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
This package can be used to develop applications for on-premise operating systems and cloud platforms. You can build both 32-bit and 64-bit software, including ASP.NET, WCF, and WinForms.
Please note: our library implies the use of .NET programming languages, compatible with CLI infrastructure. If you require a corresponding native library for C++, you can download it from here.
API overview
Aspose.OCR for .NET can extract text from photos, scans, PDF documents and other graphical files. It allows you to add OCR functionality to a desktop or web application in less than 10 lines of code, without having to delve into complex mathematical operations, neural networks, and other technical details.
- Ready-to-use OCR engine with superior recognition speed and accuracy.
- Supports 27 languages based on Latin, Cyrillic and Asian scrips.
- Can work with rotated, distorted and noisy images.
- Supports most file formats you can get from a scanner or camera, as well as web links.
- Batch recognition of all images in a folder or archive.
- Recognizes the whole image or selected areas only; identifies words, lines or paragraphs.
- Recognition results are returned in the most popular document and data exchange formats.
- Spell checking of recognition results.
- Full compatibility with other Aspose products - build solutions of any complexity using familiar concepts with minimal code.
Recognition languages
Aspose.OCR can recognize a large number of languages and all popular writing scripts, including texts with mixed languages.
Extended Latin alphabet
- Croatian
- Czech
- Danish
- Dutch
- English
- Estonian
- Finnish
- French
- German
- Italian
- Latvian
- Lithuanian
- Norwegian
- Polish
- Portuguese
- Romanian
- Slovak
- Slovenian
- Spanish
- Swedish
Cyrillic alphabet
- Belorussian
- Bulgarian
- Kazakh
- Russian
- Serbian
- Ukrainian
Asian languages
- Chinese
- Hindi
Supported file formats
Aspose.OCR for .NET can recognize just about any file that you get from a scanner or camera, or download from the Internet:
- JPEG
- PNG
- TIFF
- GIF
- BMP
- DjVu
Recognition results are returned in the most popular document and data exchange formats:
- Plain text
- HTML
- RTF
- Microsoft Word document
- Microsoft Excel spreadsheet
- Searchable PDF
- EPUB
- JSON
- XML
Get started
You can get familiar with Aspose.OCR for .NET by creating a minimal console application for extracting text from an image.
- Create a new C# project in Visual Studio. You can use a very basic project template, such as Console App.
- Install this NuGet package to the project.
- Locate some image containing a line of text and save it to bin\Debug or bin\Debug\net6.0 directory of the project under the name
source.png
. - Create an instance of
Aspose.OCR
recognition engine in yourMain
method:Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
- Add an image to
OcrInput
object:OcrInput input = new OcrInput(InputType.PNG); input.Add("source.png");
- Extract text from the image:
List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(input, recognitionSettings);
- Output the recognized text:
Console.WriteLine(results[0].RecognitionText);
Full code:
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
OcrInput input = new OcrInput(InputType.PNG);
input.Add("source.png");
List<Aspose.OCR.RecognitionResult> results = recognitionEngine.Recognize(input, recognitionSettings);
Console.WriteLine(results[0].RecognitionText);
Run the program. You will see the extracted text in the console output. If the text is too large, the result may be cut off due to trial restrictions. You can get a temporary license to remove all limitations of the trial version for 30 days.
Learn more
Product | Versions 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. |
-
.NETStandard 2.0
- Microsoft.ML.OnnxRuntime (>= 1.13.1)
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.10.0 | 3,192 | 10/21/2024 |
24.9.0 | 6,336 | 9/28/2024 |
24.8.1 | 10,317 | 8/24/2024 |
24.8.0 | 3,723 | 8/5/2024 |
24.7.0 | 8,357 | 7/17/2024 |
24.6.0 | 9,689 | 6/14/2024 |
24.5.0 | 6,449 | 5/29/2024 |
24.4.2 | 5,531 | 5/1/2024 |
24.4.1 | 6,857 | 4/23/2024 |
24.4.0 | 1,640 | 4/15/2024 |
24.3.1 | 9,066 | 3/21/2024 |
24.3.0 | 8,304 | 3/15/2024 |
24.2.0 | 13,493 | 2/27/2024 |
24.1.0 | 27,211 | 1/18/2024 |
23.12.1 | 22,706 | 12/21/2023 |
23.12.0 | 7,867 | 12/4/2023 |
23.10.1 | 35,720 | 10/24/2023 |
23.10.0 | 10,455 | 10/10/2023 |
23.9.0 | 28,171 | 9/14/2023 |
23.8.1 | 29,425 | 8/31/2023 |
23.7.1 | 25,655 | 7/25/2023 |
23.7.0 | 12,172 | 7/11/2023 |
23.6.0 | 41,643 | 6/20/2023 |
23.5.0 | 20,336 | 5/19/2023 |
23.4.0 | 19,804 | 4/25/2023 |
23.3.1 | 41,388 | 3/23/2023 |
23.2.1 | 53,034 | 2/27/2023 |
23.2.0 | 10,765 | 2/13/2023 |
23.1.0 | 46,367 | 1/11/2023 |
22.12.0 | 25,692 | 12/14/2022 |
22.11.1 | 11,284 | 11/30/2022 |
22.11.0 | 21,605 | 11/14/2022 |
22.10.0 | 8,703 | 10/31/2022 |
22.9.0 | 31,998 | 9/28/2022 |
22.8.0 | 40,363 | 8/26/2022 |
22.7.0 | 20,105 | 7/22/2022 |
22.6.0 | 12,721 | 7/1/2022 |
22.5.0 | 32,231 | 5/22/2022 |
22.4.0 | 23,023 | 4/20/2022 |
22.3.0 | 25,994 | 3/28/2022 |
22.2.0 | 21,517 | 2/21/2022 |
22.1.0 | 27,912 | 1/27/2022 |
21.12.0 | 19,048 | 12/24/2021 |
21.11.0 | 29,783 | 11/18/2021 |
21.10.0 | 17,994 | 10/19/2021 |
21.9.0 | 36,004 | 9/21/2021 |
21.8.0 | 10,243 | 9/1/2021 |
21.7.0 | 52,291 | 7/29/2021 |
21.6.1 | 15,787 | 7/7/2021 |
21.6.0 | 22,669 | 6/30/2021 |
21.5.0 | 26,808 | 5/26/2021 |
21.4.0 | 65,172 | 4/29/2021 |
21.3.0 | 31,417 | 3/29/2021 |
21.2.0 | 18,952 | 2/25/2021 |
21.1.2 | 8,690 | 2/2/2021 |
20.12.1 | 6,929 | 2/2/2021 |
20.11.0 | 19,660 | 11/26/2020 |
20.10.0 | 15,728 | 10/27/2020 |
20.9.0 | 10,114 | 9/25/2020 |
20.8.0 | 12,757 | 8/27/2020 |
20.7.0 | 9,241 | 8/5/2020 |
20.6.1 | 6,558 | 8/5/2020 |
20.4.3 | 6,974 | 8/6/2020 |
19.9.3 | 10,206 | 2/5/2020 |
19.9.2 | 3,456 | 2/5/2020 |
19.9.1 | 11,462 | 11/20/2019 |
19.9.0 | 19,737 | 10/2/2019 |
19.8.1 | 5,385 | 9/2/2019 |
19.8.0 | 4,494 | 8/28/2019 |
17.11.0 | 21,120 | 11/15/2017 |
17.6.0 | 15,610 | 6/22/2017 |
17.3.0 | 4,138 | 3/17/2017 |
17.2.0 | 2,986 | 2/16/2017 |
17.1.0 | 3,742 | 1/14/2017 |
16.12.0 | 4,217 | 12/17/2016 |
16.11.0 | 2,938 | 11/11/2016 |
16.10.0 | 4,492 | 10/10/2016 |
3.7.0 | 2,975 | 9/2/2016 |
3.6.0 | 8,471 | 6/15/2016 |
3.5.0 | 3,458 | 4/12/2016 |
3.4.0 | 3,293 | 3/2/2016 |
3.3.0 | 3,864 | 2/1/2016 |
3.2.0 | 2,774 | 12/30/2015 |
3.1.0 | 3,478 | 11/23/2015 |
3.0.0 | 4,907 | 10/15/2015 |
2.9.0 | 3,275 | 9/7/2015 |
2.8.0 | 19,540 | 8/5/2015 |
2.7.0 | 7,409 | 6/26/2015 |
2.6.0 | 3,112 | 5/30/2015 |
2.5.0 | 3,185 | 4/30/2015 |
2.4.0 | 3,040 | 3/30/2015 |
2.3.0 | 3,473 | 2/26/2015 |
2.2.0 | 3,561 | 12/31/2014 |
2.1.0 | 2,849 | 10/21/2014 |
2.0.0 | 3,479 | 6/23/2014 |
1.9.0 | 2,921 | 4/3/2014 |
1.8.0 | 3,214 | 11/20/2013 |
1.6.0 | 14,010 | 7/22/2013 |
1.5.0 | 2,817 | 4/4/2013 |
1.4.0 | 2,617 | 12/27/2012 |
1.3.0 | 2,745 | 11/14/2012 |
1.2.0 | 2,726 | 10/19/2012 |
1.1.0.1 | 2,861 | 2/16/2012 |
1.1.0 | 2,723 | 1/24/2012 |