泰文字母OCR在C#和.NET中
Curtis Chau
Updated: 2026年5月9日
此文件的其他版本:
IronOCR是一種C#軟體元件,允許.NET程式員從圖片和PDF文件中讀取126種語言的文字,包括泰文字母。
它是Tesseract的一個高級派生版本,專為.NET開發人員打造,並且在速度和準確性方面經常超越其他Tesseract引擎。
IronOcr.Languages.Thai的內容
此套件包含96種.NET的OCR語言:
- 泰語
- 泰語Best
- 泰語Fast
- 泰語Alphabet
- 泰語AlphabetBest
- 泰語AlphabetFast
下載
泰文字母語言包 [ไทย]
安裝
我們首先要做的是將泰文字母OCR套件安裝到您的.NET專案中。
程式碼範例
此C#程式碼範例從圖片或PDF文件中讀取泰文字母文字。
// Ensure you have installed the IronOcr.Languages.Thai package via NuGet.
// Import the IronOcr namespace to work with IronOCR classes.
using IronOcr;
class ThaiOcrExample
{
static void Main()
{
// Create a new instance of IronTesseract for OCR processing
var ocr = new IronTesseract();
// Set the language to Thai for Optical Character Recognition
ocr.Language = OcrLanguage.Thai;
// Using the 'using' statement ensures that resources are properly disposed.
using (var input = new OcrInput(@"images\Thai.png"))
{
// Perform OCR to read the text from the input image
var result = ocr.Read(input);
// Retrieve and store all recognized text from the image
string allText = result.Text;
// Optionally, you can output the text to console or log it as needed
System.Console.WriteLine(allText);
}
}
}
C#
在這個範例中,我們從位於Thai.png中讀取泰文字。 請確保將檔案路徑替換為實際圖片位置。 OCR語言設置為泰語,使用OcrLanguage.Thai來指定泰語語言包進行識別。

技術作家
Curtis Chau擁有Carleton大學的電腦科學學士學位,專精於前端開發,擁有Node.js、TypeScript、JavaScript和React的專業知識。Curtis熱衷於建立直觀且美觀的使用者介面,喜愛使用現代框架並建立結構良好、視覺吸引力的手冊。
...
閱讀更多