Socket
Book a DemoInstallSign in
Socket

IronOcr.MacOs.ARM

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

IronOcr.MacOs.ARM

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 * 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
2025.9.7
Version published
Maintainers
1
Created
Source

IronOCR - The OCR & Tesseract Library for .NET

HOW TO USE

======================== Visit our website for a quick-start guide at https://ironsoftware.com/csharp/ocr/docs/

C# Code Example

=============================================================

using IronOcr;

var ocr = new IronTesseract();

using (var ocrInput = new OcrInput())
{
    ocrInput.LoadImage("image.png");
    ocrInput.LoadPdf("document.pdf");
    
    // Optionally Apply Filters if needed:
    // ocrInput.Deskew();  // use only if image not straight
    // ocrInput.DeNoise(); // use only if image contains digital noise
    
    var ocrResult = ocr.Read(ocrInput);
    Console.WriteLine(ocrResult.Text);
}

=============================================================

Compatibility

============================================================= Supports applications and websites developed in:

  • .NET 5, 6, 7, 8 & 9
  • .NET Core 2, 3 (and above) for Windows, Linux, macOS and Azure
  • .NET Framework 4.6.2 (and above) for Windows and Azure

Keywords

OCR

FAQs

Package last updated on 02 Sep 2025

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