Ethiopic Alphabet OCR in C# and .NET

126 More Languages

IronOCR is a C# software component allowing .NET coders to read text from images and PDF documents in 126 language, including Ethiopic Alphabet.

It is an advanced fork of Tesseract, built exclusively for the .NET developers and regularly outperforms other Tesseract engines for both speed and accuracy.

Contents of IronOcr.Languages.Ethiopic

This package contains 73 OCR languages for .NET:

  • EthiopicAlphabet
  • EthiopicAlphabetBest
  • EthiopicAlphabetFast

Download

Ethiopic Alphabet Language Pack [Ge'ez]

Installation

The first thing we have to do is install our Ethiopic Alphabet OCR package to your .NET project.

PM> Install-Package IronOCR.Languages.Ethiopic

Code Example

This C# code example reads Ethiopic Alphabet text from an Image or PDF document.

//PM> Install-Package IronOcr.Languages.Ethiopic
using IronOcr;

var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Ethiopic;
using (var Input = new OcrInput(@"images\Ethiopic.png"))
{
    var Result = Ocr.Read(Input);
    var AllText =  Result.Text;
}
//PM> Install-Package IronOcr.Languages.Ethiopic
using IronOcr;

var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Ethiopic;
using (var Input = new OcrInput(@"images\Ethiopic.png"))
{
    var Result = Ocr.Read(Input);
    var AllText =  Result.Text;
}
'PM> Install-Package IronOcr.Languages.Ethiopic
Imports IronOcr

Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Ethiopic
Using Input = New OcrInput("images\Ethiopic.png")
	Dim Result = Ocr.Read(Input)
	Dim AllText = Result.Text
End Using
VB   C#