0

0

使用C#生成带logo的二维码的示例代码分享

黄舟

黄舟

发布时间:2017-03-23 11:46:21

|

2287人浏览过

|

来源于php中文网

原创

带logo的二维码生成分为两步骤:首先根据输入的内容生成二维码图片,然后读取本地的logo图片,通过图片处理生成带logo的二维码。本文对此进行介绍,具有很好的参考价值,下面跟着小编一起来看下吧

带logo的二维码生成分为两步骤:首先根据输入的内容生成二维码图片,然后读取本地的logo图片,通过图片处理生成带logo的二维码。

生成的二维码效果如下:

下面直接贴出二维码生成类   QRCodeHelper.cs  ,直接调用  CreateQRCodeWithLogo 方法,传入相应参数返回bitmap类型的数据,直接将返回的数据绑定到图片控件,如果是web可以先将图片保存到服务器指定地址在获取显示

华锐行业电子商务系统
华锐行业电子商务系统

华锐行业电子商务系统2.0采用微软最新的.net3.5(c#)+mssql架构,代码进行全面重整及优化,清除冗余及垃圾代码,运行速度更快、郊率更高。全站生成静态、会员二级域名、竞价排名、企业会员有多套模板可供选择;在界面方面采用DIV+CSS进行设计,实现程序和界面分离,方便修改适合自己的个性界面,在用户体验方面,大量使用ajax技术,更加易用。程序特点:一、采用微软最新.net3.5+MSSQL

下载
/// 
 /// 生成带logo二维码
 /// 
 public class QRCodeHelper
 {/// 
  /// 创建二维码
  /// 
  /// 
  /// 
  /// 
  public static Bitmap Create(string content)
  {
   try
   {
    //var options = new QrCodeEncodingOptions
    //{
    // DisableECI = true,
    // CharacterSet = "UTF-8",
    // Width = size,
    // Height = size,
    // Margin = 0,
    // ErrorCorrection = ErrorCorrectionLevel.H
    //};
    //var writer = new BarcodeWriter();
    //writer.Format = BarcodeFormat.QR_CODE;
    //writer.Options = options;
    //var bmp = writer.Write(content);
    //return bmp;
    QRCodeEncoder qRCodeEncoder = new QRCodeEncoder();
    qRCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;//设置二维码编码格式 
    qRCodeEncoder.QRCodeScale = 4;//设置编码测量度    
    qRCodeEncoder.QRCodeVersion = 7;//设置编码版本 
    qRCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;//设置错误校验 
    Bitmap image = qRCodeEncoder.Encode(content);
    return image;
   }
   catch (Exception ex)
   {
    return null;
   }
  }
  /// 
  /// 获取本地图片
  /// 
  /// 
  /// 
  private static Bitmap GetLocalLog(string fileName)
  {
   Bitmap newBmp = new Bitmap(fileName);
   //Bitmap bmp = new Bitmap(newBmp);
   return newBmp;
  }
  /// 
  /// 生成带logo二维码
  /// 
  /// 
  public static Bitmap CreateQRCodeWithLogo(string content, string logopath)
  {
   //生成二维码
   Bitmap qrcode = Create(content);
   //生成logo
   Bitmap logo = GetLocalLog(logopath);
   ImageUtility util = new ImageUtility();
   Bitmap finalImage = util.MergeQrImg(qrcode, logo);
   return finalImage;
  }
 }

下面是从网上找的图片处理类   ImageUtility.cs

public class ImageUtility
 {
  #region 合并用户QR图片和用户头像
  /// 
  /// 合并用户QR图片和用户头像
  /// 
  /// QR图片
  /// 用户头像
  /// 
  /// 
  public Bitmap MergeQrImg(Bitmap qrImg, Bitmap headerImg, double n = 0.23)
  {
   int margin = 10;
   float dpix = qrImg.HorizontalResolution;
   float dpiy = qrImg.VerticalResolution;
   var _newWidth = (10 * qrImg.Width - 36 * margin) * 1.0f / 36;
   var _headerImg = ZoomPic(headerImg, _newWidth / headerImg.Width);
   //处理头像
   int newImgWidth = _headerImg.Width + margin;
   Bitmap headerBgImg = new Bitmap(newImgWidth, newImgWidth);
   headerBgImg.MakeTransparent();
   Graphics g = Graphics.FromImage(headerBgImg);
   g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
   g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
   g.Clear(Color.Transparent);
   Pen p = new Pen(new SolidBrush(Color.White));
   Rectangle rect = new Rectangle(0, 0, newImgWidth - 1, newImgWidth - 1);
   using (GraphicsPath path = CreateRoundedRectanglePath(rect, 1))
   {
    g.DrawPath(p, path);
    g.FillPath(new SolidBrush(Color.White), path);
   }
   //画头像
   Bitmap img1 = new Bitmap(_headerImg.Width, _headerImg.Width);
   Graphics g1 = Graphics.FromImage(img1);
   g1.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
   g1.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
   g1.Clear(Color.Transparent);
   Pen p1 = new Pen(new SolidBrush(Color.Gray));
   Rectangle rect1 = new Rectangle(0, 0, _headerImg.Width - 1, _headerImg.Width - 1);
   using (GraphicsPath path1 = CreateRoundedRectanglePath(rect1, 1))
   {
    g1.DrawPath(p1, path1);
    TextureBrush brush = new TextureBrush(_headerImg);
    g1.FillPath(brush, path1);
   }
   g1.Dispose();
   PointF center = new PointF((newImgWidth - _headerImg.Width) / 2, (newImgWidth - _headerImg.Height) / 2);
   g.DrawImage(img1, center.X, center.Y, _headerImg.Width, _headerImg.Height);
   g.Dispose();
   Bitmap backgroudImg = new Bitmap(qrImg.Width, qrImg.Height);
   backgroudImg.MakeTransparent();
   backgroudImg.SetResolution(dpix, dpiy);
   headerBgImg.SetResolution(dpix, dpiy);
   Graphics g2 = Graphics.FromImage(backgroudImg);
   g2.Clear(Color.Transparent);
   g2.DrawImage(qrImg, 0, 0);
   PointF center2 = new PointF((qrImg.Width - headerBgImg.Width) / 2, (qrImg.Height - headerBgImg.Height) / 2);
   g2.DrawImage(headerBgImg, center2);
   g2.Dispose();
   return backgroudImg;
  }
  #endregion
  #region 图形处理
  /// 
  /// 创建圆角矩形
  /// 
  /// 区域
  /// 圆角角度
  /// 
  private GraphicsPath CreateRoundedRectanglePath(Rectangle rect, int cornerRadius)
  {
   //下午重新整理下,圆角矩形
   GraphicsPath roundedRect = new GraphicsPath();
   roundedRect.AddArc(rect.X, rect.Y, cornerRadius * 2, cornerRadius * 2, 180, 90);
   roundedRect.AddLine(rect.X + cornerRadius, rect.Y, rect.Right - cornerRadius * 2, rect.Y);
   roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y, cornerRadius * 2, cornerRadius * 2, 270, 90);
   roundedRect.AddLine(rect.Right, rect.Y + cornerRadius * 2, rect.Right, rect.Y + rect.Height - cornerRadius * 2);
   roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y + rect.Height - cornerRadius * 2, 
   cornerRadius * 2, cornerRadius * 2, 0, 90);
   roundedRect.AddLine(rect.Right - cornerRadius * 2, rect.Bottom, rect.X + cornerRadius * 2, rect.Bottom);
   roundedRect.AddArc(rect.X, rect.Bottom - cornerRadius * 2, cornerRadius * 2, cornerRadius * 2, 90, 90);
   roundedRect.AddLine(rect.X, rect.Bottom - cornerRadius * 2, rect.X, rect.Y + cornerRadius * 2);
   roundedRect.CloseFigure();
   return roundedRect;
  }
  /// 
  /// 图片按比例缩放
  /// 
  private Image ZoomPic(Image initImage, double n)
  {
   //缩略图宽、高计算
   double newWidth = initImage.Width;
   double newHeight = initImage.Height;
   newWidth = n * initImage.Width;
   newHeight = n * initImage.Height;
   //生成新图
   //新建一个bmp图片
   System.Drawing.Image newImage = new System.Drawing.Bitmap((int)newWidth, (int)newHeight);
   //新建一个画板
   System.Drawing.Graphics newG = System.Drawing.Graphics.FromImage(newImage);
   //设置质量
   newG.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
   newG.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
   //置背景色
   newG.Clear(Color.Transparent);
   //画图
   newG.DrawImage(initImage, new System.Drawing.Rectangle(0, 0, newImage.Width, newImage.Height), 
   new System.Drawing.Rectangle(0, 0, initImage.Width, initImage.Height), System.Drawing.GraphicsUnit.Pixel);
   newG.Dispose();
   return newImage;
  }
  /// 
  /// 创建缩略图
  /// 
  /// 
  /// 
  /// 
  /// 
  public static Bitmap GetThumbnail(Bitmap b, int destHeight, int destWidth)
  {
   System.Drawing.Image imgSource = b;
   System.Drawing.Imaging.ImageFormat thisFormat = imgSource.RawFormat;
   int sW = 0, sH = 0;
   // 按比例缩放 
   int sWidth = imgSource.Width;
   int sHeight = imgSource.Height;
   if (sHeight > destHeight || sWidth > destWidth)
   {
    if ((sWidth * destHeight) > (sHeight * destWidth))
    {
     sW = destWidth;
     sH = (destWidth * sHeight) / sWidth;
    }
    else
    {
     sH = destHeight;
     sW = (sWidth * destHeight) / sHeight;
    }
   }
   else
   {
    sW = sWidth;
    sH = sHeight;
   }
   Bitmap outBmp = new Bitmap(destWidth, destHeight);
   Graphics g = Graphics.FromImage(outBmp);
   g.Clear(Color.Transparent);
   // 设置画布的描绘质量 
   g.CompositingQuality = CompositingQuality.HighQuality;
   g.SmoothingMode = SmoothingMode.HighQuality;
   g.InterpolationMode = InterpolationMode.HighQualityBicubic;
   g.DrawImage(imgSource, new Rectangle((destWidth - sW) / 2, (destHeight - sH) / 2, sW, sH), 0, 0, 
   imgSource.Width, imgSource.Height, GraphicsUnit.Pixel);
   g.Dispose();
   // 以下代码为保存图片时,设置压缩质量 
   EncoderParameters encoderParams = new EncoderParameters();
   long[] quality = new long[1];
   quality[0] = 100;
   EncoderParameter encoderParam = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, quality);
   encoderParams.Param[0] = encoderParam;
   imgSource.Dispose();
   return outBmp;
  }
  #endregion
 }

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
go语言 注释编码
go语言 注释编码

本专题整合了go语言注释、注释规范等等内容,阅读专题下面的文章了解更多详细内容。

32

2026.01.31

go语言 math包
go语言 math包

本专题整合了go语言math包相关内容,阅读专题下面的文章了解更多详细内容。

23

2026.01.31

go语言输入函数
go语言输入函数

本专题整合了go语言输入相关教程内容,阅读专题下面的文章了解更多详细内容。

16

2026.01.31

golang 循环遍历
golang 循环遍历

本专题整合了golang循环遍历相关教程,阅读专题下面的文章了解更多详细内容。

5

2026.01.31

Golang人工智能合集
Golang人工智能合集

本专题整合了Golang人工智能相关内容,阅读专题下面的文章了解更多详细内容。

6

2026.01.31

2026赚钱平台入口大全
2026赚钱平台入口大全

2026年最新赚钱平台入口汇总,涵盖任务众包、内容创作、电商运营、技能变现等多类正规渠道,助你轻松开启副业增收之路。阅读专题下面的文章了解更多详细内容。

268

2026.01.31

高干文在线阅读网站大全
高干文在线阅读网站大全

汇集热门1v1高干文免费阅读资源,涵盖都市言情、京味大院、军旅高干等经典题材,情节紧凑、人物鲜明。阅读专题下面的文章了解更多详细内容。

195

2026.01.31

无需付费的漫画app大全
无需付费的漫画app大全

想找真正免费又无套路的漫画App?本合集精选多款永久免费、资源丰富、无广告干扰的优质漫画应用,涵盖国漫、日漫、韩漫及经典老番,满足各类阅读需求。阅读专题下面的文章了解更多详细内容。

170

2026.01.31

漫画免费在线观看地址大全
漫画免费在线观看地址大全

想找免费又资源丰富的漫画网站?本合集精选2025-2026年热门平台,涵盖国漫、日漫、韩漫等多类型作品,支持高清流畅阅读与离线缓存。阅读专题下面的文章了解更多详细内容。

85

2026.01.31

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
C# 教程
C# 教程

共94课时 | 8.2万人学习

C 教程
C 教程

共75课时 | 4.3万人学习

C++教程
C++教程

共115课时 | 15.2万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号