Divehi OCR in C# and .NET
IronOCR is a C# software component allowing .NET coders to read text from images and PDF documents in 126 language, including Divehi.
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.Divehi
This package contains 43 OCR languages for .NET:
- Divehi
- DivehiBest
- DivehiFast
Download
Divehi Language Pack [ދިވެހި]
Installation
The first thing we have to do is install our Divehi OCR package to your .NET project.
PM> Install-Package IronOCR.Languages.Divehi
Code Example
This C# code example reads Divehi text from an Image or PDF document.
//PM> Install-Package IronOcr.Languages.Divehi
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Divehi;
using (var Input = new OcrInput(@"images\Divehi.png"))
{
var Result = Ocr.Read(Input);
var AllText = Result.Text;
}
//PM> Install-Package IronOcr.Languages.Divehi
using IronOcr;
var Ocr = new IronTesseract();
Ocr.Language = OcrLanguage.Divehi;
using (var Input = new OcrInput(@"images\Divehi.png"))
{
var Result = Ocr.Read(Input);
var AllText = Result.Text;
}
'PM> Install-Package IronOcr.Languages.Divehi
Imports IronOcr
Private Ocr = New IronTesseract()
Ocr.Language = OcrLanguage.Divehi
Using Input = New OcrInput("images\Divehi.png")
Dim Result = Ocr.Read(Input)
Dim AllText = Result.Text
End Using