IronOCR 語言 芬蘭語 Finnish 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: Suomen kielellä 其他125種OCR語言 IronOCR 是一款 C# 軟體元件,允許 .NET 程式設計師從圖像和 PDF 文件中讀取包括芬蘭語在內的 126 種語言的文字。 它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。 IronOcr.Languages.Finnish 的內容 此套件包含 .NET 的46種 OCR 語言: 芬蘭語 FinnishBest FinnishFast 下載 芬蘭語語言包 style='white-space:default'>[suomi] 下載為 Zip 使用 NuGet 安裝 安裝 我們首先要做的是將 芬蘭語 OCR 套件安裝到您的 .NET 專案中。 Install-Package IronOCR.Languages.Finnish 代碼示例 此 C# 代碼範例從圖像或 PDF 文件中讀取芬蘭語文本。 // Ensure you have installed the IronOcr.Languages.Finnish package before using this code. // You can install it via NuGet package manager. using IronOcr; var Ocr = new IronTesseract(); // Create a new instance of the IronTesseract OCR engine Ocr.Language = OcrLanguage.Finnish; // Set the language of the OCR engine to Finnish // Using a using statement to ensure the OcrInput gets disposed of correctly using (var Input = new OcrInput(@"images\Finnish.png")) // Path to the image/PDF containing Finnish text { var Result = Ocr.Read(Input); // Perform OCR on the input file var AllText = Result.Text; // Extract the recognized text as a string // Output or process the extracted text as required Console.WriteLine(AllText); // Example of outputting the text to the console } // Ensure you have installed the IronOcr.Languages.Finnish package before using this code. // You can install it via NuGet package manager. using IronOcr; var Ocr = new IronTesseract(); // Create a new instance of the IronTesseract OCR engine Ocr.Language = OcrLanguage.Finnish; // Set the language of the OCR engine to Finnish // Using a using statement to ensure the OcrInput gets disposed of correctly using (var Input = new OcrInput(@"images\Finnish.png")) // Path to the image/PDF containing Finnish text { var Result = Ocr.Read(Input); // Perform OCR on the input file var AllText = Result.Text; // Extract the recognized text as a string // Output or process the extracted text as required Console.WriteLine(AllText); // Example of outputting the text to the console } ' Ensure you have installed the IronOcr.Languages.Finnish package before using this code. ' You can install it via NuGet package manager. Imports IronOcr Private Ocr = New IronTesseract() ' Create a new instance of the IronTesseract OCR engine Ocr.Language = OcrLanguage.Finnish ' Set the language of the OCR engine to Finnish ' Using a using statement to ensure the OcrInput gets disposed of correctly Using Input = New OcrInput("images\Finnish.png") ' Path to the image/PDF containing Finnish text Dim Result = Ocr.Read(Input) ' Perform OCR on the input file Dim AllText = Result.Text ' Extract the recognized text as a string ' Output or process the extracted text as required Console.WriteLine(AllText) ' Example of outputting the text to the console End Using $vbLabelText $csharpLabel