ZXing生成二维码
Posted jake
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZXing生成二维码相关的知识,希望对你有一定的参考价值。
dll:http://files.cnblogs.com/files/jake-ge/ZXing.rar
引入命名空间
using System.Drawing;
using System.IO;
using ZXing;
using ZXing.Common;
public byte[] GenBarCode(string Contents) { EncodingOptions options = new EncodingOptions(); BarcodeWriter writer = null; options.Width = 50; options.Height = 50; writer = new BarcodeWriter(); writer.Format = BarcodeFormat.QR_CODE; writer.Options = options; Bitmap bitmap = writer.Write(Contents); MemoryStream ms = new MemoryStream(); bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp); byte[] bytes = ms.GetBuffer(); ms.Close(); return bytes; }
以上是关于ZXing生成二维码的主要内容,如果未能解决你的问题,请参考以下文章
android中使用Zxing库生成二维码二维码和二维码四的区别