首页 > 代码库 > .Net mvc 使用QRCode生成和解析二维码
.Net mvc 使用QRCode生成和解析二维码
//index 控制器中的代码
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Web; using System.Web.Mvc; using ThoughtWorks.QRCode.Codec; namespace MyQrCode.Controllers { public class IndexController : Controller { // // GET: /Index/ public ActionResult Index() { return View(); } /// <summary> /// 生成二维码 /// </summary> /// <param name="url">链接地址信息</param> /// <param name="logo">中间的logo,加了后可能会解析失败</param> /// <returns></returns> public ActionResult QrCode(string url = "http://blog.csdn.net/pukuimin1226", string logo = "") { string enCodeString = url;//获取到需要转化为二维码的字符 QRCodeEncoder codeEncoder = new QRCodeEncoder();//创建一个编码器 codeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE; codeEncoder.QRCodeScale = 4; codeEncoder.QRCodeVersion = 8; codeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M; Bitmap pic = codeEncoder.Encode(url, System.Text.Encoding.UTF8); string filePath = "/qrcode.jpg"; if (logo != null && logo != "") { CombinImage(pic, Server.MapPath(logo)).Save(Server.MapPath(filePath), System.Drawing.Imaging.ImageFormat.Jpeg);//加了logo,不建议使用 } else pic.Save(Server.MapPath(filePath), System.Drawing.Imaging.ImageFormat.Jpeg); if (pic != null) pic.Dispose(); return File(filePath, "image/jpeg"); } /// <summary> /// 解析二维码,输出url信息 /// </summary> /// <param name="filename">二维码相对路径</param> /// <returns></returns> public ActionResult DeQrCode(string filename="/qrcode.jpg") { Bitmap pic = new Bitmap(Server.MapPath(filename));// QRCodeDecoder qrDecoder = new QRCodeDecoder();//创建一个解码器 string msg = qrDecoder.decode(new ThoughtWorks.QRCode.Codec.Data.QRCodeBitmapImage(pic), System.Text.Encoding.UTF8);//解码返回一个字符串 if (pic != null) pic.Dispose(); return Content(msg); } #region 这部分代码是网上找的,将生成的二维码中间加入logo图片,可能造成扫码解析失败,不建议使用 /// <summary> /// Resize图片 /// </summary> /// <param name="bmp">原始Bitmap</param> /// <param name="newW">新的宽度</param> /// <param name="newH">新的高度</param> /// <param name="Mode">保留着,暂时未用</param> /// <returns>处理以后的图片</returns> public static Image KiResizeImage(Image bmp, int newW, int newH, int Mode) { try { Bitmap b = new Bitmap(newW, newH); Graphics g = Graphics.FromImage(b); // 插值算法的质量 g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel); g.Dispose(); return b; } catch { return null; } } /// <summary> /// 调用此函数后使此两种图片合并,类似相册,有个 /// 背景图,中间贴自己的目标图片 /// </summary> /// <param name="imgBack">粘贴的源图片</param> /// <param name="destImg">粘贴的目标图片</param> public static Image CombinImage(Image imgBack, string destImg) { int logo_w_h = 65; Image img = Image.FromFile(destImg); //照片图片 if (img.Height != logo_w_h || img.Width != logo_w_h) { img = KiResizeImage(img, logo_w_h, logo_w_h, 0); } Graphics g = Graphics.FromImage(imgBack); g.DrawImage(imgBack, 0, 0, imgBack.Width, imgBack.Height); //g.DrawImage(imgBack, 0, 0, 相框宽, 相框高); //g.FillRectangle(System.Drawing.Brushes.White, imgBack.Width / 2 - img.Width / 2 + 1, imgBack.Width / 2 - img.Width / 2 + 1, img.Width - 2, img.Width - 2);//相片四周刷一层黑色边框 //g.DrawImage(img, 照片与相框的左边距, 照片与相框的上边距, 照片宽, 照片高); g.DrawImage(img, imgBack.Width / 2 - img.Width / 2, imgBack.Width / 2 - img.Width / 2, img.Width, img.Height); GC.Collect(); return imgBack; } #endregion } }
//index/index 视图
@{ ViewBag.Title = "二维码生成与解析 示例"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Index</h2> <a target="_blank" href=http://www.mamicode.com/"/Index/QrCode">生成二维码,后面可加参数 ?url=
>效果:
源码下载地址:http://download.csdn.net/detail/pukuimin1226/8095417
.Net mvc 使用QRCode生成和解析二维码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。