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.French の内容 このパッケージには、.NET 用の 43 の OCR 言語が含まれています。 フランス語 フレンチベスト フレンチファースト ダウンロード フランス語言語パック[フランス語] Zip形式でダウンロード NuGetでインストール インストール 最初に、フランス語のOCR パッケージを .NET プロジェクトにインストールする必要があります。 Install-Package IronOCR.Languages.French Code Example この C# コード例は、画像または PDF ドキュメントからフランス語のテキストを読み取ります。 // Import the IronOcr namespace using IronOcr; // Create a new instance of IronTesseract, which is the OCR engine var Ocr = new IronTesseract(); // Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French; // Load the input image or PDF document using (var Input = new OcrInput(@"images\French.png")) { // Perform OCR and retrieve the result var Result = Ocr.Read(Input); // Access the text from the OCR result var AllText = Result.Text; // Output or further process `AllText` as needed } // Import the IronOcr namespace using IronOcr; // Create a new instance of IronTesseract, which is the OCR engine var Ocr = new IronTesseract(); // Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French; // Load the input image or PDF document using (var Input = new OcrInput(@"images\French.png")) { // Perform OCR and retrieve the result var Result = Ocr.Read(Input); // Access the text from the OCR result var AllText = Result.Text; // Output or further process `AllText` as needed } ' Import the IronOcr namespace Imports IronOcr ' Create a new instance of IronTesseract, which is the OCR engine Private Ocr = New IronTesseract() ' Specify the language to French for OCR processing Ocr.Language = OcrLanguage.French ' Load the input image or PDF document Using Input = New OcrInput("images\French.png") ' Perform OCR and retrieve the result Dim Result = Ocr.Read(Input) ' Access the text from the OCR result Dim AllText = Result.Text ' Output or further process `AllText` as needed End Using $vbLabelText $csharpLabel