Bulgarian OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
Other versions of this document:

IronOCR ist eine C# Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Bulgarisch, 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.Bulgarian

Dieses Paket enthält 52 OCR-Sprachen für .NET:

  • Bulgarisch
  • BulgarischBest
  • BulgarischFast

Download

Bulgarisches Sprachpaket style='white-space:default'>[български език]

Installation

Das Erste, was wir tun müssen, ist, unser Bulgarisches OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Bulgarian

Beispielcode

Dieses C#-Codebeispiel liest bulgarischen Text aus einem Bild oder PDF-Dokument.

// Ensure you have installed the IronOCR language package for Bulgarian
// PM> Install-Package IronOcr.Languages.Bulgarian

using IronOcr;

var Ocr = new IronTesseract();

// Set the OCR language to Bulgarian
Ocr.Language = OcrLanguage.Bulgarian;

// Load the image or PDF document containing Bulgarian text
using (var Input = new OcrInput(@"images\Bulgarian.png"))
{
    // Perform OCR and obtain the result
    var Result = Ocr.Read(Input);

    // Extract all the text from the OCR result
    var AllText = Result.Text;

    // Optionally, print or use the extracted text as needed
    Console.WriteLine(AllText);
}
// Ensure you have installed the IronOCR language package for Bulgarian
// PM> Install-Package IronOcr.Languages.Bulgarian

using IronOcr;

var Ocr = new IronTesseract();

// Set the OCR language to Bulgarian
Ocr.Language = OcrLanguage.Bulgarian;

// Load the image or PDF document containing Bulgarian text
using (var Input = new OcrInput(@"images\Bulgarian.png"))
{
    // Perform OCR and obtain the result
    var Result = Ocr.Read(Input);

    // Extract all the text from the OCR result
    var AllText = Result.Text;

    // Optionally, print or use the extracted text as needed
    Console.WriteLine(AllText);
}
' Ensure you have installed the IronOCR language package for Bulgarian
' PM> Install-Package IronOcr.Languages.Bulgarian

Imports IronOcr

Private Ocr = New IronTesseract()

' Set the OCR language to Bulgarian
Ocr.Language = OcrLanguage.Bulgarian

' Load the image or PDF document containing Bulgarian text
Using Input = New OcrInput("images\Bulgarian.png")
	' Perform OCR and obtain the result
	Dim Result = Ocr.Read(Input)

	' Extract all the text from the OCR result
	Dim AllText = Result.Text

	' Optionally, print or use the extracted text as needed
	Console.WriteLine(AllText)
End Using
$vbLabelText   $csharpLabel

In diesem Beispiel:

  • Wir erstellen ein IronTesseract-Objekt, um die OCR-Operationen durchzuführen.
  • Wir setzen die Sprache für die OCR auf Bulgarisch mit OcrLanguage.Bulgarian.
  • Wir laden eine Bilddatei Bulgarian.png in ein OcrInput-Objekt.
  • Wir verwenden Ocr.Read(Input), um Text aus dem Bild zu extrahieren.
  • Schließlich wird der extrahierte Text über Result.Text abgerufen.