Swedish OCR in C# and .NET
Outras versões deste documento:
O IronOCR é um componente de software em C# que permite aos programadores .NET ler texto de imagens e documentos PDF em 126 idiomas, incluindo o sueco.
Trata-se de uma versão avançada do Tesseract, criada exclusivamente para desenvolvedores .NET e que supera regularmente outros mecanismos do Tesseract em termos de velocidade e precisão.
Conteúdo de IronOcr.Idiomas.Sueco
Este pacote contém 46 linguagens de OCR for .NET:
- Sueco
- SwedishBest
- Rápido sueco
Baixar
Pacote de língua sueca [Svenska]
Instalação
A primeira coisa que precisamos fazer é instalar nosso pacote de OCR sueco em seu projeto .NET.
Install-Package IronOcr.Languages.Swedish
Exemplo de código
Este exemplo de código C# lê texto em sueco a partir de uma imagem ou documento 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

