IronOCR OCR 프로그램으로 금융 문서 이미지 텍스트 변환을 위한 언어 팩 지원
This article was translated from English: Does it need improvement?
Translated
View the article in English
IronOCR 에서 데이터 표를 읽는 데 도움이 되도록 금융 용어 팩을 사용할 수 있습니까?
네, 재무 용어집을 활용하고 검색 가능한 PDF 파일로 저장하는 것이 이 목표를 달성하는 데 매우 효과적인 방법이 될 수 있습니다.
IronOCR 금융 용어 팩
예제 코드
// Import the IronOcr library
using IronOcr;
class Program
{
static void Main()
{
// Initialize a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial;
// Using statement to ensure proper disposal of resources
using (var input = new OcrInput())
{
// Add a PDF file to be processed by OCR
input.AddPdf("TestPdf_new.pdf");
// Optional: Add image filters if needed to improve OCR
// input.Deskew(); // Corrects rotation and skewing
// input.DeNoise(); // Reduces noise and improves readability
// Perform OCR on the input PDF
var Result = Ocr.Read(input);
// Extract the recognized text
string TestResult = Result.Text;
// Save the result as a searchable PDF using the Financial language pack
Result.SaveAsSearchablePdf("Output_using_Financial_language_pack.pdf");
}
}
}
// Import the IronOcr library
using IronOcr;
class Program
{
static void Main()
{
// Initialize a new instance of IronTesseract
var Ocr = new IronTesseract();
// Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial;
// Using statement to ensure proper disposal of resources
using (var input = new OcrInput())
{
// Add a PDF file to be processed by OCR
input.AddPdf("TestPdf_new.pdf");
// Optional: Add image filters if needed to improve OCR
// input.Deskew(); // Corrects rotation and skewing
// input.DeNoise(); // Reduces noise and improves readability
// Perform OCR on the input PDF
var Result = Ocr.Read(input);
// Extract the recognized text
string TestResult = Result.Text;
// Save the result as a searchable PDF using the Financial language pack
Result.SaveAsSearchablePdf("Output_using_Financial_language_pack.pdf");
}
}
}
' Import the IronOcr library
Imports IronOcr
Friend Class Program
Shared Sub Main()
' Initialize a new instance of IronTesseract
Dim Ocr = New IronTesseract()
' Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial
' Using statement to ensure proper disposal of resources
Using input = New OcrInput()
' Add a PDF file to be processed by OCR
input.AddPdf("TestPdf_new.pdf")
' Optional: Add image filters if needed to improve OCR
' input.Deskew(); // Corrects rotation and skewing
' input.DeNoise(); // Reduces noise and improves readability
' Perform OCR on the input PDF
Dim Result = Ocr.Read(input)
' Extract the recognized text
Dim TestResult As String = Result.Text
' Save the result as a searchable PDF using the Financial language pack
Result.SaveAsSearchablePdf("Output_using_Financial_language_pack.pdf")
End Using
End Sub
End Class
$vbLabelText
$csharpLabel
시작할 준비 되셨나요?
Nuget 다운로드 5,585,834 | 버전: 2026.4 방금 출시되었습니다

