Korean 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 Koreanisch, zu lesen.

Es ist ein fortgeschrittener Fork von Tesseract, der ausschließlich für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines in Bezug auf Geschwindigkeit und Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.Korean

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

  • Koreanisch
  • KoreanischBest
  • KoreanischFast
  • KoreanischVertical
  • KoreanischVerticalBest
  • KoreanischVerticalFast

Download

Koreanisches Sprachpaket style='white-space:default'>[한국어 (韓國語)]

Installation

Der erste Schritt ist, das Korean-OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Korean

Beispielcode

Dieses C#-Codebeispiel liest koreanischen Text aus einem Bild oder PDF-Dokument.

// Ensure you have installed the IronOCR Korean language package
using IronOcr;

var Ocr = new IronTesseract();

// Specify that we want to use the Korean OCR capability
Ocr.Language = OcrLanguage.Korean;

// Create an OCR input, loading the image from the specified path
using (var Input = new OcrInput(@"images\Korean.png"))
{
    // Use the OCR engine to read the text from the image
    var Result = Ocr.Read(Input);

    // Once reading is complete, extract the text from the result
    var AllText = Result.Text;
    // AllText now contains the text recognized from the image
}
// Ensure you have installed the IronOCR Korean language package
using IronOcr;

var Ocr = new IronTesseract();

// Specify that we want to use the Korean OCR capability
Ocr.Language = OcrLanguage.Korean;

// Create an OCR input, loading the image from the specified path
using (var Input = new OcrInput(@"images\Korean.png"))
{
    // Use the OCR engine to read the text from the image
    var Result = Ocr.Read(Input);

    // Once reading is complete, extract the text from the result
    var AllText = Result.Text;
    // AllText now contains the text recognized from the image
}
' Ensure you have installed the IronOCR Korean language package
Imports IronOcr

Private Ocr = New IronTesseract()

' Specify that we want to use the Korean OCR capability
Ocr.Language = OcrLanguage.Korean

' Create an OCR input, loading the image from the specified path
Using Input = New OcrInput("images\Korean.png")
	' Use the OCR engine to read the text from the image
	Dim Result = Ocr.Read(Input)

	' Once reading is complete, extract the text from the result
	Dim AllText = Result.Text
	' AllText now contains the text recognized from the image
End Using
$vbLabelText   $csharpLabel