Slovene OCR in C# and .NET
Curtis Chau
Updated: 2026年4月23日
本文件的其他版本:
IronOCR 是一個 C# 軟體元件,讓 .NET 開發人員能夠從 126 種語言(包括斯洛維尼亞語)的圖片和 PDF 文件中讀取文字。 這是 Tesseract 的進階分支版本,專為 .NET 開發人員打造,無論在速度或準確度方面,其表現均定期超越其他 Tesseract 引擎。
IronOcr.Languages.Slovene 的內容
此套件包含 46 種適用於 .NET 的 OCR 語言:
- 斯洛維尼亞語
- 斯洛維尼亞語Best
- 斯洛維尼亞語Fast
下載
斯洛維尼亞語語言套件 [slovenski jezik]
安裝
您首先需要在 .NET 專案中安裝斯洛維尼亞語 OCR 套件。
程式碼範例
此 C# 程式碼範例示範如何從圖片或 PDF 文件中讀取斯洛維尼亞語文字。
// Install the package before using it.
// PM> Install-Package IronOcr.Languages.Slovene
using IronOcr;
class Program
{
static void Main()
{
// Create a new instance of IronTesseract for OCR operations.
var Ocr = new IronTesseract();
// Set the OCR language to Slovene.
Ocr.Language = OcrLanguage.Slovene;
// Perform OCR inside a using block to ensure resources are released properly.
using (var Input = new OcrInput(@"images\Slovene.png"))
{
// Read the text from the input image or PDF.
var Result = Ocr.Read(Input);
// Get all the recognized text as a string.
var AllText = Result.Text;
// Output the recognized text to the console.
System.Console.WriteLine(AllText);
}
}
}' Install the package before using it.
' PM> Install-Package IronOcr.Languages.Slovene
Imports IronOcr
Class Program
Shared Sub Main()
' Create a new instance of IronTesseract for OCR operations.
Dim Ocr As New IronTesseract()
' Set the OCR language to Slovene.
Ocr.Language = OcrLanguage.Slovene
' Perform OCR inside a using block to ensure resources are released properly.
Using Input As New OcrInput("images\Slovene.png")
' Read the text from the input image or PDF.
Dim Result = Ocr.Read(Input)
' Get all the recognized text as a string.
Dim AllText = Result.Text
' Output the recognized text to the console.
System.Console.WriteLine(AllText)
End Using
End Sub
End Class
技術作家
Curtis Chau擁有Carleton大學的電腦科學學士學位,專精於前端開發,擁有Node.js、TypeScript、JavaScript和React的專業知識。Curtis熱衷於建立直觀且美觀的使用者介面,喜愛使用現代框架並建立結構良好、視覺吸引力的手冊。
...
閱讀更多