Syriac OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English

126 Weitere Sprachen

IronOCR ist eine C# Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Syrisch, zu lesen.

Es ist eine fortschrittliche Abspaltung von Tesseract, die ausschließlich für .NET-Entwickler gebaut wurde und regelmäßig andere Tesseract-Engines sowohl in Geschwindigkeit als auch Genauigkeit übertrifft.

Inhalte von IronOcr.Languages.Syriac

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

  • Syrisch
  • SyrischBest
  • SyrischFast
  • SyrischAlphabet
  • SyrischAlphabetBest
  • SyrischAlphabetFast

Download

Syrische Sprachpaket [Syrisch]

  • Herunterladen als Zip
  • Installation mit NuGet

Installation

Der erste Schritt besteht darin, das Syrisch-OCR-Paket in Ihrem .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Syriac

Beispielcode

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

// Import the IronOcr library
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract object
        var Ocr = new IronTesseract();

        // Set the language to Syriac
        Ocr.Language = OcrLanguage.Syriac;

        // Create an OCR input from an image file
        using (var Input = new OcrInput(@"images\Syriac.png"))
        {
            // Read the image and extract the text
            var Result = Ocr.Read(Input);

            // Retrieve the full recognized text
            var AllText = Result.Text;

            // Output the text to the console
            Console.WriteLine(AllText);
        }
    }
}
// Import the IronOcr library
using IronOcr;

class Program
{
    static void Main()
    {
        // Instantiate the IronTesseract object
        var Ocr = new IronTesseract();

        // Set the language to Syriac
        Ocr.Language = OcrLanguage.Syriac;

        // Create an OCR input from an image file
        using (var Input = new OcrInput(@"images\Syriac.png"))
        {
            // Read the image and extract the text
            var Result = Ocr.Read(Input);

            // Retrieve the full recognized text
            var AllText = Result.Text;

            // Output the text to the console
            Console.WriteLine(AllText);
        }
    }
}
' Import the IronOcr library
Imports IronOcr

Friend Class Program
	Shared Sub Main()
		' Instantiate the IronTesseract object
		Dim Ocr = New IronTesseract()

		' Set the language to Syriac
		Ocr.Language = OcrLanguage.Syriac

		' Create an OCR input from an image file
		Using Input = New OcrInput("images\Syriac.png")
			' Read the image and extract the text
			Dim Result = Ocr.Read(Input)

			' Retrieve the full recognized text
			Dim AllText = Result.Text

			' Output the text to the console
			Console.WriteLine(AllText)
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel

In diesem Beispiel:

  • Wir erstellen eine Instanz von IronTesseract, um OCR zu verarbeiten.
  • Das Ocr.Language wird auf Syrisch eingestellt, um eine genaue Texterkennung für diese Sprache zu gewährleisten.
  • Wir laden ein Bild mit syrischem Text in OcrInput und verarbeiten es mit Ocr.Read.
  • Der erkannte Text wird dann in Result.Text gespeichert, der in Ihrer Anwendung weiter genutzt werden kann.