French OCR in C# and .NET
Andere Versionen dieses Dokuments:
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 for .NET:
- Französisch
- FranzösischBest
- FranzösischSchnell
Download
Französisches Sprachpaket [français]
Installation
Das Erste, was wir tun müssen, ist, unser Französisches OCR-Paket in Ihr .NET-Projekt zu installieren.
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
Imports IronOcr
' Create a new instance of IronTesseract, which is the OCR engine
Dim Ocr As New IronTesseract()
' Specify the language to French for OCR processing
Ocr.Language = OcrLanguage.French
' Load the input image or PDF document
Using Input As 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
Curtis Chau hat einen Bachelor-Abschluss in Informatik von der Carleton University und ist spezialisiert auf Frontend-Entwicklung mit Expertise in Node.js, TypeScript, JavaScript und React. Leidenschaftlich widmet er sich der Erstellung intuitiver und ästhetisch ansprechender Benutzerschnittstellen und arbeitet gerne mit modernen Frameworks sowie der Erstellung gut strukturierter, optisch ansprechender Handbücher.