C# 和 .NET 中的法語 OCR
This article was translated from English: Does it need improvement?
TranslatedView the article in English
Other versions of this document:
IronOCR 是一個 C# 軟體元件,允許 .NET 程式設計師從圖像和 PDF 文件中讀取 126 種語言(包括法語)的文字。
它是 Tesseract 的一個高級分支,專為 .NET 開發人員構建,在速度和準確性方面通常優於其他 Tesseract 引擎。
IronOcr.Languages.French 的內容
此軟體包包含 43 種適用於 .NET 的 OCR 語言:
- 法語
- FrenchBest
- FrenchFast
下載
法語語言包[法語]
安裝
我們首先需要做的是將我們的法語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





