French OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English
Other versions of this document:

IronOCR 是一個C#軟體元件,允許.NET編碼員從圖像和PDF文件中讀取文字,支持126種語言,包括法語。

它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。

IronOcr.Languages.French的內容

該套件包含43種.NET OCR語言:

  • 法語
  • 法語最佳
  • 法語快速

下載

法語語言包 style='white-space:default'>[français]

安裝

我們首先要做的是將<強>法語 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