泰文字母OCR在C#和.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.Languages.Thai的內容

此套件包含96種.NET的OCR語言:

  • 泰語
  • 泰語Best
  • 泰語Fast
  • 泰語Alphabet
  • 泰語AlphabetBest
  • 泰語AlphabetFast

下載

泰文字母語言包 [ไทย]

安裝

我們首先要做的是將泰文字母OCR套件安裝到您的.NET專案中。

Install-Package IronOcr.Languages.Thai

程式碼範例

此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);
        }
    }
}
// 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);
        }
    }
}
Imports IronOcr

Class ThaiOcrExample
    Shared Sub Main()
        ' Create a new instance of IronTesseract for OCR processing
        Dim ocr As 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 input As New OcrInput("images\Thai.png")
            ' Perform OCR to read the text from the input image
            Dim result = ocr.Read(input)

            ' Retrieve and store all recognized text from the image
            Dim allText As String = result.Text

            ' Optionally, you can output the text to console or log it as needed
            System.Console.WriteLine(allText)
        End Using
    End Sub
End Class
$vbLabelText   $csharpLabel

在這個範例中,我們從位於Thai.png中讀取泰文字。 請確保將檔案路徑替換為實際圖片位置。 OCR語言設置為泰語,使用OcrLanguage.Thai來指定泰語語言包進行識別。