解决方案 »

  1.   

    用过zxing,倒是也有些抛出异常的时候,不过大部分情况挺好用的。
    发张二维码图片出来看看呗?
      

  2.   

    zxing 中有 C# 的源代码,完全可以解析的。
    Bitmap img = new Bitmap(src);
    LuminanceSource ls = new RGBLuminanceSource(img, img.Width, img.Height);
    BinaryBitmap bb = new BinaryBitmap(new com.google.zxing.common.HybridBinarizer(ls));MultiFormatReader mutiReader = new com.google.zxing.MultiFormatReader();
    Result r = mutiReader.decode(bb);
      

  3.   

    http://download.csdn.net/detail/yuekunge/5547923
      

  4.   

    求交流啊,最近在搞用matlab调用zxing库生成二维码,出错啊,求解