English OCR in C# and .NET
IronOCR ist eine C#-Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Englisch, zu lesen.
Es ist ein erweiterter Fork von Tesseract, der ausschließlich für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines sowohl in Bezug auf Geschwindigkeit als auch Genauigkeit übertrifft.
Inhalt von IronOcr.Languages.English
Dieses Paket enthält 64 OCR-Sprachen für .NET:
Download
Englisches Sprachpaket [Modernes Englisch]
- Herunterladen als Zip
Beispielcode
Dieses C#-Codebeispiel liest englischen Text aus einem Bild oder PDF-Dokument.
// Import the IronOcr namespace
using IronOcr;
class Program
{
static void Main()
{
// Initialize the IronTesseract OCR engine
var Ocr = new IronTesseract();
// Set the language to English
Ocr.Language = OcrLanguage.English;
// Define the input source as an image file
using (var Input = new OcrInput(@"images\English.png"))
{
// Perform OCR to read the text from the input
var Result = Ocr.Read(Input);
// Get all the recognized text
var AllText = Result.Text;
// Output the recognized text
Console.WriteLine(AllText);
}
}
}
// Import the IronOcr namespace
using IronOcr;
class Program
{
static void Main()
{
// Initialize the IronTesseract OCR engine
var Ocr = new IronTesseract();
// Set the language to English
Ocr.Language = OcrLanguage.English;
// Define the input source as an image file
using (var Input = new OcrInput(@"images\English.png"))
{
// Perform OCR to read the text from the input
var Result = Ocr.Read(Input);
// Get all the recognized text
var AllText = Result.Text;
// Output the recognized text
Console.WriteLine(AllText);
}
}
}
Imports IronOcr
Class Program
Shared Sub Main()
' Initialize the IronTesseract OCR engine
Dim Ocr As New IronTesseract()
' Set the language to English
Ocr.Language = OcrLanguage.English
' Define the input source as an image file
Using Input As New OcrInput("images\English.png")
' Perform OCR to read the text from the input
Dim Result = Ocr.Read(Input)
' Get all the recognized text
Dim AllText = Result.Text
' Output the recognized text
Console.WriteLine(AllText)
End Using
End Sub
End Class
- Stellen Sie sicher, dass das IronOCR-Paket und das entsprechende Sprachpaket installiert sind.
- Dieses Beispiel initialisiert die OCR-Engine, setzt sie auf die Verarbeitung von Englisch, liest Text aus einem Eingabebild und gibt den erkannten Text aus.

