IronOCR ハウツー デバッグ C#でのOCRのデバッグ方法 — 文字起こし・テキスト抽出の精度検証 カーティス・チャウ 更新日:2026年3月2日 IronOCR をダウンロード NuGet ダウンロード DLL ダウンロード Windows 版 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる Grokで開く このページについてGrokに質問する 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る This article was translated from English: Does it need improvement? Translated View the article in English IronOCRを使用すると、OCRエラーをソースで検出し、単語レベルおよび文字レベルで文字認識の品質を評価し、長時間実行されるジョブをリアルタイムで監視できます。診断ファイルのログ記録、型付き例外階層、結果ごとの信頼度スコアリング、およびOcrProgressイベントなどの組み込みツールが、本番環境のパイプラインにおけるこれらのワークフローをサポートします。 このガイドでは、診断ログの有効化、型付き例外の処理、信頼度スコアによる出力の検証、ジョブの進行状況のリアルタイム監視、バッチパイプラインにおけるエラーの分離など、それぞれの動作例を順を追って説明します。 クイックスタート: フルOCR診断ログを有効にする 最初の Read 呼び出しの前に、Installation クラスに LogFilePath と Loggingモード を設定します。 Tesseractの初期化、言語パックの読み込み、および処理の詳細をログファイルに記録するには、たった2つのプロパティを設定するだけで済みます。 IronOCR をNuGetパッケージマネージャでインストール PM > Install-Package IronOcr このコード スニペットをコピーして実行します。 IronOcr.Installation.LogFilePath = "ocr.log"; IronOcr.Installation.Loggingモード = IronOcr.Installation.Loggingモードs.All; 実際の環境でテストするためにデプロイする 今日プロジェクトで IronOCR を使い始めましょう無料トライアル Free 30 Day Trial 最小限のワークフロー(5ステップ) OCRのデバッグ用C#ライブラリをダウンロードしてください LogFilePath書き込み可能なファイルパスに設定します。 診断情報を完全に取得するには、 Loggingモード Allに設定してください。 OCR操作を実行し、問題を再現します 生成されたログファイルを検査して、エンジンの警告と処理の詳細を見ます 診断ログを有効にするにはどうすればよいですか? Installationクラスは 3 つのログ制御機能を公開します。 Read メソッドを呼び出す前に、これらを設定してください。 :path=/static-assets/ocr/content-code-examples/how-to/debugging-enable-logging.cs using IronOcr; // Write logs to a specific file Installation.LogFilePath = "logs/ocr_diagnostics.log"; // Enable all logging channels: file + debug output Installation.LoggingMode = Installation.LoggingModes.All; // Or pipe logs into your existing ILogger pipeline Installation.CustomLogger = myLoggerInstance; Imports IronOcr ' Write logs to a specific file Installation.LogFilePath = "logs/ocr_diagnostics.log" ' Enable all logging channels: file + debug output Installation.LoggingMode = Installation.LoggingModes.All ' Or pipe logs into your existing ILogger pipeline Installation.CustomLogger = myLoggerInstance $vbLabelText $csharpLabel LoggingModes はLoggingModes列挙型からフラグ値を受け入れます。 表1:ログモードのオプション モード出力ターゲット使用事例 None無効本番環境での外部モニタリング DebugIDEのデバッグ出力ウィンドウローカル開発 FileLogFilePathサーバーサイドのロギング収集 Allデバッグ + ファイル完全な診断キャプチャ CustomLogger プロパティは、あらゆる Microsoft.Extensions.Logging.ILogger 実装をサポートしており、OCR 診断をパイプライン内の Serilog、NLog、またはその他の構造化ログ出力先へ送ることができます。実行間で蓄積されたログデータを削除するには、 ClearLogFilesを使用します。 ログ記録の設定が完了したら、次のステップはIronOCRがどのような例外をスローする可能性があるのか、そしてそれぞれの例外をどのように処理するのかを理解することです。 IronOCRはどのような例外をスローしますか? IronOCR は、IronOcr.Exceptions名前空間の下で型付き例外を定義します。 包括的なキャッチブロックではなく、これらのエラーを個別にキャッチすることで、それぞれのエラータイプを適切な修復パスにルーティングできます。 表2: IronOCR例外リファレンス 例外共通の原因修正方法 IronOcrInput例外壊れたまたはサポートされていない画像/PDFファイルをOcrInputに読み込む前に検証 IronOcrProduct例外OCR実行中の内部エンジンエラーログを有効にし、ログ出力を確認し、最新のNuGetバージョンに更新 IronOcrDictionary例外欠落または壊れた.traineddata言語ファイル言語パックのNuGetを再インストールするか、 LanguagePackDirectoryを設定してください。 IronOcrNative例外ネイティブC++の相互運用の失敗Visual C++ Redistributableをインストールして、AVXのサポートを確認 IronOcrLicensing例外欠落または期限切れのライセンスキーReadを呼び出す前にLicenseKeyを設定してください。 LanguagePack例外想定されたパスに言語パックが見つかりませんLanguagePackDirectoryを確認するか、NuGet言語パッケージを再インストール IronOcrAssemblyVersionMismatch例外部分的な更新後のアセンブリバージョンの不一致NuGetキャッシュをクリアし、パッケージを復元して、すべてのIronOCRパッケージが一致していることを確認 以下のtry-catchブロックを使用して、各例外タイプを個別に処理し、条件付きログ記録のために例外フィルタを適用します。 入力 IronOCR Solutions から Acme Corporation への 1 ページのベンダー請求書が、LoadPdf を介して OcrInput に読み込まれました。 これには4つの明細項目、税金、そして合計金額が含まれており、各例外処理担当者に現実的な演習を提供するのに十分なテキストの多様性がある。 invoice_scan.pdf: 各例外ハンドラを順番にデモンストレーションするために使用されるベンダー請求書(#INV-2024-7829)。 :path=/static-assets/ocr/content-code-examples/how-to/debugging-exception-handling.cs using IronOcr; using IronOcr.Exceptions; var ocr = new IronTesseract(); try { using var input = new OcrInput(); input.LoadPdf("invoice_scan.pdf"); OcrResult result = ocr.Read(input); Console.WriteLine($"Text: {result.Text}"); Console.WriteLine($"Confidence: {result.Confidence:P1}"); } catch (IronOcrInputException ex) { // File could not be loaded — corrupt, locked, or unsupported format Console.Error.WriteLine($"Input error: {ex.Message}"); } catch (IronOcrDictionaryException ex) { // Language pack missing — common in containerized deployments Console.Error.WriteLine($"Language pack error: {ex.Message}"); } catch (IronOcrNativeException ex) when (ex.Message.Contains("AVX")) { // CPU does not support AVX instructions Console.Error.WriteLine($"Hardware incompatibility: {ex.Message}"); } catch (IronOcrLicensingException) { Console.Error.WriteLine("License key is missing or invalid."); } catch (IronOcrProductException ex) { // Catch-all for other IronOCR engine errors Console.Error.WriteLine($"OCR engine error: {ex.Message}"); Console.Error.WriteLine($"Stack trace: {ex.StackTrace}"); } Imports IronOcr Imports IronOcr.Exceptions Dim ocr As New IronTesseract() Try Using input As New OcrInput() input.LoadPdf("invoice_scan.pdf") Dim result As OcrResult = ocr.Read(input) Console.WriteLine($"Text: {result.Text}") Console.WriteLine($"Confidence: {result.Confidence:P1}") End Using Catch ex As IronOcrInputException ' File could not be loaded — corrupt, locked, or unsupported format Console.Error.WriteLine($"Input error: {ex.Message}") Catch ex As IronOcrDictionaryException ' Language pack missing — common in containerized deployments Console.Error.WriteLine($"Language pack error: {ex.Message}") Catch ex As IronOcrNativeException When ex.Message.Contains("AVX") ' CPU does not support AVX instructions Console.Error.WriteLine($"Hardware incompatibility: {ex.Message}") Catch ex As IronOcrLicensingException Console.Error.WriteLine("License key is missing or invalid.") Catch ex As IronOcrProductException ' Catch-all for other IronOCR engine errors Console.Error.WriteLine($"OCR engine error: {ex.Message}") Console.Error.WriteLine($"Stack trace: {ex.StackTrace}") End Try $vbLabelText $csharpLabel 出力 成功時の出力 請求書は正常に読み込まれ、エンジンは文字数と信頼度スコアを返します。 出力失敗 キャッチブロックは、最も具体的なものから最も一般的なものへと順に並べなさい。 when 句は、IronOcrNativeException に対して、無関係なネイティブ エラーを捕捉することなく、 AVX 関連の障害をフィルタリングします。 各ハンドラは例外メッセージをログに記録する。 包括的なブロックは、事後分析のためにスタックトレースもキャプチャします。 適切な例外を捕捉することで、何らかの問題が発生したことはわかりますが、エンジンが正常に動作した際のパフォーマンスについてはわかりません。 そのためには、信頼度スコアを使用してください。 OCR出力の信頼性スコアを検証するにはどうすればよいですか? すべてのOcrResult は、Confidence プロパティを公開します。これは、認識されたすべての文字にわたって平均化されたエンジンの統計的確実性を表す 0 から 1 の間の値です。 結果階層のどのレベル(文書、ページ、段落、単語、文字)でもこれにアクセスできます。 低品質な結果が下流に伝播するのを防ぐため、閾値制御パターンを使用してください。 入力 明細項目、割引、合計、バーコードが記載された感熱レシート。LoadImage を介して読み込まれます。 その狭い幅、等幅フォント、そして薄い印刷は、単語ごとの信頼度閾値を検証するための実用的なストレステストとなる。 receipt.png: 閾値制御による信頼性検証と単語ごとの精度ドリルダウンを実証するために使用される感熱レシートのスキャン画像。 :path=/static-assets/ocr/content-code-examples/how-to/debugging-confidence-scoring.cs using IronOcr; var ocr = new IronTesseract(); using var input = new OcrInput(); input.LoadImage("receipt.png"); OcrResult result = ocr.Read(input); double confidence = result.Confidence; Console.WriteLine($"Overall confidence: {confidence:P1}"); // Threshold-gated decision if (confidence >= 0.90) { Console.WriteLine("ACCEPT — high confidence, processing result."); ProcessResult(result.Text); } else if (confidence >= 0.70) { Console.WriteLine("FLAG — moderate confidence, queuing for review."); QueueForReview(result.Text, confidence); } else { Console.WriteLine("REJECT — low confidence, logging for investigation."); LogRejection("receipt.png", confidence); } // Drill into per-page and per-word confidence for diagnostics foreach (var page in result.Pages) { Console.WriteLine($" Page {page.PageNumber}: {page.Confidence:P1}"); var lowConfidenceWords = page.Words .Where(w => w.Confidence < 0.70) .ToList(); foreach (var word in lowConfidenceWords) { Console.WriteLine($" Low-confidence word: \"{word.Text}\" ({word.Confidence:P1})"); } } Imports IronOcr Dim ocr As New IronTesseract() Using input As New OcrInput() input.LoadImage("receipt.png") Dim result As OcrResult = ocr.Read(input) Dim confidence As Double = result.Confidence Console.WriteLine($"Overall confidence: {confidence:P1}") ' Threshold-gated decision If confidence >= 0.9 Then Console.WriteLine("ACCEPT — high confidence, processing result.") ProcessResult(result.Text) ElseIf confidence >= 0.7 Then Console.WriteLine("FLAG — moderate confidence, queuing for review.") QueueForReview(result.Text, confidence) Else Console.WriteLine("REJECT — low confidence, logging for investigation.") LogRejection("receipt.png", confidence) End If ' Drill into per-page and per-word confidence for diagnostics For Each page In result.Pages Console.WriteLine($" Page {page.PageNumber}: {page.Confidence:P1}") Dim lowConfidenceWords = page.Words _ .Where(Function(w) w.Confidence < 0.7) _ .ToList() For Each word In lowConfidenceWords Console.WriteLine($" Low-confidence word: ""{word.Text}"" ({word.Confidence:P1})") Next Next End Using $vbLabelText $csharpLabel 出力 このパターンは、OCRがデータ入力、請求書処理、コンプライアンスワークフローに供給されるパイプラインにおいて重要です。 単語ごとの詳細な分析により、ソース画像のどの領域が劣化を引き起こしたかを正確に特定できます。 その後、画質フィルターや向き補正を適用して再処理することができます。 信頼度レベルの詳細ガイドを見ると、信頼スコアリングをより深く見ることができます。 長期にわたる仕事においては、自信だけでは十分ではない。 また、エンジンがまだ進行しているかどうかを知る必要があり、そこでOcrProgressイベントが登場します。 OCRの進行状況をリアルタイムで監視するにはどうすればよいですか? 複数ページの文書の場合、各ページが完了すると、IronTesseract の OcrProgress イベントが発生します。 OcrProgressEventArgs オブジェクトは、進行率、経過時間、総ページ数、完了ページ数を公開します。 この例では、3ページにわたる四半期報告書を入力として使用します。これは、エグゼクティブサマリー、収益内訳、および業務指標を含む構造化されたビジネス文書です。 入力 LoadPdf を介して読み込まれた 2024 年第 1 四半期の 3 ページの財務報告書。 1ページ目にはKPI指標を含むエグゼクティブサマリー、2ページ目には製品ライン別および地域別の収益表、3ページ目には運用処理量が掲載されています。各ページタイプごとに異なる処理時間が発生し、進捗コールバックで確認できます。 quarterly_report.pdf: 2024年第1四半期の3ページにわたる財務報告書(エグゼクティブサマリー、収益内訳、運用指標)で、ページごとのリアルタイムの`OcrProgress`コールバックを実証するために使用されます。 :path=/static-assets/ocr/content-code-examples/how-to/debugging-progress-monitoring.cs using IronOcr; var ocr = new IronTesseract(); ocr.OcrProgress += (sender, e) => { Console.WriteLine( $"[OCR] {e.ProgressPercent}% complete | " + $"Page {e.PagesComplete}/{e.TotalPages} | " + $"Elapsed: {e.Duration.TotalSeconds:F1}s" ); }; using var input = new OcrInput(); input.LoadPdf("quarterly_report.pdf"); OcrResult result = ocr.Read(input); Console.WriteLine($"Finished in {result.Pages.Count()} pages, confidence: {result.Confidence:P1}"); Imports IronOcr Dim ocr = New IronTesseract() AddHandler ocr.OcrProgress, Sub(sender, e) Console.WriteLine( $"[OCR] {e.ProgressPercent}% complete | " & $"Page {e.PagesComplete}/{e.TotalPages} | " & $"Elapsed: {e.Duration.TotalSeconds:F1}s" ) End Sub Using input As New OcrInput() input.LoadPdf("quarterly_report.pdf") Dim result As OcrResult = ocr.Read(input) Console.WriteLine($"Finished in {result.Pages.Count()} pages, confidence: {result.Confidence:P1}") End Using $vbLabelText $csharpLabel 出力 このイベントをログ記録インフラストラクチャに組み込むことで、OCRジョブの実行時間を追跡し、停止を検出できます。 経過時間が一定の閾値を超えても進捗率が進まない場合、パイプラインは調査対象としてジョブにフラグを立てることができます。 これは特にバッチPDF処理に役立ち、単一の異常なページが全体のジョブを停滞させてしまう可能性があります。 進捗状況の監視によって実行状態は把握できますが、ファイルレベルの障害が発生した場合、それを特定しないとバッチ処理全体が途中で停止してしまう可能性があります。 バッチOCRパイプラインにおけるエラー処理方法を教えてください 本番環境では、単一ファイルのエラーによってバッチ処理全体が停止するような事態は避けるべきです。 ファイルごとにエラーを特定し、エラーをコンテキストとともにログに記録し、最後に要約レポートを作成します。 この例では、請求書、発注書、サービス契約書を含むスキャン文書のフォルダと、Plus。 代表的なサンプルを以下に示します。 入力 Directory.GetFiles に渡されたPDFファイルのフォルダには、請求書、発注書、サービス契約書、そして意図的に破損させたファイルが1つ含まれています。以下の2つの代表的なサンプルは、パイプラインが1回の実行で処理する文書の多様性を示しています。 batch-scan-01.pdf: Bright Horizon Ltd. の請求書 (INV-2024-001) — OCR が正常に完了しました。 batch-scan-02.pdf: TechSupply Inc. の発注書 (PO-2024-042) — 同一実行における 2 番目のドキュメント タイプ。 :path=/static-assets/ocr/content-code-examples/how-to/debugging-batch-pipeline.cs using IronOcr; using IronOcr.Exceptions; var ocr = new IronTesseract(); Installation.LogFilePath = "batch_debug.log"; Installation.LoggingMode = Installation.LoggingModes.File; string[] files = Directory.GetFiles("scans/", "*.pdf"); int succeeded = 0, failed = 0; double totalConfidence = 0; var failures = new List<(string File, string Error)>(); foreach (string file in files) { try { using var input = new OcrInput(); input.LoadPdf(file); OcrResult result = ocr.Read(input); totalConfidence += result.Confidence; succeeded++; Console.WriteLine($"OK: {Path.GetFileName(file)} — {result.Confidence:P1}"); } catch (IronOcrInputException ex) { failed++; failures.Add((file, $"Input error: {ex.Message}")); Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.Message}"); } catch (IronOcrProductException ex) { failed++; failures.Add((file, $"Engine error: {ex.Message}")); Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.Message}"); } catch (Exception ex) { failed++; failures.Add((file, $"Unexpected: {ex.Message}")); Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.GetType().Name}: {ex.Message}"); } } // Summary report Console.WriteLine($"\n--- Batch Summary ---"); Console.WriteLine($"Total: {files.Length} | Passed: {succeeded} | Failed: {failed}"); if (succeeded > 0) Console.WriteLine($"Average confidence: {totalConfidence / succeeded:P1}"); foreach (var (f, err) in failures) Console.WriteLine($" {Path.GetFileName(f)}: {err}"); Imports IronOcr Imports IronOcr.Exceptions Imports System.IO Dim ocr As New IronTesseract() Installation.LogFilePath = "batch_debug.log" Installation.LoggingMode = Installation.LoggingModes.File Dim files As String() = Directory.GetFiles("scans/", "*.pdf") Dim succeeded As Integer = 0 Dim failed As Integer = 0 Dim totalConfidence As Double = 0 Dim failures As New List(Of (File As String, Error As String))() For Each file As String In files Try Using input As New OcrInput() input.LoadPdf(file) Dim result As OcrResult = ocr.Read(input) totalConfidence += result.Confidence succeeded += 1 Console.WriteLine($"OK: {Path.GetFileName(file)} — {result.Confidence:P1}") End Using Catch ex As IronOcrInputException failed += 1 failures.Add((file, $"Input error: {ex.Message}")) Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.Message}") Catch ex As IronOcrProductException failed += 1 failures.Add((file, $"Engine error: {ex.Message}")) Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.Message}") Catch ex As Exception failed += 1 failures.Add((file, $"Unexpected: {ex.Message}")) Console.Error.WriteLine($"FAIL: {Path.GetFileName(file)} — {ex.GetType().Name}: {ex.Message}") End Try Next ' Summary report Console.WriteLine(vbCrLf & "--- Batch Summary ---") Console.WriteLine($"Total: {files.Length} | Passed: {succeeded} | Failed: {failed}") If succeeded > 0 Then Console.WriteLine($"Average confidence: {totalConfidence / succeeded:P1}") End If For Each failure In failures Console.WriteLine($" {Path.GetFileName(failure.File)}: {failure.Error}") Next $vbLabelText $csharpLabel 出力 外側のcatchブロックは、共有ストレージでのネットワークタイムアウト、権限の問題、大きなTIFFファイルでのメモリ不足など、予期せぬエラーを処理します。 各失敗は、ファイルパスとエラーメッセージを要約のために記録し、ループは残りのファイルの処理を継続します。 batch_debug.log にあるログファイルには、内部診断をトリガーするすべてのファイルに関するエンジンレベルの詳細情報が記録されます。 サービスや Web アプリケーションでの非ブロッキング実行のために、 IronOCR は同じ try-catch 構造を使用するReadAsyncをサポートしています。 パイプラインがエラーなく実行されたにもかかわらず、抽出されたテキストが間違っている場合、根本原因はほぼ間違いなくコードではなく画像品質にある。 それに対処する方法は以下のとおりです。 OCRの精度をデバッグするにはどうすればよいですか? 信頼度スコアが継続的に低い場合、問題はOCRエンジンではなく、元の画像にあります。IronOCRは、この問題を解決するための前処理ツールを提供しています。 テキストの鮮明度を向上させるために、シャープ化、ノイズ除去、膨張、収縮などの画像品質フィルターを適用します。 ・向き補正機能を使用して、スキャンした文書の傾きや回転を自動的に補正します。 処理前に低解像度画像のDPI設定を調整してください。 ・コンピュータビジョンを用いて、複雑なレイアウト内のテキスト領域を検出・分離する IronOCRユーティリティを使用すると、フィルターの組み合わせを視覚的にテストし、最適なC#構成をエクスポートできます。 デプロイメント固有の問題については、 IronOCR はAzure Functions 、 Docker および Linux 、一般的な環境設定に関する専用のトラブルシューティング ガイドを用意しています。 次はどこへ行くべきでしょうか? IronOCRの実行時デバッグ方法が理解できたので、以下を試してみてください。 OCR結果の構造とメタデータ(ページ、ブロック、段落、単語、座標など)をナビゲートする 結果階層のあらゆるレベルにおける信頼度スコアリングの理解 高スループットパイプラインのために非同期処理とマルチスレッド処理を使用する 完全なプロパティ一覧については、 APIリファレンスを参照してください。 本番環境で使用する場合は、ライセンスを取得することを忘れないでください。 よくある質問 What are the common issues when debugging OCR in C#? Common issues include incorrect OCR results, low confidence scores, and unexpected exceptions. IronOCR provides tools like logging and confidence scoring to help identify and resolve these issues. How does IronOCR assist with error handling in C#? IronOCR offers typed exceptions and detailed error messages, which aid in understanding and handling errors effectively during OCR operation in C# applications. What logging features does IronOCR provide for debugging? IronOCR includes built-in logging capabilities that help track OCR processes and identify potential issues by logging detailed information about the OCR operations. How can confidence scoring improve OCR results? Confidence scoring in IronOCR helps determine the accuracy of the recognized text, allowing developers to focus on low-confidence areas and improve the OCR results. Can I track the progress of OCR tasks using IronOCR? Yes, IronOCR provides progress tracking features that enable developers to monitor the status and duration of OCR tasks, facilitating better resource management and performance optimization. What try-catch patterns are recommended for OCR error handling? IronOCR suggests using production-ready try-catch patterns to handle exceptions gracefully, ensuring that OCR applications remain robust and maintainable. How can IronOCR's built-in tools enhance OCR debugging? IronOCR's tools, such as logging, typed exceptions, and confidence scoring, provide comprehensive support for identifying and resolving issues, thus enhancing the debugging process. Why is error logging important in OCR applications? Error logging is crucial as it provides insight into what went wrong during OCR processing, allowing developers to quickly diagnose and fix issues in their applications. What role do typed exceptions play in debugging IronOCR? Typed exceptions in IronOCR provide specific error information, making it easier for developers to understand the nature of the problem and apply appropriate solutions during debugging. How can developers benefit from IronOCR's debugging features? Developers can leverage IronOCR's debugging features to efficiently troubleshoot issues, enhance application stability, and improve the overall quality of the OCR results. カーティス・チャウ 今すぐエンジニアリングチームとチャット テクニカルライター Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。開発以外にも、CurtisはIoT(Internet of Things)への強い関心を持ち、ハードウェアとソフトウェアの統合方法を模索しています。余暇には、ゲームをしたりDiscordボットを作成したりして、技術に対する愛情と創造性を組み合わせています。 準備はできましたか? Nuget ダウンロード 5,570,591 | バージョン: 2026.4 リリース 無料トライアル NuGet 無料ダウンロード 総ダウンロード数: 5,570,591 ライセンスを見る まだスクロールしていますか? すぐに証拠が欲しいですか? PM > Install-Package IronOcr サンプルを実行 あなたの画像が検索可能なテキストになるのをご覧ください。 NuGet 無料ダウンロード 総ダウンロード数: 5,570,591 ライセンスを見る