IRONBARCODEの使用 IronBarcode vs オープンソースバーコードリーダー.NET Jordi Bardia 更新日:2026年1月5日 IronBarcode をダウンロード NuGet ダウンロード DLL ダウンロード 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる Grokで開く このページについてGrokに質問する 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る IronBarcode は、自動画像補正、広範な形式のサポート、プロフェッショナルな信頼性を備えた C# 用の高品質なバーコード読み取り機能を提供し、オープンソース ライブラリが本番環境の .NET アプリケーションに適さない原因となることが多いパフォーマンス、サポート、ライセンスの課題に対処します。 バーコード読み取り機能を必要とする .NET アプリケーションを開発する場合、開発者は多くの場合、オープンソース ソリューションの調査から始めます。 ZXing.NET、ZBar、OpenCV ベースのソリューションなどの無料ライブラリは最初は魅力的に見えるかもしれませんが、実稼働環境では、オープンソース ソリューションに欠けていることが多い信頼性、パフォーマンス、専門的なサポートが求められます。 このガイドでは、IronBarcode が C# で信頼性の高いバーコード スキャン パフォーマンスを提供する方法を説明し、高度な読み取りオプションとフォールト トレランス機能を通じて現実世界の課題に対処する強力な代替手段を提供します。 1Dバーコードによる在庫スキャン処理、Code 128を使用した出荷ラベルの読み取り、PDFドキュメントからのデータ抽出など、IronBarcodeはバーコード読み取りを簡素化し、数行のコードを改善しながら、プロフェッショナルアプリケーションに必要な精度と機能を提供します。このライブラリには、自動フォーマット検出、バッチ処理機能、そしてコミュニティ主導の代替製品とは一線を画すプロフェッショナルレベルの信頼性が備わっています。 IronBarcode のドキュメントには、 iOS 、 Android 、 Linuxなどのさまざまなプラットフォームにバーコード ソリューションを実装するための詳細なガイドが記載されています。 .NET でのバーコード読み取りに関する一般的な課題は何ですか? バーコード読み取り機能を実装すると、アプリケーションの信頼性に大きな影響を与えるいくつかの重要な課題が生じます。 オープンソースのバーコード リーダー .NET ライブラリは無料ですが、特に複数のバーコード形式や不完全な画像を扱う場合など、完璧な条件がほとんど存在しない実稼働環境で発生する実際のシナリオには対応しきれないことがよくあります。 バーコード読み取りにおいて画像品質が重要なのはなぜですか? まず、画像品質が不完全であることがよくある課題です。 モバイル デバイス、セキュリティ カメラ、またはハンドヘルド スキャナーでキャプチャされたバーコードの品質が、デジタルで生成された画像の品質に一致することはほとんどありません。 画像の向きの補正が必要な斜めの角度、適応型フィルタリングが必要な照明不足、部分的な損傷といった問題により、多くのリーダーが機能しなくなる可能性があります。オープンソースソリューションでは、これらの状況に対処するために、通常、大規模な前処理コードが必要になります。 最新のアプリケーションでは、精度とパフォーマンスのバランスをとる読み取り速度オプションと、関連領域に処理を集中させるための切り取り領域の指定が必要です。 バーコード リーダーの設定をカスタマイズして、このような困難なシナリオを効果的に処理できます。 現実世界のスキャン環境では、さまざまな画像の欠陥により複雑さが増します。 倉庫のスキャナーは汚れたり傷が付いたりしたバーコードに対処し、小売の POS システムはしわくちゃになったレシートに対処し、物流業務は天候で損傷した出荷ラベルに直面します。 それぞれのシナリオでは、基本的なオープンソース リーダーにはない高度な画像処理機能が求められます。 プロフェッショナルソリューションには、このような厳しい条件に合わせて特別に設計された画像補正フィルターが組み込まれています。 不完全なバーコード処理ガイドでは、 アイアンバーコード がフィルターを自動的に適用してスキャン精度を向上させる方法を説明します。 信頼性に基づく検証を必要とするアプリケーションの場合、機械学習機能によって検出の信頼性が向上します。 組織は非同期およびマルチスレッド機能を使用して、大量の不完全な画像を効率的に処理することもできます。 // Example: Handling poor quality barcodes with image correction using IronBarCode; BarcodeReaderOptions options = new BarcodeReaderOptions { // Apply multiple image filters to improve readability ImageFilters = new ImageFilterCollection { new AdaptiveThresholdFilter(), // Handles varying lighting new ContrastFilter(1.5f), // Improves contrast new DenoiseFilter(), // Removes noise new SharpenFilter() // Reduces blur }, AutoRotate = true, // Corrects orientation Speed = ReadingSpeed.Detailed // Thorough analysis }; BarcodeResults results = BarcodeReader.Read("poor-quality-scan.jpg", options); // Example: Handling poor quality barcodes with image correction using IronBarCode; BarcodeReaderOptions options = new BarcodeReaderOptions { // Apply multiple image filters to improve readability ImageFilters = new ImageFilterCollection { new AdaptiveThresholdFilter(), // Handles varying lighting new ContrastFilter(1.5f), // Improves contrast new DenoiseFilter(), // Removes noise new SharpenFilter() // Reduces blur }, AutoRotate = true, // Corrects orientation Speed = ReadingSpeed.Detailed // Thorough analysis }; BarcodeResults results = BarcodeReader.Read("poor-quality-scan.jpg", options); ' Example: Handling poor quality barcodes with image correction Imports IronBarCode Dim options As New BarcodeReaderOptions With { .ImageFilters = New ImageFilterCollection From { New AdaptiveThresholdFilter(), ' Handles varying lighting New ContrastFilter(1.5F), ' Improves contrast New DenoiseFilter(), ' Removes noise New SharpenFilter() ' Reduces blur }, .AutoRotate = True, ' Corrects orientation .Speed = ReadingSpeed.Detailed ' Thorough analysis } Dim results As BarcodeResults = BarcodeReader.Read("poor-quality-scan.jpg", options) $vbLabelText $csharpLabel IronBarcodeは、本番環境用に特別に設計された機能で各課題に対処します。 このバーコードスキャンライブラリは高度な画像処理技術に基づいており、基本的なリーダーを打ち負かす不完全なスキャンを処理しながら、迅速な実装に必要なシンプルさを維持します。 無料のバーコードリーダーライブラリとは異なり、IronBarcodeは広範なバーコードフォーマットサポートとエンタープライズグレードの信頼性を提供します。 第二に、ライセンスの制約が商業アプリケーションに予期しない問題を引き起こします。 多くのオープンソース ライブラリは、商用利用に特定の要件を課す Apache 2.0、MIT、LGPL などのライセンスを使用しています。 組織はこれらのライセンスを慎重に確認してコンプライアンスを確保する必要があり、一部のライセンスは独自ソフトウェア配布モデルと互換性がないかもしれません。 ライセンス キーの実装と適切な適用を理解することは、企業での展開にとって重要になります。 ライセンス ガイドには、あらゆる規模の組織に明確なオプションが用意されており、ニーズの拡大に応じてアップグレード パスと拡張機能を利用できます。 法務部門は、特にライセンス条件が異なる複数のライブラリを組み合わせる場合、オープンソース ライセンスの義務の解釈に苦労することがよくあります。 動的リンクに関する LGPL 要件、Apache 2.0 特許条項、および MIT 帰属要件により、コンプライアンス上の悪夢が生じる可能性があります。 商用ソリューションは、ビジネスでの使用向けに設計された明確なライセンス条件を提供することで、これらの懸念を解消します。 エンタープライズ組織では、ライセンス キーをプログラムで適用し、構成ファイルを通じて展開を管理する機能が特に重視されています。 ライセンスの概要では、あらゆる規模の組織に透明な価格設定と展開オプションが提供されます。 Web アプリケーションの場合、開発者はスムーズな統合のためにweb.config 設定を介してライセンスを構成できます。 クロスプラットフォームの互換性により、さまざまな展開環境間でライセンスが一貫して機能します。 ドキュメントの問題は開発速度にどのような影響を与えますか? 3 番目に、ドキュメントが限られていたり古かったりすると、開発速度が低下します。 オープンソース プロジェクトはコミュニティの貢献に依存しているため、ドキュメントが不完全で、例が古く、トラブルシューティングのガイダンスが最小限に抑えられています。 開発者がバーコード認識の問題に遭遇したり、 2D バーコード作成などの高度な機能を実装する必要がある場合、解決策を見つけるにはコミュニティ フォーラムを利用するか、ソース コードを直接調べる必要があります。 プロフェッショナル ライブラリでは、迅速な実装のために完全なAPI ドキュメント、チュートリアル、コード例を提供しています。 バーコード イメージ ジェネレーターのチュートリアルでは、さまざまな形式でバーコードを作成するための手順を段階的に説明します。 ドキュメントの品質は、開発速度と長期的な保守コストに直接影響します。 オープンソース プロジェクトでは、コードが付随するドキュメントよりも速く進化する"ドキュメント ドリフト"に悩まされることがよくあります。 これにより、ドキュメント化された機能が説明どおりに動作しなくなったことを開発者が発見するのに何時間も費やす状況が発生します。 プロフェッショナル ソリューションは、リリースごとに同期されたドキュメントを維持し、バージョン間の移行ガイドを提供し、一般的なシナリオに関する検索可能なナレッジ ベースを提供します。 アイアンバーコード のデモでは、ライブ例を使用してリアルタイムのバーコード認識機能を実演します。 広範なハウツー ガイドでは、バーコードを PDF として作成することからストリームとしてエクスポートすることまで、特定の実装シナリオをカバーしています。 PDF にバーコードをスタンプしたり、 複数ページの TIFF/GIF ファイルを処理したりするような特殊なニーズについては、詳細なドキュメントによって実装が迅速化されます。 // Example: Creating and customizing barcodes with full documentation support using IronBarCode; // Create a barcode with extensive customization options GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("SKU-123456", BarcodeEncoding.Code128); // Apply styling with documented methods myBarcode.ChangeBarCodeColor(System.Drawing.Color.DarkBlue); myBarcode.SetMargins(10); myBarcode.ResizeTo(300, 150); myBarcode.AddBarcodeValueTextBelowBarcode(); myBarcode.AddAnnotationTextAboveBarcode("Product Label"); // Export in various formats myBarcode.SaveAsPng("barcode.png"); myBarcode.SaveAsPdf("barcode.pdf"); byte[] barcodeBytes = myBarcode.ToPngBinaryData(); // Example: Creating and customizing barcodes with full documentation support using IronBarCode; // Create a barcode with extensive customization options GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("SKU-123456", BarcodeEncoding.Code128); // Apply styling with documented methods myBarcode.ChangeBarCodeColor(System.Drawing.Color.DarkBlue); myBarcode.SetMargins(10); myBarcode.ResizeTo(300, 150); myBarcode.AddBarcodeValueTextBelowBarcode(); myBarcode.AddAnnotationTextAboveBarcode("Product Label"); // Export in various formats myBarcode.SaveAsPng("barcode.png"); myBarcode.SaveAsPdf("barcode.pdf"); byte[] barcodeBytes = myBarcode.ToPngBinaryData(); ' Example: Creating and customizing barcodes with full documentation support Imports IronBarCode ' Create a barcode with extensive customization options Dim myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("SKU-123456", BarcodeEncoding.Code128) ' Apply styling with documented methods myBarcode.ChangeBarCodeColor(System.Drawing.Color.DarkBlue) myBarcode.SetMargins(10) myBarcode.ResizeTo(300, 150) myBarcode.AddBarcodeValueTextBelowBarcode() myBarcode.AddAnnotationTextAboveBarcode("Product Label") ' Export in various formats myBarcode.SaveAsPng("barcode.png") myBarcode.SaveAsPdf("barcode.pdf") Dim barcodeBytes As Byte() = myBarcode.ToPngBinaryData() $vbLabelText $csharpLabel 生産システムにとって専門的なサポートが重要なのはなぜですか? 最後に、本番問題が発生した場合に専門的サポートの欠如が重大になります。専任のサポートチームが存在しないため、開発者は問題解決においてコミュニティの好意や内部の専門知識に頼る必要があります。 この不確実性は、ダウンタイムが収益に直接影響を与えるミッションクリティカルなアプリケーションにとって、無料のバーコードリーダー.NETソリューションをリスクの高いものにします。 プロフェッショナル ソリューションは、継続的な運用を確保するためにエンジニアリング サポートと定期的な製品アップデートを提供します。 変更ログには、各リリースで追加されたすべての改善点、バグ修正、新機能の詳細が記載されています。 サポート品質は、重要な展開フェーズ中やエッジケースに遭遇したときに特に重要になります。 オープンソースのメンテナーは知識が豊富な場合が多いですが、緊急の問題に対応する義務はありません。 コミュニティ フォーラムでは、解決策が提供されるまでに数日または数週間かかる場合があります。 プロフェッショナルなサポート チームは、保証された応答時間、エンジニアリングの専門知識への直接アクセス、実装パターンの改善のためのプロアクティブなガイダンスを提供します。 アイアンバーコード のサポート チームは 、MSI バーコード認識の問題、セキュリティ CVE 対応、 GS1-128 コンプライアンス、誤検知の軽減などの特定のシナリオを支援します。 デプロイメント固有の問題については、 AWS Lambda のメモリの問題、 DLL 解決の欠落、ランタイムコピーの例外に関するガイダンスが提供されます。 NuGet パッケージのトラブルシューティング ガイドは、一般的なインストールの問題を迅速に解決するのに役立ちます。 アイアンバーコード はバーコード読み取りの課題をどのように解決するのでしょうか? IronBarcodeは、本番環境用に特別に設計された機能で各課題に対処します。 高度な画像処理技術に基づいて構築されたこのバーコード スキャン ライブラリは、基本的なリーダーでは読み取れない不完全なスキャンを処理しながら、迅速な実装を可能にするシンプルさを維持します。 このライブラリには、.NET MAUI 、 Blazor 、 Docker コンテナーなどのさまざまな .NET フレームワークとオペレーティング システムをサポートするクロスプラットフォームの互換性に加えて、悪条件下でもデータの整合性を維持するフォールト トレランス機能が含まれています。 アーキテクチャでは、使いやすさと高度な機能の両方が優先されます。 開発者は、シンプルな 1 行の実装から始めて、要件の進化に合わせて高度な機能を徐々に追加することができます。 このアプローチは、基本的な機能でも複雑なセットアップを必要とすることが多いオープンソースの代替手段とは対照的です。 ライブラリのインテリジェントなデフォルト設定により、一般的なシナリオが自動的に処理されると同時に、特殊なアプリケーションに対するきめ細かな制御が可能になります。 アイアンバーコード の生成機能は、完全なバーコード ソリューションの読み取り機能を補完します。 スタイリング機能により、生成されたバーコードをブランド要件に合わせてカスタマイズできます。 高度な出力データ形式は、さまざまなビジネス システムやワークフローとの統合をサポートします。 // Example: Complete barcode solution with generation and reading using IronBarCode; using System.IO; // Generate a barcode with custom styling GeneratedBarcode productBarcode = BarcodeWriter.CreateBarcode("PROD-2024-001", BarcodeEncoding.Code128); productBarcode.ChangeBarCodeColor(System.Drawing.Color.Navy); productBarcode.SetMargins(15); productBarcode.AddLogoImageFromFile("company-logo.png", 60); // Save in multiple formats productBarcode.SaveAsPng("product-barcode.png"); Stream barcodeStream = productBarcode.ToStream(); // Read the generated barcode back BarcodeResults readResults = BarcodeReader.Read("product-barcode.png"); foreach (var result in readResults) { Console.WriteLine($"Read: {result.Text}, Type: {result.BarcodeType}"); } // Example: Complete barcode solution with generation and reading using IronBarCode; using System.IO; // Generate a barcode with custom styling GeneratedBarcode productBarcode = BarcodeWriter.CreateBarcode("PROD-2024-001", BarcodeEncoding.Code128); productBarcode.ChangeBarCodeColor(System.Drawing.Color.Navy); productBarcode.SetMargins(15); productBarcode.AddLogoImageFromFile("company-logo.png", 60); // Save in multiple formats productBarcode.SaveAsPng("product-barcode.png"); Stream barcodeStream = productBarcode.ToStream(); // Read the generated barcode back BarcodeResults readResults = BarcodeReader.Read("product-barcode.png"); foreach (var result in readResults) { Console.WriteLine($"Read: {result.Text}, Type: {result.BarcodeType}"); } ' Example: Complete barcode solution with generation and reading Imports IronBarCode Imports System.IO ' Generate a barcode with custom styling Dim productBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("PROD-2024-001", BarcodeEncoding.Code128) productBarcode.ChangeBarCodeColor(System.Drawing.Color.Navy) productBarcode.SetMargins(15) productBarcode.AddLogoImageFromFile("company-logo.png", 60) ' Save in multiple formats productBarcode.SaveAsPng("product-barcode.png") Dim barcodeStream As Stream = productBarcode.ToStream() ' Read the generated barcode back Dim readResults As BarcodeResults = BarcodeReader.Read("product-barcode.png") For Each result In readResults Console.WriteLine($"Read: {result.Text}, Type: {result.BarcodeType}") Next $vbLabelText $csharpLabel アイアンバーコード とオープンソースの代替製品とを区別する機能は何ですか? フィーチャー オープンソースライブラリ アイアンバーコード ライセンス Apache 2.0、MIT、LGPLの制限事項 無制限に展開できる商用ライセンス サポート コミュニティフォーラムのみ 24時間365日対応のプロフェッショナルサポートチーム ドキュメンテーション 品質にばらつきがあり、古い場合が多い 最新の例を含む完全なドキュメント 画像補正 手作業による前処理が必要 自動改善 対応フォーマット 限られた選択肢 すべての最新フォーマット PDF処理 追加ライブラリが必要 ネイティブPDF抽出 クロスプラットフォーム プラットフォーム固有のビルド .NET 5/6/7/8/9、フレームワーク、コア コンテナサポート 限定的なDocker互換性 完全なDockerとクラウドのサポート メンテナンス 不定期更新 定期的なアップデートとパッチ パフォーマンス 基本的なシングルスレッド マルチスレッド処理 商用ライセンスモデルは、企業が求める法的明確性を提供します。組織は、複雑なオープンソースライセンス要件を気にすることなく、開発、テスト、本番環境への展開に関する明確な権利を取得できます。 プロフェッショナルなサポートにより、トラブルシューティングは時間のかかる調査から迅速な解決へと変わります。 このライブラリは、 AWS Lambda 、 Azure Functions 、Docker コンテナ、従来のサーバー環境にわたるデプロイメントをサポートしています。 プラットフォーム固有の最適化は、 macOS 、 Linux 、および Windows 展開用の高度な NuGet パッケージを通じて利用できます。 商業的なライセンスモデルは、企業が求める法的な明確性を提供します。組織は開発、テスト、本番展開のための明示的な権利を受け取り、複雑なオープンソースライセンス要件を回避します。 この簡潔なアプローチが法的な不確実性を排除し、開発者がコンプライアンスではなく機能構築に集中できるようにします。 IronBarcodeのライセンスオプションの詳細については、特定のニーズに合わせてご覧ください。 IronBarcode を使い始めるには、セットアップが簡単です。NuGet パッケージ マネージャー経由でインストールすれば、既存の .NET プロジェクトに簡単に統合できます。 このライブラリは、.NET MAUI 統合を通じてiOS 、 Android 、 Linux 、 macOS 、および Windows プラットフォームをサポートします。 無料トライアルを開始して、数分でプロフェッショナルなバーコード読み取りを体験してください。 プラットフォーム固有の要件については、最適化された展開のための高度な NuGet パッケージを調べてください。 開始方法の概要では、さまざまな開発シナリオに関する完全なガイダンスが提供されます。 モバイル開発者は、 iOS 開発とAndroid 統合のためのプラットフォーム固有のガイドを使用できます。 Install-Package BarCode バーコードを読み取るにはどのようなコードが必要ですか? IronBarcode がインストールされていれば、バーコードの読み取りに必要なコードは 1 行だけです。 using IronBarCode; using System; // Read a barcode with a single line BarcodeResults results = BarcodeReader.Read("barcode-image.png"); // Process the results foreach (BarcodeResult result in results) { Console.WriteLine($"Barcode Type: {result.BarcodeType}"); Console.WriteLine($"Barcode Value: {result.Text}"); } using IronBarCode; using System; // Read a barcode with a single line BarcodeResults results = BarcodeReader.Read("barcode-image.png"); // Process the results foreach (BarcodeResult result in results) { Console.WriteLine($"Barcode Type: {result.BarcodeType}"); Console.WriteLine($"Barcode Value: {result.Text}"); } Imports IronBarCode Imports System ' Read a barcode with a single line Dim results As BarcodeResults = BarcodeReader.Read("barcode-image.png") ' Process the results For Each result As BarcodeResult In results Console.WriteLine($"Barcode Type: {result.BarcodeType}") Console.WriteLine($"Barcode Value: {result.Text}") Next $vbLabelText $csharpLabel BarcodeReader.Read()メソッドは、指定を必要とせずにバーコード形式を自動的に識別します。 Code 128、Code 39、QR コードなど、さまざまな標準形式を処理します。 画像には複数のバーコードが含まれている可能性があるため、このメソッドはコレクションを返します。 特殊なアプリケーションの場合、ライブラリは、ストリーム、 System.Drawing オブジェクト、および複数ページの TIFF/GIF ファイルからの読み取りをサポートします。 サポートされているバーコード形式のページには、使用可能なすべての形式が例とともに詳細に記載されています。 開発者は、Web ベースのアプリケーションでURL からバーコードを非同期的に読み取ることもできます。 出力データ形式ガイドでは、スキャンしたバーコードからさまざまなメタデータを抽出する方法について説明します。 シンプルさはさまざまな入力ソースにまで及びます。 ファイル パス、URL、バイト配列、メモリ ストリームのいずれから読み取る場合でも、API は一貫しています。 この設計哲学により、学習曲線が短縮され、潜在的なエラーが最小限に抑えられます。 ライブラリはフォーマット検出を自動的に処理するため、オープンソースの代替手段で一般的な要件である、事前にバーコードの種類を指定する必要がなくなります。 開発者は、追加の実装パターンについてバーコード クイックスタートガイドを参照できます。 バーコードの読み取りチュートリアルでは、あらゆる読み取りシナリオを網羅しています。 カスタムバーコードスタイルを必要とするアプリケーションの場合、ライブラリは広範なカスタマイズ オプションを提供します。 初めてのバーコードを素早く読み取るにはどうすればいいですか? IronBarcode で最初のバーコードを読み取るのにかかる時間はわずか数秒です。 インストール後、開発者は画像、PDF、ストリームなどのさまざまなソースからバーコードをすぐにスキャンできます。 今すぐ NuGet で PDF を作成してみましょう: NuGet パッケージ マネージャーを使用して IronBarcode をインストールします PM > Install-Package BarCode このコード スニペットをコピーして実行します。 using IronBarCode; // Read a barcode from an image file BarcodeResults results = BarcodeReader.Read("path/to/barcode.png"); // Display the barcode value foreach (BarcodeResult barcode in results) { Console.WriteLine($"Found: {barcode.Text}"); } 実際の環境でテストするためにデプロイする 今すぐ無料トライアルでプロジェクトに IronBarcode を使い始めましょう 30日間無料トライアル 破損したバーコードや複雑なバーコードはどのように処理すればよいですか? 現実のバーコードスキャンは、基本的なリーダーに挑戦を与える不完全な条件を含みます。 IronBarcodeの高度なバーコード読み取りオプションは、これらのシナリオを効果的に処理し、画像処理と高度な検出アルゴリズムを通じて、無料バーコードリーダー.NETライブラリが通常欠いている能力を備えています。 using IronBarCode; // Configure advanced reading options BarcodeReaderOptions advancedOptions = new BarcodeReaderOptions { // Speed settings: Faster, Balanced, Detailed, ExtremeDetail // ExtremeDetail performs deep analysis for challenging images Speed = ReadingSpeed.ExtremeDetail, // Specify expected formats to improve performance // Use bitwise OR (|) to combine multiple formats ExpectBarcodeTypes = BarcodeEncoding.QRCode | BarcodeEncoding.Code128, // Maximum number of barcodes to find (0 = unlimited) MaxParallelThreads = 4, // Crop region for faster processing of specific areas CropArea = null, // Or specify a Rectangle // Apply image processing filters to improve readability ImageFilters = new ImageFilterCollection { new ContrastFilter(2.0f), // Increases contrast new SharpenFilter() // Reduces blur }, }; // Apply options when reading BarcodeResults results = BarcodeReader.Read("damaged-barcode.jpg", advancedOptions); // Process the results with confidence scores foreach (BarcodeResult result in results) { Console.WriteLine($"Barcode Type: {result.BarcodeType}"); Console.WriteLine($"Barcode Value: {result.Text}"); Console.WriteLine($"Confidence: {result.Confidence}%"); Console.WriteLine($"Position: {result.BoundingBox}"); } using IronBarCode; // Configure advanced reading options BarcodeReaderOptions advancedOptions = new BarcodeReaderOptions { // Speed settings: Faster, Balanced, Detailed, ExtremeDetail // ExtremeDetail performs deep analysis for challenging images Speed = ReadingSpeed.ExtremeDetail, // Specify expected formats to improve performance // Use bitwise OR (|) to combine multiple formats ExpectBarcodeTypes = BarcodeEncoding.QRCode | BarcodeEncoding.Code128, // Maximum number of barcodes to find (0 = unlimited) MaxParallelThreads = 4, // Crop region for faster processing of specific areas CropArea = null, // Or specify a Rectangle // Apply image processing filters to improve readability ImageFilters = new ImageFilterCollection { new ContrastFilter(2.0f), // Increases contrast new SharpenFilter() // Reduces blur }, }; // Apply options when reading BarcodeResults results = BarcodeReader.Read("damaged-barcode.jpg", advancedOptions); // Process the results with confidence scores foreach (BarcodeResult result in results) { Console.WriteLine($"Barcode Type: {result.BarcodeType}"); Console.WriteLine($"Barcode Value: {result.Text}"); Console.WriteLine($"Confidence: {result.Confidence}%"); Console.WriteLine($"Position: {result.BoundingBox}"); } Imports IronBarCode ' Configure advanced reading options Dim advancedOptions As New BarcodeReaderOptions With { ' Speed settings: Faster, Balanced, Detailed, ExtremeDetail ' ExtremeDetail performs deep analysis for challenging images .Speed = ReadingSpeed.ExtremeDetail, ' Specify expected formats to improve performance ' Use bitwise OR (|) to combine multiple formats .ExpectBarcodeTypes = BarcodeEncoding.QRCode Or BarcodeEncoding.Code128, ' Maximum number of barcodes to find (0 = unlimited) .MaxParallelThreads = 4, ' Crop region for faster processing of specific areas .CropArea = Nothing, ' Or specify a Rectangle ' Apply image processing filters to improve readability .ImageFilters = New ImageFilterCollection From { New ContrastFilter(2.0F), ' Increases contrast New SharpenFilter() ' Reduces blur } } ' Apply options when reading Dim results As BarcodeResults = BarcodeReader.Read("damaged-barcode.jpg", advancedOptions) ' Process the results with confidence scores For Each result As BarcodeResult In results Console.WriteLine($"Barcode Type: {result.BarcodeType}") Console.WriteLine($"Barcode Value: {result.Text}") Console.WriteLine($"Confidence: {result.Confidence}%") Console.WriteLine($"Position: {result.BoundingBox}") Next $vbLabelText $csharpLabel 高度なオプションを使用すると、特定の困難なシナリオを処理できます。 ExpectMultipleBarcodesプロパティは、ドキュメントに複数のバーコードが含まれている場合にスキャンを最適化します。 AutoRotate機能は、手動による介入なしに、さまざまな角度で撮影された画像を処理します。 パフォーマンスが重視されるアプリケーションでは、 CropAreaプロパティを使用してバーコードが読み込まれる領域に処理を集中させることで、処理時間を大幅に短縮できます。バーコードリーダーの設定例は、様々なシナリオにおける様々な設定の組み合わせを示しています。 PDF ソースから読み取る場合は、 PDF 固有のリーダー オプションを使用すると、結果が向上します。 トリミング領域ガイドでは、正確なスキャン領域を識別して指定する方法を示します。 複数のバーコードを処理するアプリケーションの場合、バッチ操作の設定が改善されました。 不完全なバーコードの例では、現実世界のシナリオとソリューションが提供されます。 // Example: Handling specific barcode damage scenarios using IronBarCode; // Configure for severely damaged barcodes BarcodeReaderOptions damageOptions = new BarcodeReaderOptions { Speed = ReadingSpeed.ExtremeDetail, ImageFilters = new ImageFilterCollection { new AdaptiveThresholdFilter(), // Handles uneven lighting new BinaryThresholdFilter(128), // Creates high contrast new InvertFilter(), // Handles negative images new DenoiseFilter() // Removes speckles }, ExpectBarcodeTypes = BarcodeEncoding.All, AutoRotate = true, ExpectMultipleBarcodes = false }; // Read with confidence validation BarcodeResults results = BarcodeReader.Read("damaged-barcode.jpg", damageOptions); foreach (var result in results.Where(r => r.Confidence > 70)) { Console.WriteLine($"High confidence result: {result.Text} ({result.Confidence}%)"); } // Example: Handling specific barcode damage scenarios using IronBarCode; // Configure for severely damaged barcodes BarcodeReaderOptions damageOptions = new BarcodeReaderOptions { Speed = ReadingSpeed.ExtremeDetail, ImageFilters = new ImageFilterCollection { new AdaptiveThresholdFilter(), // Handles uneven lighting new BinaryThresholdFilter(128), // Creates high contrast new InvertFilter(), // Handles negative images new DenoiseFilter() // Removes speckles }, ExpectBarcodeTypes = BarcodeEncoding.All, AutoRotate = true, ExpectMultipleBarcodes = false }; // Read with confidence validation BarcodeResults results = BarcodeReader.Read("damaged-barcode.jpg", damageOptions); foreach (var result in results.Where(r => r.Confidence > 70)) { Console.WriteLine($"High confidence result: {result.Text} ({result.Confidence}%)"); } ' Example: Handling specific barcode damage scenarios Imports IronBarCode ' Configure for severely damaged barcodes Dim damageOptions As New BarcodeReaderOptions With { .Speed = ReadingSpeed.ExtremeDetail, .ImageFilters = New ImageFilterCollection From { New AdaptiveThresholdFilter(), ' Handles uneven lighting New BinaryThresholdFilter(128), ' Creates high contrast New InvertFilter(), ' Handles negative images New DenoiseFilter() ' Removes speckles }, .ExpectBarcodeTypes = BarcodeEncoding.All, .AutoRotate = True, .ExpectMultipleBarcodes = False } ' Read with confidence validation Dim results As BarcodeResults = BarcodeReader.Read("damaged-barcode.jpg", damageOptions) For Each result In results.Where(Function(r) r.Confidence > 70) Console.WriteLine($"High confidence result: {result.Text} ({result.Confidence}%)") Next $vbLabelText $csharpLabel 速度設定はパフォーマンスにどのように影響しますか? 速度設定は分析の深さを制御します。 ReadingSpeed.Faster鮮明な画像に機能し、 ReadingSpeed.ExtremeDetail難しいバーコードに対して広範な分析を実行します。 画像フィルターは、モーションブラーや低コントラストといった一般的な問題を自動的に修正します。特殊なニーズには、開発者がカスタムバーコードスタイルやQRコードのカスタマイズオプションを適用できます。 エラー訂正設定により、破損した場合でも確実にスキャンできる、より耐久性の高いバーコードを生成することができます。 開発者は、スキャンを向上させるために適切な静かな領域を確保するためにバーコードの余白を設定することもできます。 速度設定は、処理時間と精度の間の洗練されたバランスを反映します。 ReadingSpeed.Faster通常、画像を数ミリ秒単位で処理するため、画質の優れたリアルタイム アプリケーションに適しています。 ReadingSpeed.Balanced 、一般的なビジネス ドキュメントに対して適度な画像分析を追加します。 ReadingSpeed.Detailedには困難な状況に対応する高度なアルゴリズムが組み込まれており、 ReadingSpeed.ExtremeDetailひどく損傷したバーコードや見えにくいバーコードに対して最大限の処理能力を発揮します。 読み取り速度の例では、各設定のベンチマークとコード サンプルが提供されます。 大容量アプリケーションの場合、複数の画像を同時に処理するために、非同期およびマルチスレッドを検討してください。 読み取り速度オプションガイドでは、特定の使用例に基づいてより適切な設定を選択する方法について説明します。 アプリケーションは、クラウド環境でのメモリ使用を効率化するために、結果をストリームとしてエクスポートすることもできます。 複数のバーコードを効率的に処理するにはどうすればよいですか? ドキュメント処理シナリオはPDF、複数ページのレポート、またはバッチ画像コレクションからのバーコード抽出を含むことが多いです。 アイアンバーコード は、特殊なメソッドとPDF 固有のリーダー オプションを使用してこれらを効率的に処理します。 このライブラリは、変換せずにPDF ファイルからネイティブにバーコードを読み取ることをサポートしています。 Web アプリケーションの場合、開発者はブラウザで直接レンダリングできるようにバーコードを HTML として作成できます。 バーコード生成機能は、 1D バーコードや2D 形式を含むさまざまな形式でのバーコードの作成をサポートします。 PDF ドキュメントからバーコードを抽出するにはどうすればよいですか? using IronBarCode; // Extract barcodes from PDF documents BarcodeResults pdfResults = BarcodeReader.ReadPdf("shipping-manifest.pdf"); foreach (BarcodeResult barcode in pdfResults) { Console.WriteLine($"Page {barcode.PageNumber}: {barcode.Text}"); } // Read specific pages for efficiency var specificPages = new int[] { 1, 3, 5 }; BarcodeResults selectedResults = BarcodeReader.ReadPdf("document.pdf", specificPages); // Apply PDF-specific options PdfBarcodeReaderOptions pdfOptions = new PdfBarcodeReaderOptions { PageNumbers = new int[] { 1, 2, 3 }, Scale = 3.5, // Higher scale for better quality DPI = 300, // Resolution for rasterization Password = "secure123" // For encrypted PDFs }; BarcodeResults secureResults = BarcodeReader.ReadPdf("encrypted.pdf", pdfOptions); using IronBarCode; // Extract barcodes from PDF documents BarcodeResults pdfResults = BarcodeReader.ReadPdf("shipping-manifest.pdf"); foreach (BarcodeResult barcode in pdfResults) { Console.WriteLine($"Page {barcode.PageNumber}: {barcode.Text}"); } // Read specific pages for efficiency var specificPages = new int[] { 1, 3, 5 }; BarcodeResults selectedResults = BarcodeReader.ReadPdf("document.pdf", specificPages); // Apply PDF-specific options PdfBarcodeReaderOptions pdfOptions = new PdfBarcodeReaderOptions { PageNumbers = new int[] { 1, 2, 3 }, Scale = 3.5, // Higher scale for better quality DPI = 300, // Resolution for rasterization Password = "secure123" // For encrypted PDFs }; BarcodeResults secureResults = BarcodeReader.ReadPdf("encrypted.pdf", pdfOptions); Imports IronBarCode ' Extract barcodes from PDF documents Dim pdfResults As BarcodeResults = BarcodeReader.ReadPdf("shipping-manifest.pdf") For Each barcode As BarcodeResult In pdfResults Console.WriteLine($"Page {barcode.PageNumber}: {barcode.Text}") Next ' Read specific pages for efficiency Dim specificPages As Integer() = New Integer() {1, 3, 5} Dim selectedResults As BarcodeResults = BarcodeReader.ReadPdf("document.pdf", specificPages) ' Apply PDF-specific options Dim pdfOptions As New PdfBarcodeReaderOptions With { .PageNumbers = New Integer() {1, 2, 3}, .Scale = 3.5, ' Higher scale for better quality .DPI = 300, ' Resolution for rasterization .Password = "secure123" ' For encrypted PDFs } Dim secureResults As BarcodeResults = BarcodeReader.ReadPdf("encrypted.pdf", pdfOptions) $vbLabelText $csharpLabel PDF 処理機能は単純な抽出を超えています。 ライブラリは暗号化された PDF を処理し、効率性を高めるために特定のページ範囲を処理し、バーコードの特性に基づいてラスタライズ品質を調整します。 これにより、オープンソース ソリューションで一般的な外部 PDF ライブラリや複雑な前処理パイプラインが不要になります。 バーコード読み取りの例では、バッチ操作を含むさまざまな PDF 処理シナリオを示します。 開発者は、ドキュメント ワークフローの自動化のために、既存の PDF にバーコードをスタンプすることもできます。 ライブラリは、完全なドキュメント生成のためにバーコードが埋め込まれた PDF の作成をサポートしています。 特殊な形式については、テキスト、URL、ID、バイナリ データなどのさまざまなデータ ソースからバーコードを作成することを検討してください。 PDF バーコード リーダー設定ガイドでは、高度な構成オプションが提供されます。 // Example: Advanced PDF barcode extraction with filtering using IronBarCode; using System.Linq; PdfBarcodeReaderOptions advancedPdfOptions = new PdfBarcodeReaderOptions { PageNumbers = Enumerable.Range(1, 50).ToArray(), // First 50 pages Scale = 2.0, DPI = 200, MaxParallelThreads = 8, ExpectBarcodeTypes = BarcodeEncoding.Code128 | BarcodeEncoding.QRCode, ImageFilters = new ImageFilterCollection { new ContrastFilter(1.2f), new SharpenFilter() } }; // Process large PDF with progress tracking var pdfPath = "large-document.pdf"; BarcodeResults results = BarcodeReader.ReadPdf(pdfPath, advancedPdfOptions); // Group results by page var pageGroups = results.GroupBy(r => r.PageNumber); foreach (var group in pageGroups) { Console.WriteLine($"Page {group.Key}: Found {group.Count()} barcodes"); foreach (var barcode in group) { Console.WriteLine($" - {barcode.BarcodeType}: {barcode.Text}"); } } // Example: Advanced PDF barcode extraction with filtering using IronBarCode; using System.Linq; PdfBarcodeReaderOptions advancedPdfOptions = new PdfBarcodeReaderOptions { PageNumbers = Enumerable.Range(1, 50).ToArray(), // First 50 pages Scale = 2.0, DPI = 200, MaxParallelThreads = 8, ExpectBarcodeTypes = BarcodeEncoding.Code128 | BarcodeEncoding.QRCode, ImageFilters = new ImageFilterCollection { new ContrastFilter(1.2f), new SharpenFilter() } }; // Process large PDF with progress tracking var pdfPath = "large-document.pdf"; BarcodeResults results = BarcodeReader.ReadPdf(pdfPath, advancedPdfOptions); // Group results by page var pageGroups = results.GroupBy(r => r.PageNumber); foreach (var group in pageGroups) { Console.WriteLine($"Page {group.Key}: Found {group.Count()} barcodes"); foreach (var barcode in group) { Console.WriteLine($" - {barcode.BarcodeType}: {barcode.Text}"); } } ' Example: Advanced PDF barcode extraction with filtering Imports IronBarCode Imports System.Linq Dim advancedPdfOptions As New PdfBarcodeReaderOptions With { .PageNumbers = Enumerable.Range(1, 50).ToArray(), ' First 50 pages .Scale = 2.0, .DPI = 200, .MaxParallelThreads = 8, .ExpectBarcodeTypes = BarcodeEncoding.Code128 Or BarcodeEncoding.QRCode, .ImageFilters = New ImageFilterCollection From { New ContrastFilter(1.2F), New SharpenFilter() } } ' Process large PDF with progress tracking Dim pdfPath = "large-document.pdf" Dim results As BarcodeResults = BarcodeReader.ReadPdf(pdfPath, advancedPdfOptions) ' Group results by page Dim pageGroups = results.GroupBy(Function(r) r.PageNumber) For Each group In pageGroups Console.WriteLine($"Page {group.Key}: Found {group.Count()} barcodes") For Each barcode In group Console.WriteLine($" - {barcode.BarcodeType}: {barcode.Text}") Next Next $vbLabelText $csharpLabel バッチ処理のベストプラクティスは何ですか? バッチ処理では、マルチスレッドのサポートによりスループットが大幅に向上します。 ライブラリは、URL からバーコードを非同期的に読み取り、複数のドキュメントを同時に処理できます。 最新のアプリケーションでは、さまざまな形式でバーコード イメージを作成し、効率的に保存することでメリットが得られます。 MSI インストーラー作成ガイドは、展開用にバッチ処理アプリケーションをパッケージ化するのに役立ちます。 using IronBarCode; using System.Threading.Tasks; using System.Linq; // Process multiple documents simultaneously string[] documents = new string[] { "invoice1.pdf", "shipping-label.png", "inventory-report.pdf", "product-catalog.tiff" }; BarcodeReaderOptions batchOptions = new BarcodeReaderOptions { Multithreaded = true, MaxParallelThreads = 4, Speed = ReadingSpeed.Balanced }; // Process all documents in parallel BarcodeResults allResults = BarcodeReader.Read(documents, batchOptions); // Or use async for non-blocking operations async Task<BarcodeResults> ProcessBatchAsync() { var tasks = documents.Select(doc => Task.Run(() => BarcodeReader.Read(doc, batchOptions)) ).ToArray(); var results = await Task.WhenAll(tasks); // Combine all results var combined = new BarcodeResults(); foreach (var result in results) { combined.AddRange(result); } return combined; } // Process with progress reporting async Task ProcessWithProgress(IProgress<int> progress) { int processed = 0; var tasks = documents.Select(async (doc, index) => { var result = await Task.Run(() => BarcodeReader.Read(doc, batchOptions)); Interlocked.Increment(ref processed); progress.Report((processed * 100) / documents.Length); return result; }).ToArray(); await Task.WhenAll(tasks); } using IronBarCode; using System.Threading.Tasks; using System.Linq; // Process multiple documents simultaneously string[] documents = new string[] { "invoice1.pdf", "shipping-label.png", "inventory-report.pdf", "product-catalog.tiff" }; BarcodeReaderOptions batchOptions = new BarcodeReaderOptions { Multithreaded = true, MaxParallelThreads = 4, Speed = ReadingSpeed.Balanced }; // Process all documents in parallel BarcodeResults allResults = BarcodeReader.Read(documents, batchOptions); // Or use async for non-blocking operations async Task<BarcodeResults> ProcessBatchAsync() { var tasks = documents.Select(doc => Task.Run(() => BarcodeReader.Read(doc, batchOptions)) ).ToArray(); var results = await Task.WhenAll(tasks); // Combine all results var combined = new BarcodeResults(); foreach (var result in results) { combined.AddRange(result); } return combined; } // Process with progress reporting async Task ProcessWithProgress(IProgress<int> progress) { int processed = 0; var tasks = documents.Select(async (doc, index) => { var result = await Task.Run(() => BarcodeReader.Read(doc, batchOptions)); Interlocked.Increment(ref processed); progress.Report((processed * 100) / documents.Length); return result; }).ToArray(); await Task.WhenAll(tasks); } Imports IronBarCode Imports System.Threading.Tasks Imports System.Linq Imports System.Threading ' Process multiple documents simultaneously Dim documents As String() = New String() { "invoice1.pdf", "shipping-label.png", "inventory-report.pdf", "product-catalog.tiff" } Dim batchOptions As New BarcodeReaderOptions With { .Multithreaded = True, .MaxParallelThreads = 4, .Speed = ReadingSpeed.Balanced } ' Process all documents in parallel Dim allResults As BarcodeResults = BarcodeReader.Read(documents, batchOptions) ' Or use async for non-blocking operations Async Function ProcessBatchAsync() As Task(Of BarcodeResults) Dim tasks = documents.Select(Function(doc) Return Task.Run(Function() BarcodeReader.Read(doc, batchOptions)) End Function).ToArray() Dim results = Await Task.WhenAll(tasks) ' Combine all results Dim combined As New BarcodeResults() For Each result In results combined.AddRange(result) Next Return combined End Function ' Process with progress reporting Async Function ProcessWithProgress(progress As IProgress(Of Integer)) As Task Dim processed As Integer = 0 Dim tasks = documents.Select(Function(doc, index) Return Task.Run(Async Function() Dim result = Await Task.Run(Function() BarcodeReader.Read(doc, batchOptions)) Interlocked.Increment(processed) progress.Report((processed * 100) \ documents.Length) Return result End Function) End Function).ToArray() Await Task.WhenAll(tasks) End Function $vbLabelText $csharpLabel 高度なアプリケーションでは、クラウド処理用のストリームとして結果をエクスポートしたり、Web 統合用のHTML としてバーコードを生成したり、バーコードが埋め込まれた PDF ドキュメントを作成したりできます。 ライブラリは、ドキュメント ワークフローのために既存の PDF にバーコードをスタンプすることもサポートしています。 高パフォーマンスのシナリオでは、開発者は特定の読み取り速度を設定してスループットを最適化できます。 バーコード イメージ ジェネレーターのチュートリアルでは、バッチ作成テクニックについて説明します。 アプリケーションでは、高コントラストのアプリケーション向けに1 BPP バーコード イメージなどの特殊な形式も作成できます。 このライブラリは、画像やストリームを含むさまざまなソースからの読み取りを効率的に処理します。 品質管理のために、信頼度のしきい値を実装してバッチ結果を検証します。## オープンソース ソリューションと商用ソリューションのどちらを選択すればよいですか? 人気のあるオープンソースのバーコードライブラリは何ですか? ZXing.NET は、一般的な形式の基本的なバーコード読み取り機能を提供する、最も人気のあるオープンソース オプションです。 ただし、高度な画像処理が不足しており、破損したバーコードには対応できません。 ライブラリには、信頼性の高いスキャンに不可欠なエラー修正オプションや余白設定が組み込まれていません。 1Dバーコード作成を必要とする最新のアプリケーションでは、ZXing.NETのフォーマットサポートが限られているため、制約を感じます。カスタムQRコードスタイルやバーコードのカスタマイズといった専門的な機能は一切ありません。 このライブラリには、 Code 39 拡張形式の読み取りとUnicode バーコード生成のサポートもありません。 .NETアプリケーションでプロフェッショナルなバーコードの読み取りを実装する準備はできていますか? 今日から無料トライアルを開始し、本番環境でのIronBarcodeの違いを体験してください。 企業への導入については、ライセンスオプションを検索し、組織に最適なものを見つけてください。 よくある質問 なぜオープンソースのバーコードリーダーではなくIronBarcodeを選ぶのですか? IronBarcodeは、エンタープライズグレードのバーコードスキャニング性能、信頼性、プロフェッショナルサポートを提供し、オープンソースのソリューションでは不十分な生産環境に最適です。 .NETアプリケーションでIronBarcodeを使用する利点は何ですか? IronBarcodeは堅牢なバーコード読み取り機能を提供し、高い精度とスピードで実世界の課題を簡単に処理できるため、.NETアプリケーションでのプロフェッショナルな使用に適しています。 IronBarcodeは複数のバーコードフォーマットを扱うことができますか? IronBarcodeは幅広いバーコードフォーマットをサポートしており、様々な業界標準との互換性を確保しています。 IronBarcodeユーザーにプロのサポートはありますか? IronBarcodeユーザーは、プロフェッショナルなサポートを受けることができ、本番環境でのシームレスな運用を維持するために重要な問題を迅速に解決することができます。 IronBarcodeはどのようにバーコード読み取りにおける高いパフォーマンスを保証していますか? IronBarcodeはパフォーマンスを最適化し、リアルタイム処理を必要とするアプリケーションに不可欠な高速で正確なバーコードスキャニングを提供します。 IronBarcodeがエンタープライズレベルのアプリケーションに適している理由は何ですか? IronBarcodeの信頼性、包括的な機能セット、プロフェッショナルなサポートは、信頼性の高いバーコード読み取り機能を必要とするエンタープライズレベルのアプリケーションに最適です。 IronBarcodeは既存のC#プロジェクトに簡単に統合できますか? IronBarcodeはC#プロジェクトに簡単に統合できるように設計されており、簡単なセットアッププロセスと開発者を支援する包括的なドキュメントを提供しています。 IronBarcodeにはトライアルやデモのオプションはありますか? IronBarcodeは通常、開発者がフルライセンスを購入する前に機能やパフォーマンスを評価できるトライアルオプションを提供しています。 Jordi Bardia 今すぐエンジニアリングチームとチャット ソフトウェアエンジニア Jordiは、最も得意な言語がPython、C#、C++であり、Iron Softwareでそのスキルを発揮していない時は、ゲームプログラミングをしています。製品テスト、製品開発、研究の責任を分担し、Jordiは継続的な製品改善において多大な価値を追加しています。この多様な経験は彼を挑戦させ続け、興味を持たせており、Iron Softwareで働くことの好きな側面の一つだと言います。Jordiはフロリダ州マイアミで育ち、フロリダ大学でコンピュータサイエンスと統計学を学びました。 関連する記事 更新日 2026年1月22日 ASP.NETバーコードスキャナチュートリアル:C#バーコードジェネレータガイド IronBarcodeを使用してASP.NETでバーコードをスキャンする方法を学びます 詳しく読む 公開日 2026年1月21日 C#でのデータマトリクスジェネレータ:IronBarcodeによる完全ガイド データマトリックス生成C#チュートリアル。IronBarcodeでECC200データマトリックスバーコードを作成する方法を学びます。2Dバーコード生成のためのシンプルなコード例。 詳しく読む 公開日 2026年1月21日 IronBarcodeを使用したXamarinバーコードジェネレータでプロ品質のバーコードを作成する Xamarin Barcode Generatorを使用してプロ品質のバーコードを作成する方法を学びます。 詳しく読む .NET MAUI BarCode Scanner SDK:クロスプラットフォームのスキャナを数分で構築C#でのデータマトリクスジ...
更新日 2026年1月22日 ASP.NETバーコードスキャナチュートリアル:C#バーコードジェネレータガイド IronBarcodeを使用してASP.NETでバーコードをスキャンする方法を学びます 詳しく読む
公開日 2026年1月21日 C#でのデータマトリクスジェネレータ:IronBarcodeによる完全ガイド データマトリックス生成C#チュートリアル。IronBarcodeでECC200データマトリックスバーコードを作成する方法を学びます。2Dバーコード生成のためのシンプルなコード例。 詳しく読む
公開日 2026年1月21日 IronBarcodeを使用したXamarinバーコードジェネレータでプロ品質のバーコードを作成する Xamarin Barcode Generatorを使用してプロ品質のバーコードを作成する方法を学びます。 詳しく読む