博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Zxing 一维码
阅读量:5828 次
发布时间:2019-06-18

本文共 1675 字,大约阅读时间需要 5 分钟。

最近看到满大街的二维码扫码有惊喜,对二维码也有过一些了解,想看看到底是什么原理,在网上找了一些资料,自己弄了一个实例,采用的是MVC,贴出来分享一下

一维码生成

 Controller

public ActionResult QRCodView()        {            return View();        }

 

1   
2

一维码生成

3
生成一维码
4
5
View
1    $("#btnGO1").click(function () {2         $.post("/Data/Create", { context: $("#text1").val() }, function (d) {3             $("#BarCod").attr("src", d);4         });5     });
JS代码
//一维码生成        public string Create()        {            string context = Request.Form["context"];            string imgPath = CommCor.BarCodeUnit.CreateBarCode(context, Server.MapPath("~/TempFiled/"));                        return "/TempFiled/" + imgPath;        }
//引用命名空间using ZXing;using System.Drawing;using ZXing.QrCode;using ZXing.Common;using System.Text.RegularExpressions;using System.Drawing.Imaging;using ZXing.QrCode.Internal;using System.IO;        ///         /// 一维码生成        ///         ///         public static string CreateBarCode(string contents, string tempPath)        {                       EncodingOptions options = null;            BarcodeWriter writer = null;            options = new EncodingOptions            {                Width = 200,                Height = 200            };            writer = new BarcodeWriter();            writer.Format = BarcodeFormat.ITF;            writer.Options = options;            Bitmap bitmap = writer.Write(contents);            string fileName = Guid.NewGuid().ToString() + ".png";            bitmap.Save(tempPath + fileName);            return fileName;        }
一维码生成核心代码

效果如上图

 

转载于:https://www.cnblogs.com/imeiba/p/5580198.html

你可能感兴趣的文章
我从过去八个月的AI公司面试中学到了什么?
查看>>
深入探究Immutable.js的实现机制(一)
查看>>
jsp改造之sitemesh注意事项
查看>>
智能硬件的时代,嵌入式是否已经日薄西山
查看>>
SpringBoot-Shiro使用
查看>>
iOS 9.0之后NSString encode方法替换
查看>>
解决 ThinkPHP5 无法接收 客户端 Post 传递的 Json 参数
查看>>
ASMFD (ASM Filter Driver) Support on OS Platforms (Certification Matrix). (文档 ID 2034681.1)
查看>>
CRM Transaction处理中的权限控制
查看>>
[转]linux创建链接文件的两种方法
查看>>
python ipaddress模块使用
查看>>
统计文件里面某个字符串出现次数
查看>>
文件权限
查看>>
busybox里的僵尸进程为何那么多
查看>>
python debug
查看>>
java 连接数据库之一个完整的函数
查看>>
mysql脚本
查看>>
OllyDBG 入门系列教学--让你瞬间成为破解高手
查看>>
Dubbo点滴(2)之集群容错
查看>>
检测不到兼容的键盘驱动程序
查看>>