IronOCR 語言 法文 French 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種語言,包括法語。 它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。 IronOcr.Languages.French的內容 該套件包含43種.NET OCR語言: 法語 法語最佳 法語快速 下載 法語語言包 style='white-space:default'>[français] 下載為 Zip 使用 NuGet 安裝 安裝 我們首先要做的是將<強>法語 OCR套件安裝到您的.NET專案中。 Install-Package IronOCR.Languages.French 代碼示例 這個C#代碼範例從圖像或PDF文件中讀取法文字。 // Import the IronOcr namespace using IronOcr; // Create a new instance of IronTesseract, which is the OCR engine var Ocr = new IronTesseract(); // Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French; // Load the input image or PDF document using (var Input = new OcrInput(@"images\French.png")) { // Perform OCR and retrieve the result var Result = Ocr.Read(Input); // Access the text from the OCR result var AllText = Result.Text; // Output or further process `AllText` as needed } // Import the IronOcr namespace using IronOcr; // Create a new instance of IronTesseract, which is the OCR engine var Ocr = new IronTesseract(); // Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French; // Load the input image or PDF document using (var Input = new OcrInput(@"images\French.png")) { // Perform OCR and retrieve the result var Result = Ocr.Read(Input); // Access the text from the OCR result var AllText = Result.Text; // Output or further process `AllText` as needed } ' Import the IronOcr namespace Imports IronOcr ' Create a new instance of IronTesseract, which is the OCR engine Private Ocr = New IronTesseract() ' Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French ' Load the input image or PDF document Using Input = New OcrInput("images\French.png") ' Perform OCR and retrieve the result Dim Result = Ocr.Read(Input) ' Access the text from the OCR result Dim AllText = Result.Text ' Output or further process `AllText` as needed End Using $vbLabelText $csharpLabel