C# 和 .NET 中的瑞典语 OCR

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

瑞典语 新增 125 种 OCR 语言

IronOCR 是一个 C# 软件组件,允许 .NET 程序员从图像和 PDF 文档中读取 126 种语言(包括瑞典语)的文本。

它是 Tesseract 的一个高级分支,专为 .NET 开发人员构建,在速度和准确性方面通常优于其他 Tesseract 引擎。

IronOcr.Languages.Swedish 的内容

此软件包包含 46 种适用于 .NET 的 OCR 语言:

  • 瑞典语
  • SwedishBest
  • SwedishFast

下载

瑞典语语言包[瑞典语]

安装

我们首先需要做的就是将我们的瑞典语OCR 包安装到您的 .NET 项目中。

Install-Package IronOCR.Languages.Swedish

代码示例

此 C# 代码示例从图像或 PDF 文档中读取瑞典语文本。

// Import the IronOcr namespace
using IronOcr;

// Create a new instance of the IronTesseract OCR engine
var Ocr = new IronTesseract();

// Set the language to Swedish
Ocr.Language = OcrLanguage.Swedish;

// Load the image file or PDF from which the text will be extracted
using (var Input = new OcrInput(@"images\Swedish.png"))
{
    // Read the text from the input using the OCR engine
    var Result = Ocr.Read(Input);

    // Get all the extracted text as a string
    var AllText = Result.Text;
}
// Import the IronOcr namespace
using IronOcr;

// Create a new instance of the IronTesseract OCR engine
var Ocr = new IronTesseract();

// Set the language to Swedish
Ocr.Language = OcrLanguage.Swedish;

// Load the image file or PDF from which the text will be extracted
using (var Input = new OcrInput(@"images\Swedish.png"))
{
    // Read the text from the input using the OCR engine
    var Result = Ocr.Read(Input);

    // Get all the extracted text as a string
    var AllText = Result.Text;
}
' Import the IronOcr namespace
Imports IronOcr

' Create a new instance of the IronTesseract OCR engine
Private Ocr = New IronTesseract()

' Set the language to Swedish
Ocr.Language = OcrLanguage.Swedish

' Load the image file or PDF from which the text will be extracted
Using Input = New OcrInput("images\Swedish.png")
	' Read the text from the input using the OCR engine
	Dim Result = Ocr.Read(Input)

	' Get all the extracted text as a string
	Dim AllText = Result.Text
End Using
$vbLabelText   $csharpLabel