詳細QRCode生成二維碼和下載實現案例

来源:https://www.cnblogs.com/nnnnnn/archive/2019/04/11/10689964.html
-Advertisement-
Play Games

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using ThoughtWorks.QRCode.Codec; 6 using System.Drawing... ...


  1 using System;
  2 using System.Collections.Generic;
  3 using System.Linq;
  4 using System.Web;
  5 using ThoughtWorks.QRCode.Codec;
  6 using System.Drawing;
  7 using System.Drawing.Imaging;
  8 using Game.Utils;
  9 using System.Drawing.Drawing2D;
 10 using Game.Facade;
 11 using System.Net;
 12 using System.IO;
 13 
 14 namespace Game.Web.WS
 15 {
 16     /// <summary>
 17     /// QRCode 的摘要說明
 18     /// </summary>
 19     public class QRCode : IHttpHandler
 20     {
 21 
 22         public void ProcessRequest(HttpContext context)
 23         {
 24             GetQRCode(context);
 25         }
 26 
 27         /// <summary>
 28         /// 繪製二維碼
 29         /// </summary>
 30         /// <param name="context"></param>
 31         private void GetQRCode(HttpContext context)
 32         {
 33             string encodeData = GameRequest.GetQueryString("qt");
 34             string icoURL = GameRequest.GetQueryString("qm");
 35             int width = GameRequest.GetQueryInt("qs", 0);
 36             if (encodeData != string.Empty)
 37             {
 38                 calQrcode(encodeData, icoURL, width, context);
 39             }
 40         }
 41 
 42         /// <summary>
 43         /// 按照指定的大小繪製二維碼
 44         /// </summary>
 45         /// <param name="sData"></param>
 46         /// <param name="width"></param>
 47         /// <returns></returns>
 48         private void calQrcode(string sData, string icoURL, int size, HttpContext context)
 49         {
 50             //二維碼版本,大小獲取
 51             Color qrCodeBackgroundColor = Color.White;
 52             Color qrCodeForegroundColor = Color.Black;
 53             int length = System.Text.Encoding.UTF8.GetBytes(sData).Length;
 54 
 55             //生成二維碼數據
 56             QRCodeEncoder qrCodeEncoder = new QRCodeEncoder();
 57             qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
 58             qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;//使用M糾錯級別
 59             qrCodeEncoder.QRCodeVersion = 0;
 60             var encodedData = qrCodeEncoder.Encode(sData, System.Text.Encoding.UTF8);
 61 
 62             //繪製圖片
 63             int x = 0, y = 0;
 64             int w = 0, h = 0;
 65             // 二維碼矩陣單邊數據點數目
 66             int count = encodedData.Length;
 67             // 獲取單個數據點邊長
 68             double sideLength = Convert.ToDouble(size) / count;
 69             // 初始化背景色畫筆
 70             SolidBrush backcolor = new SolidBrush(qrCodeBackgroundColor);
 71             // 初始化前景色畫筆
 72             SolidBrush forecolor = new SolidBrush(qrCodeForegroundColor);
 73             // 定義畫布
 74             Bitmap image = new Bitmap(size, size);
 75             // 獲取GDI+繪圖圖畫
 76             Graphics graph = Graphics.FromImage(image);
 77             // 先填充背景色
 78             graph.FillRectangle(backcolor, 0, 0, size, size);
 79 
 80             // 變數數據矩陣生成二維碼
 81             for (int row = 0; row < count; row++)
 82             {
 83                 for (int col = 0; col < count; col++)
 84                 {
 85                     // 計算數據點矩陣起始坐標和寬高
 86                     x = Convert.ToInt32(Math.Round(col * sideLength));
 87                     y = Convert.ToInt32(Math.Round(row * sideLength));
 88                     w = Convert.ToInt32(Math.Ceiling((col + 1) * sideLength) - Math.Floor(col * sideLength));
 89                     h = Convert.ToInt32(Math.Ceiling((row + 1) * sideLength) - Math.Floor(row * sideLength));
 90 
 91                     // 繪製數據矩陣
 92                     graph.FillRectangle(encodedData[col][row] ? forecolor : backcolor, x, y, w, h);
 93                 }
 94             }
 95 
 96             //添加LOGO
 97             string path = context.Server.MapPath("/favicon.ico");            
 98             Bitmap logoImage = null;
 99             FileInfo fileInfo = new FileInfo(path);
100             if (fileInfo.Exists)
101             {
102                 logoImage = new Bitmap(path);
103             }
104             if (icoURL != "")
105             {
106                 HttpWebRequest webRequest = (HttpWebRequest)HttpWebRequest.Create(icoURL);
107                 try
108                 {
109                     HttpWebResponse webReponse = (HttpWebResponse)webRequest.GetResponse();
110                     if (webReponse.StatusCode == HttpStatusCode.OK)
111                     {
112                         using (Stream stream = webReponse.GetResponseStream())
113                         {
114                             Image img = Image.FromStream(stream);
115                             logoImage = new Bitmap(img);
116                             img.Dispose();
117                         }
118                     }
119                 }
120                 catch { }
121             }
122             if (logoImage != null)
123             {
124                 image = CoverImage(image, logoImage, graph);
125                 logoImage.Dispose();            
126             }         
127             //輸出
128             System.IO.MemoryStream ms = new System.IO.MemoryStream();
129             image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
130             context.Response.ClearContent();
131             context.Response.ContentType = "image/png";
132             context.Response.AddHeader("Content-Disposition", "attachment;  filename=" + HttpUtility.UrlEncode("QRCodeImg.png", System.Text.Encoding.UTF8));
133             context.Response.BinaryWrite(ms.ToArray());
134             context.Response.Flush();
135             context.Response.End();
136             image.Dispose();
137         }
138 
139         /// <summary>
140         /// 層疊圖片
141         /// </summary>
142         /// <param name="original">原始圖片(目前只支持正方形)</param>
143         /// <param name="image">層疊圖片(目前只支持正方形)</param>
144         /// <returns>處理以後的圖片</returns>
145         private Bitmap CoverImage(Bitmap original, Bitmap image, Graphics graph = null)
146         {
147             //縮放附加圖片
148             int sideSLen = original.Width;
149             int sideTLen = sideSLen / 4;
150             image = ResizeImage(image, sideTLen, sideTLen);
151 
152             // 獲取GDI+繪圖圖畫
153             graph = graph == null ? Graphics.FromImage(original) : graph;
154 
155             // 將附加圖片繪製到原始圖中央
156             graph.DrawImage(image, (original.Width - sideTLen) / 2, (original.Height - sideTLen) / 2, sideTLen, sideTLen);
157 
158             // 釋放GDI+繪圖圖畫記憶體
159             graph.Dispose();
160 
161             // 返回處理結果
162             return original;
163         }
164 
165         /// <summary>
166         /// 圖片縮放
167         /// </summary>
168         /// <param name="bmp">原始Bitmap</param>
169         /// <param name="newW">新的寬度</param>
170         /// <param name="newH">新的高度</param>
171         /// <returns>處理以後的圖片</returns>
172         private Bitmap ResizeImage(Bitmap original, int width, int height)
173         {
174             try
175             {
176                 Bitmap image = new Bitmap(width, height);
177                 Graphics graph = Graphics.FromImage(image);
178                 // 插值演算法的質量
179                 graph.CompositingQuality = CompositingQuality.HighQuality;
180                 graph.SmoothingMode = SmoothingMode.HighQuality;
181                 graph.InterpolationMode = InterpolationMode.HighQualityBicubic;
182                 graph.DrawImage(original, new Rectangle(0, 0, width, height),
183                     new Rectangle(0, 0, original.Width, original.Height), GraphicsUnit.Pixel);
184                 graph.Dispose();
185                 return image;
186             }
187             catch
188             {
189                 return null;
190             }
191         }       
192 
193         public bool IsReusable
194         {
195             get
196             {
197                 return false;
198             }
199         }
200     }
201 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 委托:顧名思義,讓別人幫你辦件事。委托是C#實現回調函數的一種機制。可能有人會問了,回調函數是個啥??? 舉個例子:我現在是一家公司的老闆,公司現在在招聘.NET工程師,我們有一個小姐姐專門負責接受求職者投遞的簡歷,我就告訴這個小姐姐,一旦收到新的簡歷就轉發給我一份。 這個例子里小姐姐要做的工作:給 ...
  • Asp .Net Core 如何讀取appsettings.json配置文件?最近也有學習到如何讀取配置文件的,主要是通過 IConfiguration,以及在Program中初始化完成的。那麼今天給大家介紹下具體如何讀取配置文件的。 首先創建一個讀取配置文件的公共類GetAppsetting,我們 ...
  • 索引: 目錄索引 一.API 列表 1.UpdateAsync() 用於 單表 更新操作 二.API 單表-便捷 方法 舉例-01 生成 SQL 如下: 三.API 單表-便捷 方法 舉例-02 生成 SQL 如下 蒙 2019-04-11 19:45 周四 ...
  • 0x00 前言 最近幾天國外安全研究員Soroush Dalili (@irsdl)公佈了.NET Remoting應用程式可能存在反序列化安全風險,當服務端使用HTTP通道中的SoapServerFormatterSinkProvider類作為通道接收器並且將自動反序列化TypeFilterLev ...
  • 原文鏈接:https://www.entityframeworktutorial.net/code-first/configure-many-to-many-relationship-in-code-first.aspx 這裡,我們將學習如何在Student實體和Course實體間配置多對多關係,S ...
  • 有一臺電腦用 VS Code 開發 .NET Core 項目時,每次打開文件夾都有一個錯誤(標題),定位在 C# 插件,滑鼠放在代碼上沒有智能提醒,輸入代碼時沒有補全提示,重裝 VS Code 和所有插件都沒能解決 其實這是 MSBuild 沒有成功載入和編譯 .csproj 項目引起的,我們先看一 ...
  • 起初 今年過年收假回來,老大說想要為公司掙點錢,集團內的一些子公司做企業官網,並開始跟副總商討這件事的可行性,先讓我們先每個人做一套,好在以後有項目可以直接用得上,於是乎我們每個人都開始搭建起來了,還以為終於有事情可以做了,但是就在前2天,我們還在開發的企業官網就死在了襁褓中。 H-我 、C-後端組 ...
  • public static string GetRealIP() { string result = System.Web.HttpContext.Current.Request.Headers["Cdn-Src-Ip"]; if(string.IsNullOrEmpty(result)){ res ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...