ASP.NET生成二维码的方法总结
本文实例总结了asp.net生成二维码的方法。分享给大家供大家参考,具体如下:
分享一例c#生成二维码的代码,直接引用thoughtworks.qrcode.dll 类生成二维码,有需要的朋友参考下。
方法1.直接引用thoughtworks.qrcode.dll 类,生成二维码。
代码示例:
thoughtworks.qrcode.codec.qrcodeencoder encoder = new qrcodeencoder(); encoder.qrcodeencodemode = qrcodeencoder.encode_mode.byte;//编码方法(注意:byte能支持中文,alpha_numeric扫描出来的都是数字) encoder.qrcodescale = 4;//大小 encoder.qrcodeversion = 0;//版本(注意:设置为0主要是防止编码的字符串太长时发生错误) encoder.qrcodeerrorcorrect = qrcodeencoder.error_correction.m; string qrdata = "二维码信息"; system.drawing.bitmap bp = encoder.encode(qrdata.tostring(), encoding.getencoding("gb2312")); image image = bp; object omissing = system.reflection.missing.value; picturebox1.image = bp;
保存二维码图片:
代码示例:
savefiledialog sf = new savefiledialog(); sf.title = "选择保存文件位置"; sf.filter = "保存图片(*.jpg) |*.jpg|所有文件(*.*) |*.*"; //设置默认文件类型显示顺序 sf.filterindex = 1; //保存对话框是否记忆上次打开的目录 sf.restoredirectory = true; if (sf.showdialog() == dialogresult.ok) { image im = this.picturebox1.image; //获得文件路径 string localfilepath = sf.filename.tostring(); if (sf.filename != "") { string filenameext = localfilepath.substring(localfilepath.lastindexof("\\") + 1);//获取文件名,不带路径 // newfilename = filenameext+datetime.now.tostring("yyyymmdd") ;//给文件名后加上时间 string filepath = localfilepath.substring(0, localfilepath.lastindexof(".")); //获取文件路径,带文件名,不带后缀 string fn = sf.filename; picturebox1.image.save(filepath +"-"+ datetime.now.tostring("yyyymmdd") + ".jpg"); } } //解析二维码信息 // qrcodedecoder decoder = new qrcodedecoder(); // string decodedstring = decoder.decode(new qrcodebitmapimage(new bitmap(picturebox1.image))); //this.label3.text = decodedstring;
方法2.引用zxing类库。
zxing是一个开源java类库用于解析多种格式的1d/2d条形码。目标是能够对qr编码、data matrix、upc的1d条形码进行解码。于此同时,它同样提供 cpp,actionscript,android,iphone,rim,j2me,j2se,jruby,c#等方式的类库。zxing类库的作用主 要是解码,是目前开源类库中解码能力比较强的(商业的另说,不过对于动辄成千上万的类库授权费用,的确很值)。
到谷歌code下载相应的代码
1.下载zxing最新的包
到zxing的主页:
找到其中的csharp文件夹,在vs中打开并编译,将obj下debug中的zxing.dll复制并粘帖到你的项目中的bin文件目录下,
右击添加项目引用。将zxing.dll引用到项目中,就可以在需要的地方使用了。
源代码中有两处utf-8的问题,会导致中文出现乱码(编译.dll之前修改)
其一:com.google.zxing.qrcode.encoder.encoder类中的
internal const system.string default_byte_mode_encoding = "iso-8859-1";
此处,将iso-8859-1改为utf-8
其二:com.google.zxing.qrcode.decoder.decodedbitstreamparser类的成员
private const system.string utf8 = "utf8";
应将utf8改为utf-8
代码示例:
using com.google.zxing.qrcode; using com.google.zxing; using com.google.zxing.common; using bytematrix = com.google.zxing.common.bytematrix; using ean13writer = com.google.zxing.oned.ean13writer; using ean8writer = com.google.zxing.oned.ean8writer; using multiformatwriter = com.google.zxing.multiformatwriter;
方法:
string content = "二维码信息"; bytematrix bytematrix = new multiformatwriter().encode(content, barcodeformat.qr_code, 300, 300); bitmap bitmap = tobitmap(bytematrix); picturebox1.image = bitmap; savefiledialog sfd = new savefiledialog(); sfd.filter = "保存图片(*.png) |*.png|所有文件(*.*) |*.*"; sfd.defaultext = "*.png|*.png"; sfd.addextension = true; if (sfd.showdialog() == dialogresult.ok) { if (sfd.filename != "") { writetofile(bytematrix, system.drawing.imaging.imageformat.png, sfd.filename); } }
解析二维码:
代码示例:
if (this.openfiledialog1.showdialog() != dialogresult.ok) { return; } image img = image.fromfile(this.openfiledialog1.filename); bitmap bmap; try { bmap = new bitmap(img); } catch (system.io.ioexception ioe) { messagebox.show(ioe.tostring()); return; } if (bmap == null) { messagebox.show("could not decode image"); return; } luminancesource source = new rgbluminancesource(bmap, bmap.width, bmap.height); com.google.zxing.binarybitmap bitmap1 = new com.google.zxing.binarybitmap(new hybridbinarizer(source)); result result; try { result = new multiformatreader().decode(bitmap1); } catch (readerexception re) { messagebox.show(re.tostring()); return; } messagebox.show(result.text); public static void writetofile(bytematrix matrix, system.drawing.imaging.imageformat format, string file) { bitmap bmap = tobitmap(matrix); bmap.save(file, format); } public static bitmap tobitmap(bytematrix matrix) { int width = matrix.width; int height = matrix.height; bitmap bmap = new bitmap(width, height, system.drawing.imaging.pixelformat.format32bppargb); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) { bmap.setpixel(x, y, matrix.get_renamed(x, y) != -1 ? colortranslator.fromhtml("0xff000000") : colortranslator.fromhtml("0xffffffff")); } } return bmap; }
ps:这里再为大家推荐一款功能非常强悍的二维码在线生成工具,免费供大家使用:
在线生成二维码工具(加强版):
更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net字符串操作技巧汇总》、《asp.net操作xml技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。