New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

IronOcr.Linux

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

IronOcr.Linux

IronOCR is an advanced OCR (Optical Character Recognition) library for C# and .NET It provides Tesseract OCR on Mac, Windows, Linux, Azure and Docker for: * .NET Framework 4.6.2 + * .NET Standard 2.0 + * .NET Core 2.0 + * .NET 5 * .NET 6 * .NET 7 * .NET 8 * .NET 9 * .NET 10 * Mono for MacOS and Linux * Xamarin for MacOS IronOCR reads Text, Barcodes & QR from all major image and PDF formats using the latest Tesseract 5 engine. This library adds OCR functionality to Desktop, Console and Web applications in minutes. IronOCR's Unique Features: * Pure .Net OCR API * All OCR tasks run locally (no SAAS) * 125 languages * Barcode & QR Code reading * Corrects low quality, noisy and distorted scans * Performance tuned above and beyond any other known build of Tesseract OCR. * Reads PDFs * Reads multi-page TIFFs * Can save any OCR Scan to a searchable PDF document or XHTML Data output options include: Plain Text, Barcode Data and an OCR Result class containing paragraphs, lines, words, and characters. Language Support: 125 Languages including Arabic, Chinese, English, Finnish, French, German, Hebrew, Italian, Japanese, Korean, Portuguese, Russian, Spanish... Custom language packs can also be created. Licensing & Support available for commercial deployments. Email: support@ironsoftware.com For code examples, documentation & more visit http://ironsoftware.com/csharp/ocr/

nugetNuGet
Version
2026.4.1
Version published
Maintainers
1
Created
Source

IronOcr: The C# OCR Library

IronOcr is a C# library for reading texts and barcode from images and PDFs.

Build Status: Passing NuGet Version: 2026.4.1 [https://www.nuget.org/packages/IronOcr] License: Commercial

✨ KEY FEATURES

  • 📄 Document Reading: Accurately extract text from common documents like scans, photographs, and receipts.

  • 🎯 Specialized Reading: Utilize advanced reading functions to read formatted data such as passports (MRZ) and checks (MICR)

  • 🪄 Preprocessing: Improve OCR accuracy with a suite of image preprocessing filters, including deskew, denoise, and binarization.

  • ⚙️ Configurations & Languages: Fine-tune the OCR engine for specific scenarios and read documents with 125 international languages supported.

  • 📊 OCR Results: Access structured output data by pages, paragraphs, lines, etc. Support the export to searchable PDFs (Not available for Android and iOS!).

📦 INSTALLATION

To install IronOcr via the NuGet Package Manager Console, run the following command:

PM> Install-Package IronOcr

📌 REMARK

🚀 QUICK START

Reading text from an image is simple. After installing the package, you can get started with just a few lines of code:

using IronOcr;

var Ocr = new IronTesseract();
// Instantiates the Tesseract OCR Engine
using (var Input = new OcrInput())
{
    Input.LoadImage(@"image.png");
    var Result = Ocr.Read(Input);
    // Reads text from the image
    Console.WriteLine(Result.Text);
}

For more detailed examples, please visit our website's quick-start guide: https://ironsoftware.com/csharp/ocr/docs/

📚 DOCUMENTATION

Our documentation is structured to help you learn effectively, whether you're a beginner or an expert.

❓ FAQs

🤝 GETTING HELP & SUPPORT

Have a question or running into an issue?

💻 COMPATIBILITY

  • Languages: C#, F#, and VB.NET
  • Platforms: .NET 10, .NET 9, .NET 8, .NET 7, .NET 6, .NET 5, Core 2x & 3x, Standard 2
  • Framework: .NET Framework 4.6.2 (and above)
  • App Models: Console, Web, Mobiles, and Desktop Apps
  • Operating Systems: Windows, macOS, Linux (Debian, CentOS, Ubuntu), iOS, Android
  • Cloud & Containerization Platforms: Azure, AWS, Docker
  • IDEs: Microsoft Visual Studio or Jetbrains ReSharper & Rider

📝 LICENSE

IronOcr is a commercially licensed product.

Keywords

OCR

FAQs

Package last updated on 27 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts