Slovene OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
本文件的其他版本:

IronOCR 是一個 C# 軟體元件,讓 .NET 開發人員能夠從 126 種語言(包括斯洛維尼亞語)的圖片和 PDF 文件中讀取文字。 這是 Tesseract 的進階分支版本,專為 .NET 開發人員打造,無論在速度或準確度方面,其表現均定期超越其他 Tesseract 引擎。

IronOcr.Languages.Slovene 的內容

此套件包含 46 種適用於 .NET 的 OCR 語言:

  • 斯洛維尼亞語
  • 斯洛維尼亞語Best
  • 斯洛維尼亞語Fast

下載

斯洛維尼亞語語言套件 [slovenski jezik]

安裝

您首先需要在 .NET 專案中安裝斯洛維尼亞語 OCR 套件。

Install-Package IronOcr.Languages.Slovene

程式碼範例

此 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.Co/nsole.WriteLine(AllText);
        }
    }
}
// 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.Co/nsole.WriteLine(AllText);
        }
    }
}
Imports IronOcr

Module Program
    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.
            Console.WriteLine(AllText)
        End Using
    End Sub
End Module
$vbLabelText   $csharpLabel