Serbian OCR in C# and .NET
This article was translated from English: Does it need improvement?
Translated
View the article in English
本文檔的其他版本:
IronOCR是一個 C# 軟體元件,允許.NET設計師從圖像和 PDF 文件中讀取 126 種語言(包括塞爾維亞語)的文字。 它是 Tesseract 的一個高級分支,專為.NET開發人員構建,在速度和準確性方面通常優於其他 Tesseract 引擎。
IronOCR的內容.語言.塞爾維亞語
此軟體包包含 105 種適用於.NET的 OCR 語言:
- 塞爾維亞語
- 塞爾維亞語Best
- 塞爾維亞語Fast
- 塞爾維亞拉丁語
- 塞爾維亞拉丁語Best
- 塞爾維亞拉丁語Fast
下載
塞爾維亞語語言包[српски језик]
安裝
我們首先需要做的就是將我們的塞爾維亞語OCR 套件安裝到您的.NET專案中。
Install-Package IronOcr.Languages.Serbian
程式碼範例
此 C# 程式碼範例從圖像或 PDF 文件中讀取塞爾維亞語文字。
// Ensure all necessary namespaces are imported
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the language to Serbian
Ocr.Language = OcrLanguage.Serbian;
// Use a using statement to ensure resources are disposed properly
using (var Input = new OcrInput(@"images\Serbian.png"))
{
// Perform OCR and store the result
var Result = Ocr.Read(Input);
// Extract all text from the OCR result
var AllText = Result.Text;
// Output the resulting text
Console.WriteLine(AllText);
}
}
}
// Ensure all necessary namespaces are imported
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the language to Serbian
Ocr.Language = OcrLanguage.Serbian;
// Use a using statement to ensure resources are disposed properly
using (var Input = new OcrInput(@"images\Serbian.png"))
{
// Perform OCR and store the result
var Result = Ocr.Read(Input);
// Extract all text from the OCR result
var AllText = Result.Text;
// Output the resulting text
Console.WriteLine(AllText);
}
}
}
' Ensure all necessary namespaces are imported
Imports IronOcr
Friend Class Program
Shared Sub Main()
' Create a new instance of IronTesseract
Dim Ocr = New IronTesseract()
' Set the language to Serbian
Ocr.Language = OcrLanguage.Serbian
' Use a using statement to ensure resources are disposed properly
Using Input = New OcrInput("images\Serbian.png")
' Perform OCR and store the result
Dim Result = Ocr.Read(Input)
' Extract all text from the OCR result
Dim AllText = Result.Text
' Output the resulting text
Console.WriteLine(AllText)
End Using
End Sub
End Class
$vbLabelText
$csharpLabel
代碼解釋:
- 我們初始化一個用於執行 OCR 的
IronTesseract的新實例。 - OCR引擎的語言設定為塞爾維亞語,使用
OcrLanguage.Serbian。 - 我們使用
OcrInput載入圖片Serbian.png,它從指定的路徑讀取檔案。 - 對 OCR 物件呼叫
Read函數來處理圖像並提取文字。 - 從圖像中提取的文字儲存在變數
AllText中,然後列印到控制台。

