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 ist eine C# Softwarekomponente, die es .NET-Entwicklern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Französisch, zu lesen.

Es ist eine erweiterte Abspaltung von Tesseract, die exklusiv für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines sowohl in Bezug auf Geschwindigkeit als auch Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.French

Dieses Paket enthält 43 OCR-Sprachen für .NET:

  • Französisch
  • FranzösischBest
  • FranzösischSchnell

Download

Französisches Sprachpaket style='white-space:default'>[français]

Installation

Das Erste, was wir tun müssen, ist, unser Französisches OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.French

Beispielcode

Dieses C# Codebeispiel liest französischen Text aus einem Bild oder PDF-Dokument.

// 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