IronOCR 語言 加利西亞語 Galician 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 开发人员能够从包括加利西亚语在内的 126 种语言的图像和 PDF 文档中提取文本。 它是 Tesseract 的一个高级分支,专为 .NET 开发人员设计,在速度和准确性方面始终优于其他 Tesseract 引擎。 IronOcr.Languages.Galician 的内容 此包包含适用于 .NET 的 49 种 OCR 语言,包括: 加利西亚语 加利西亚Best 加利西亚Fast 下載 加利西亚语言包 [galego] 下载为 Zip 使用 NuGet 安装 安裝 在您的 .NET 项目中使用 加利西亚语 OCR 包的第一步是安装它。 Install-Package IronOCR.Languages.Galician 代碼示例 以下 C# 代码示例演示如何从图像或 PDF 文档读取加利西亚语文本。 // Include the IronOcr library using IronOcr; class Program { static void Main() { // Instantiate the IronTesseract OCR engine var Ocr = new IronTesseract(); // Specify the language for OCR as Galician Ocr.Language = OcrLanguage.Galician; // Define the input source, here it is an image file using (var Input = new OcrInput(@"images\Galician.png")) { // Perform the OCR process on the input image var Result = Ocr.Read(Input); // Retrieve the recognized text from the OCR result var AllText = Result.Text; // Output the extracted text to the console Console.WriteLine(AllText); } } } // Include the IronOcr library using IronOcr; class Program { static void Main() { // Instantiate the IronTesseract OCR engine var Ocr = new IronTesseract(); // Specify the language for OCR as Galician Ocr.Language = OcrLanguage.Galician; // Define the input source, here it is an image file using (var Input = new OcrInput(@"images\Galician.png")) { // Perform the OCR process on the input image var Result = Ocr.Read(Input); // Retrieve the recognized text from the OCR result var AllText = Result.Text; // Output the extracted text to the console Console.WriteLine(AllText); } } } ' Include the IronOcr library Imports IronOcr Friend Class Program Shared Sub Main() ' Instantiate the IronTesseract OCR engine Dim Ocr = New IronTesseract() ' Specify the language for OCR as Galician Ocr.Language = OcrLanguage.Galician ' Define the input source, here it is an image file Using Input = New OcrInput("images\Galician.png") ' Perform the OCR process on the input image Dim Result = Ocr.Read(Input) ' Retrieve the recognized text from the OCR result Dim AllText = Result.Text ' Output the extracted text to the console Console.WriteLine(AllText) End Using End Sub End Class $vbLabelText $csharpLabel 在上述代碼中: 我们使用 IronTesseract 类创建 OCR 引擎对象。 我们将 OCR 语言设置为加利西亚语,确保 OCR 引擎准确处理加利西亚语文本。 然后,我们读取位于 "images\Galician.png" 的图像文件并获取识别的文本。 最后,我们将识别的文本打印到控制台。