IronOCR 言語 モンゴル語 C# と .NET でのモンゴル語 OCR カーティス・チャウ 更新日:7月 22, 2025 IronOCR をダウンロード NuGet ダウンロード DLL ダウンロード Windows 版 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる ジェミニで開く このページについてGeminiに問い合わせる 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る This article was translated from English: Does it need improvement? Translated View the article in English Other versions of this document: *モンゴル語 125以上のOCR言語 IronOCR は、.NET コーダーがモンゴル語を含む 126 の言語で画像や PDF ドキュメントからテキストを読み取ることを可能にする C# ソフトウェア コンポーネントです。 これは、特に.NET開発者向けに構築されたTesseractの高度なフォークであり、速度と精度の両方で他のTesseractエンジンを定期的に上回ります。 IronOcr.Languages.Mongolian の内容 このパッケージには、.NET 用の 52 の OCR 言語が含まれています。 モンゴル語 モンゴルベスト モンゴリアンファースト ダウンロード モンゴル語言語パック[монгол] Zip形式でダウンロード NuGetでインストール インストール 最初のステップは、.NET プロジェクトにモンゴル語OCR パッケージをインストールすることです。 Install-Package IronOCR.Languages.Mongolian Code Example この C# コード例は、画像または PDF ドキュメントからモンゴル語のテキストを読み取ります。 using IronOcr; class Program { static void Main() { // Create a new instance of IronTesseract var Ocr = new IronTesseract(); // Set the language to Mongolian Ocr.Language = OcrLanguage.Mongolian; // Define the input as an image located in the "images" directory using (var Input = new OcrInput(@"images\Mongolian.png")) { // Perform OCR on the input image var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Output the recognized text to the console Console.WriteLine(AllText); } } } using IronOcr; class Program { static void Main() { // Create a new instance of IronTesseract var Ocr = new IronTesseract(); // Set the language to Mongolian Ocr.Language = OcrLanguage.Mongolian; // Define the input as an image located in the "images" directory using (var Input = new OcrInput(@"images\Mongolian.png")) { // Perform OCR on the input image var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Output the recognized text to the console Console.WriteLine(AllText); } } } Imports IronOcr Friend Class Program Shared Sub Main() ' Create a new instance of IronTesseract Dim Ocr = New IronTesseract() ' Set the language to Mongolian Ocr.Language = OcrLanguage.Mongolian ' Define the input as an image located in the "images" directory Using Input = New OcrInput("images\Mongolian.png") ' Perform OCR on the input image Dim Result = Ocr.Read(Input) ' Extract all recognized text Dim AllText = Result.Text ' Output the recognized text to the console Console.WriteLine(AllText) End Using End Sub End Class $vbLabelText $csharpLabel この例では、IronOCR を使用してモンゴル語のテキスト画像に対して光学式文字認識を実行する方法を示します。 OCR エンジンを初期化し、言語を設定し、画像入力を処理して認識されたテキストを取得して表示します。