C# 和 .NET 中的保加利亞語 OCR
This article was translated from English: Does it need improvement?
TranslatedView the article in English
Other versions of this document:
IronOCR 是一個 C# 軟體元件,允許 .NET 程式設計師從圖像和 PDF 文件中讀取 126 種語言(包括保加利亞語)的文字。
它是 Tesseract 的一個高級分支,專為 .NET 開發人員構建,在速度和準確性方面通常優於其他 Tesseract 引擎。
IronOcr.Languages.保加利亞語的內容
此軟體包包含 52 種適用於 .NET 的 OCR 語言:
- 保加利亞語
- BulgarianBest
- BulgarianFast
下載
保加利亞語包[保加利亞語]
安裝
我們首先需要做的就是將我們的保加利亞語OCR 套件安裝到您的 .NET 專案中。
Install-Package IronOCR.Languages.Bulgarian
程式碼範例
這段 C# 程式碼範例從圖像或 PDF 文件中讀取保加利亞語文字。
// 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
在這個範例中
- 我們建立一個
IronTesseract物件來執行 OCR 操作。 - 我們使用
OcrLanguage.Bulgarian將 OCR 語言設定為保加利亞語。 - 我們將圖像檔案
Bulgarian.png載入到OcrInput物件中。 - 我們使用
Ocr.Read(Input)從圖像中提取文字。 最後,使用Result.Text存取擷取的文字。





