Greek Alphabet OCR in C# and .NET
Other versions of this document:
IronOCR is a C# software component allowing .NET coders to read text from images and PDF documents in 126 language, including Greek 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.Greek
This package contains 102 OCR languages for .NET:
- Greek
- GreekBest
- GreekFast
- GreekAlphabet
- GreekAlphabetBest
- GreekAlphabetFast
Download
Greek Alphabet Language Pack [ελληνικά]
Installation
The first thing we have to do is install our Greek Alphabet OCR package to your .NET project.
PM> Install-Package IronOCR.Languages.Greek
Code Example
This C# code example reads Greek Alphabet text from an Image or PDF document.
//PM> Install-Package IronOcr.Languages.Greek
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Greek;
using (var Input = new OcrInput(@"images\Greek.png"))
{
var Result = Ocr.Read(Input);
var AllText = Result.Text;
}
//PM> Install-Package IronOcr.Languages.Greek
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Greek;
using (var Input = new OcrInput(@"images\Greek.png"))
{
var Result = Ocr.Read(Input);
var AllText = Result.Text;
}
'PM> Install-Package IronOcr.Languages.Greek
Imports IronOcr
Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Greek
Using Input = New OcrInput("images\Greek.png")
Dim Result = Ocr.Read(Input)
Dim AllText = Result.Text
End Using