c# – 从图像中读取二维条码

前端之家收集整理的这篇文章主要介绍了c# – 从图像中读取二维条码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要一个库来从C#项目( windows Forms)上的图像中读取二维条码(datamatrix).
我尝试使用一些SDK,但我尝试的SDK不是免费的.

有没有免费的SDK可以从图像中读取2d条形码?

解决方法

有一个 example available
using DataMatrix.net;               // Add ref to DataMatrix.net.dll
  using System.Drawing;               // Add ref to System.Drawing.
  [...]

  // ---------------------------------------------------------------
  // Date      180310
  // Purpose   Get text from a DataMatrix image.
  // Entry     sFileName - Name of the barcode file (PNG,+ path).
  // Return    The text.
  // Comments  See source,project DataMatrixTest,Program.cs.
  // ---------------------------------------------------------------
  private string DecodeText(string sFileName)
  {
      DmtxImageDecoder decoder = new DmtxImageDecoder();
      System.Drawing.Bitmap oBitmap = new System.Drawing.Bitmap(sFileName);
      List<string> oList = decoder.DecodeImage(oBitmap);

      StringBuilder sb = new StringBuilder();
      sb.Length = 0;
      foreach (string s in oList)
      {
          sb.Append(s);
      }
      return sb.ToString();
  }

你需要DataMatrix.net

原文链接:https://www.f2er.com/csharp/100986.html

猜你在找的C#相关文章