IronOCR 語言 蘇格蘭蓋爾語 Scottish Gaelic 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 126 種以上語言。 IronOCR 是一個 C# 軟體元件,允許 .NET 編碼人員從圖像和 PDF 文件中讀取文字,語言包括蘇格蘭蓋爾語等 126 種。 它是 Tesseract 的進階分叉,專為 .NET 開發人員打造,在速度和精確度上都經常超越其他 Tesseract 引擎。 IronOcr.Languages.ScottishGaelic的內容 本套件包含 67 種 .NET 的 OCR 語言: 蘇格蘭蓋爾語 蘇格蘭蓋爾語Best 蘇格蘭蓋爾語Fast 下載[Gàidhlig]。 - 下載方式為 Zip - 使用 NuGet 安裝 安裝程式碼範例 Install-Package IronOcr.Languages.ScottishGaelic using IronOcr; // Create an instance of the IronTesseract class var Ocr = new IronTesseract(); // Set the language to Scottish Gaelic Ocr.Language = OcrLanguage.ScottishGaelic; // Create an OcrInput object with the specified image or PDF file using (var Input = new OcrInput(@"images\ScottishGaelic.png")) { // Perform OCR on the input and obtain the result var Result = Ocr.Read(Input); // Retrieve the recognized text var AllText = Result.Text; } ``` 上述程式碼使用 IronOcr 安裝並設定蘇格蘭蓋爾語的 OCR 程序。 它對指定的影像 `ScottishGaelic.png` 執行光學字元識別,並擷取影像中包含的文字。 擷取的文字將儲存在 `AllText` 變數中,以供進一步使用或處理。