Polish OCR in C# and .NET
本文件的其他版本:
IronOCR 是一個 C# 軟體元件,可讓 .NET 開發人員從 126 種語言(包括波蘭語)的圖片和 PDF 文件中讀取文字。 這是 Tesseract 的進階分支版本,專為 .NET 開發者打造,無論在速度或準確度方面,其表現通常都優於其他 Tesseract 引擎。
IronOcr.Languages.Polish 內容
此套件包含 43 種適用於 .NET 的 OCR 語言:
- 波蘭語
- 波蘭語Best
- 波蘭語Fast
下載
波蘭語語言套件 [język polski]:
安裝
首先,請將波蘭語 OCR 套件安裝至您的 .NET 專案中。
若要透過 NuGet 套件管理員安裝,請執行以下指令:
Install-Package IronOcr.Languages.Polish
程式碼範例
此 C# 程式碼範例示範如何使用 IronOCR 從圖片或 PDF 文件中讀取波蘭文。
// Install the IronOcr.Languages.Polish package via NuGet before using this code.
using IronOcr;
public class PolishOcrExample
{
public void ReadPolishTextFromImage()
{
// Initialize the IronTesseract object
var Ocr = new IronTesseract();
// Set the language to Polish
Ocr.Language = OcrLanguage.Polish;
// Provide the path to the image or PDF file containing Polish text
using (var Input = new OcrInput(@"images\Polish.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all recognized text
var AllText = Result.Text;
// Display or process the recognized text
Console.WriteLine(AllText);
}
}
}
// Install the IronOcr.Languages.Polish package via NuGet before using this code.
using IronOcr;
public class PolishOcrExample
{
public void ReadPolishTextFromImage()
{
// Initialize the IronTesseract object
var Ocr = new IronTesseract();
// Set the language to Polish
Ocr.Language = OcrLanguage.Polish;
// Provide the path to the image or PDF file containing Polish text
using (var Input = new OcrInput(@"images\Polish.png"))
{
// Perform OCR on the input image
var Result = Ocr.Read(Input);
// Extract all recognized text
var AllText = Result.Text;
// Display or process the recognized text
Console.WriteLine(AllText);
}
}
}
' Install the IronOcr.Languages.Polish package via NuGet before using this code.
Imports IronOcr
Public Class PolishOcrExample
Public Sub ReadPolishTextFromImage()
' Initialize the IronTesseract object
Dim Ocr = New IronTesseract()
' Set the language to Polish
Ocr.Language = OcrLanguage.Polish
' Provide the path to the image or PDF file containing Polish text
Using Input = New OcrInput("images\Polish.png")
' Perform OCR on the input image
Dim Result = Ocr.Read(Input)
' Extract all recognized text
Dim AllText = Result.Text
' Display or process the recognized text
Console.WriteLine(AllText)
End Using
End Sub
End Class
此腳本會初始化 OCR 引擎、指定語言(波蘭語),並處理位於 "images\Polish.png" 的圖片以提取並顯示文字。 請確保檔案路徑正確,並在執行程式碼前已安裝 OCR 套件。

