IronOCR 語言 希臘文 Greek Alphabet OCR in C# and .NET Curtis Chau 更新日期:7月 22, 2025 Download IronOCR NuGet 下載 DLL 下載 Windows 安裝程式 Start Free Trial Copy for LLMs Copy for LLMs Copy page as Markdown for LLMs Open in ChatGPT Ask ChatGPT about this page Open in Gemini Ask Gemini about this page Open in Grok Ask Grok about this page Open in Perplexity Ask Perplexity about this page Share Share on Facebook Share on X (Twitter) Share on LinkedIn Copy URL Email article This article was translated from English: Does it need improvement? Translated View the article in English Other versions of this document: Στο ελληνικό αλφάβητο 其他125種OCR語言 IronOCR 是一個 C# 軟體組件,允許 .NET 開發者從圖像和 PDF 文件中讀取 126 種語言的文本,包括希臘字母。 它是 Tesseract 的高級分支,專為 .NET 開發者而建造,並且在速度和精度上經常優於其他 Tesseract 引擎。 IronOcr.Languages.Greek 的內容 這個套件包含 102 種 .NET 的 OCR 語言: Greek GreekBest GreekFast GreekAlphabet GreekAlphabetBest GreekAlphabetFast 下載 希臘字母語言包 style='white-space:default'>[ελληνικά] 下載為 Zip 使用 NuGet 安裝 安裝 第一步是將 Greek Alphabet OCR 套件安裝到您的 .NET 專案中。 Install-Package IronOCR.Languages.Greek 代碼示例 此 C# 代碼範例從圖像或 PDF 文件中讀取希臘字母文本。 // Import the IronOcr namespace using IronOcr; class GreekOcrExample { static void Main() { // Initialize the IronTesseract OCR engine var Ocr = new IronTesseract(); // Set the OCR language to Greek Ocr.Language = OcrLanguage.Greek; // Load the image or PDF containing Greek text using (var Input = new OcrInput(@"images\Greek.png")) { // Perform OCR and get the result var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Output the recognized text System.Console.WriteLine(AllText); } } } // Import the IronOcr namespace using IronOcr; class GreekOcrExample { static void Main() { // Initialize the IronTesseract OCR engine var Ocr = new IronTesseract(); // Set the OCR language to Greek Ocr.Language = OcrLanguage.Greek; // Load the image or PDF containing Greek text using (var Input = new OcrInput(@"images\Greek.png")) { // Perform OCR and get the result var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Output the recognized text System.Console.WriteLine(AllText); } } } ' Import the IronOcr namespace Imports IronOcr Friend Class GreekOcrExample Shared Sub Main() ' Initialize the IronTesseract OCR engine Dim Ocr = New IronTesseract() ' Set the OCR language to Greek Ocr.Language = OcrLanguage.Greek ' Load the image or PDF containing Greek text Using Input = New OcrInput("images\Greek.png") ' Perform OCR and get the result Dim Result = Ocr.Read(Input) ' Extract all recognized text Dim AllText = Result.Text ' Output the recognized text System.Console.WriteLine(AllText) End Using End Sub End Class $vbLabelText $csharpLabel IronTesseract:此類負責執行 OCR 操作。 OcrInput:此類用於加載要進行 OCR 處理的圖像或 PDF 文件。 Ocr.Read():對輸入數據執行 OCR 並提供識別的文本的方法。 在運行此代碼之前,請確保 IronOcr 庫和希臘語言包已正確安裝在您的 .NET 專案中。 此代碼將輸出從位於 images/Greek.png 的圖像中提取的文本。