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# ソフトウェア コンポーネントです。 これはTesseractの高度なフォークであり、.NET開発者専用に構築され、速度と精度の両方で他のTesseractエンジンを定期的に上回ります。 IronOcr.Languages.Spanish の内容 このパッケージには、.NET 用のいくつかの OCR 言語オプションが含まれています。 スペイン語 スペイン語ベスト スペイン語高速 スペイン語(古い) スペイン語(旧ベスト) SpanishOldFast ダウンロード スペイン語言語パック[español] Zip形式でダウンロード NuGetでインストール インストール 最初に、スペイン語OCR パッケージを .NET プロジェクトにインストールする必要があります。 Install-Package IronOCR.Languages.Spanish Code Example この C# コード例は、画像または PDF ドキュメントからスペイン語のテキストを読み取ります。 // Import the IronOcr namespace using IronOcr; // Create a new instance of the IronTesseract class var Ocr = new IronTesseract(); // Set the OCR language to Spanish Ocr.Language = OcrLanguage.Spanish; // Use a using block to manage the OcrInput resource using (var Input = new OcrInput(@"images\Spanish.png")) { // Perform OCR on the input image var Result = Ocr.Read(Input); // Extract all text from the OCR result var AllText = Result.Text; // The 'AllText' variable now contains the Spanish text } // Import the IronOcr namespace using IronOcr; // Create a new instance of the IronTesseract class var Ocr = new IronTesseract(); // Set the OCR language to Spanish Ocr.Language = OcrLanguage.Spanish; // Use a using block to manage the OcrInput resource using (var Input = new OcrInput(@"images\Spanish.png")) { // Perform OCR on the input image var Result = Ocr.Read(Input); // Extract all text from the OCR result var AllText = Result.Text; // The 'AllText' variable now contains the Spanish text } ' Import the IronOcr namespace Imports IronOcr ' Create a new instance of the IronTesseract class Private Ocr = New IronTesseract() ' Set the OCR language to Spanish Ocr.Language = OcrLanguage.Spanish ' Use a using block to manage the OcrInput resource Using Input = New OcrInput("images\Spanish.png") ' Perform OCR on the input image Dim Result = Ocr.Read(Input) ' Extract all text from the OCR result Dim AllText = Result.Text ' The 'AllText' variable now contains the Spanish text End Using $vbLabelText $csharpLabel 上記のコードは、IronOCR ライブラリを使用して、 Spanish.pngという名前の画像ファイルからスペイン語のテキストを読み取って抽出する方法を示しています。 必要な名前空間を含め、必要に応じてブロックを使用してリソースを適切に処理するようにしてください。