Syncfusion.PDF.OCR.NET 29.2.8

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.PDF.OCR.NET --version 29.2.8
                    
NuGet\Install-Package Syncfusion.PDF.OCR.NET -Version 29.2.8
                    
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="Syncfusion.PDF.OCR.NET" Version="29.2.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.PDF.OCR.NET" Version="29.2.8" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.PDF.OCR.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.PDF.OCR.NET --version 29.2.8
                    
#r "nuget: Syncfusion.PDF.OCR.NET, 29.2.8"
                    
#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.
#:package Syncfusion.PDF.OCR.NET@29.2.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.PDF.OCR.NET&version=29.2.8
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.PDF.OCR.NET&version=29.2.8
                    
Install as a Cake Tool

The Syncfusion® .NET OCR library is a feature-rich and high-performance library that is used to recognizes characters from both images and PDF. Syncfusion® OCRProcessor uses tesseract, one of most accurate OCR engines.

Key Features

Getting Started

Install the Syncfusion.PDF.OCR.NET NuGet package as reference to your .NET Core application from NuGet.org.

OCR a PDF document programmatically using C#

//Initialize the OCR processor by providing the path of tesseract binaries(SyncfusionTesseract.dll and liblept168.dll)
using (OCRProcessor processor = new OCRProcessor(@"TesseractBinaries\"))
{
//Load a PDF document
FileStream stream = new FileStream(@"Input.pdf", FileMode.Open);

//Load a PDF document
PdfLoadedDocument lDoc = new PdfLoadedDocument(stream);

//Set OCR language to process
processor.Settings.Language = Languages.English;

//Process OCR by providing the PDF document and Tesseract data
processor.PerformOCR(lDoc, @"TessData\");

//Save the OCR processed PDF document in the disk
FileStream fileStream = new FileStream("Sample.pdf", FileMode.CreateNew, FileAccess.ReadWrite);

//Save and close the PDF document 
lDoc.Save(fileStream);
lDoc.Close(true);

}

Help Resources

Support and feedback

License

This NuGet package is a part of the OPX product line. Any part of the OPX product line may be subject to additional terms, to include GPL or similar licenses. Syncfusion® holds no liability and provides no indemnity in any form for any OPX product. If you do not agree to these terms, do not download this NuGet package.

About Syncfusion®

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion® has more than 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET Web Forms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), Flutter, Xamarin, and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.

sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
30.1.40 62 7/14/2025
30.1.39 154 7/8/2025
30.1.38 154 7/1/2025
30.1.37 152 6/25/2025
29.2.11 184 6/16/2025
29.2.10 300 6/9/2025
29.2.9 156 6/5/2025
29.2.8 152 6/3/2025
29.2.7 173 5/26/2025
29.2.5 158 5/21/2025
29.2.4 258 5/14/2025
29.1.41 336 5/5/2025
29.1.40 220 4/28/2025
29.1.39 238 4/21/2025
29.1.38 281 4/15/2025
29.1.37 234 4/8/2025
29.1.35 251 4/1/2025
29.1.33 528 3/25/2025
28.2.12 205 3/19/2025
28.2.11 276 3/11/2025
28.2.9 336 3/4/2025
28.2.7 244 2/25/2025
28.2.6 300 2/18/2025
28.2.5 816 2/11/2025
28.2.4 216 2/4/2025
28.2.3 167 1/29/2025
28.1.41 200 1/21/2025
28.1.39 229 1/14/2025
28.1.38 206 1/7/2025
28.1.37 222 12/31/2024
28.1.36 194 12/23/2024
28.1.35 197 12/18/2024
28.1.33 236 12/12/2024
27.2.5 253 12/2/2024
27.2.4 234 11/26/2024
27.2.3 225 11/22/2024
27.2.2 238 11/15/2024
27.1.58 275 11/4/2024
27.1.57 246 10/29/2024
27.1.56 194 10/23/2024
27.1.55 192 10/21/2024
27.1.53 229 10/14/2024
27.1.52 205 10/7/2024
27.1.51 205 9/30/2024
27.1.50 201 9/24/2024
27.1.48 259 9/18/2024
26.2.14 283 9/9/2024
26.2.13 200 9/5/2024
26.2.12 221 9/2/2024
26.2.11 252 8/27/2024
26.2.10 296 8/19/2024
26.2.9 265 8/12/2024
26.2.8 220 8/5/2024
26.2.7 145 7/29/2024
26.2.5 161 7/26/2024
26.2.4 192 7/24/2024
26.1.42 256 7/15/2024
26.1.41 276 7/8/2024
26.1.40 264 7/1/2024
26.1.39 826 6/24/2024
26.1.38 271 6/18/2024
26.1.35 444 6/11/2024
25.2.7 272 6/3/2024
25.2.6 235 5/28/2024
25.2.5 248 5/21/2024
25.2.4 223 5/14/2024
25.2.3 2,645 5/8/2024
25.1.42 267 4/29/2024
25.1.41 318 4/23/2024
25.1.40 261 4/15/2024
25.1.39 263 4/8/2024
25.1.38 292 4/1/2024
25.1.37 256 3/26/2024
25.1.35 342 3/15/2024
24.2.9 315 3/5/2024
24.2.8 267 2/27/2024
24.2.7 283 2/20/2024
24.2.6 220 2/15/2024
24.2.5 246 2/12/2024
24.2.4 3,210 2/6/2024
24.2.3 195 1/31/2024
24.1.47 268 1/23/2024
24.1.46 336 1/17/2024
24.1.45 259 1/9/2024
24.1.44 268 1/3/2024
24.1.43 272 12/27/2023
24.1.41 2,556 12/18/2023
23.2.7 363 12/6/2023
23.2.6 357 11/28/2023
23.2.5 315 11/23/2023
23.2.4 301 11/20/2023
23.1.44 367 11/6/2023
23.1.43 280 10/30/2023
23.1.42 283 10/23/2023
23.1.41 282 10/16/2023
23.1.40 413 10/10/2023
23.1.39 329 10/4/2023
23.1.38 304 9/26/2023
23.1.36 429 9/15/2023
22.2.12 10,551 9/5/2023
22.2.11 898 8/28/2023
22.2.10 340 8/22/2023
22.2.9 362 8/14/2023
22.2.8 366 8/7/2023
22.2.7 318 8/2/2023
22.2.5 380 7/27/2023
22.1.39 395 7/18/2023
22.1.38 521 7/11/2023
22.1.37 19,921 7/3/2023
22.1.36 358 6/28/2023
22.1.34 3,072 6/21/2023
21.2.10 346 6/13/2023
21.2.9 353 6/6/2023
21.2.8 372 5/30/2023
21.2.6 344 5/22/2023
21.2.5 386 5/15/2023
21.2.4 401 5/9/2023
21.2.3 437 5/3/2023
21.1.41 542 4/19/2023
21.1.39 444 4/10/2023
21.1.38 491 4/3/2023
21.1.37 587 3/29/2023
21.1.35 537 3/23/2023
20.4.0.54 542 3/13/2023
20.4.0.53 485 3/7/2023
20.4.0.52 434 2/28/2023
20.4.0.51 505 2/21/2023
20.4.0.50 486 2/14/2023
20.4.0.49 515 2/7/2023
20.4.0.48 538 2/1/2023
20.4.0.44 675 1/18/2023
20.4.0.43 666 1/10/2023
20.4.0.42 652 1/4/2023
20.4.0.41 583 12/29/2022
20.4.0.40 561 12/28/2022
20.4.0.38 853 12/21/2022
20.3.0.61 718 12/13/2022
20.3.0.60 694 12/6/2022
20.3.0.59 622 11/29/2022
20.3.0.58 602 11/22/2022
20.3.0.57 567 11/15/2022
20.3.0.56 633 11/8/2022
20.3.0.52 238 10/27/2022
20.3.0.50 1,049 10/18/2022
20.3.0.49 234 10/11/2022
20.3.0.48 203 10/5/2022
20.3.0.47 252 9/29/2022
20.2.0.50 249 9/20/2022
20.2.0.49 226 9/13/2022
20.2.0.48 245 9/6/2022
20.2.0.46 233 8/30/2022
20.2.0.45 238 8/23/2022
20.2.0.44 273 8/16/2022
20.2.0.43 366 8/8/2022
20.2.0.40 321 7/26/2022
20.2.0.39 305 7/19/2022
20.2.0.38 322 7/12/2022
20.2.0.36 377 6/30/2022