【转】C# 二维码生成
生活随笔
收集整理的這篇文章主要介紹了
【转】C# 二维码生成
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
/// <summary>/// 含有QR碼的描述類和包裝編碼和渲染/// </summary>public class QRCodeHelper{/// <summary>/// 獲取二維碼/// </summary>/// <param name="strContent">待編碼的字符</param>/// <param name="ms">輸出流</param>///<returns>True if the encoding succeeded, false if the content is empty or too large to fit in a QR code</returns>public static bool GetQRCode(string strContent, MemoryStream ms){ErrorCorrectionLevel Ecl = ErrorCorrectionLevel.M; //誤差校正水平 string Content = strContent;//待編碼內(nèi)容QuietZoneModules QuietZones = QuietZoneModules.Two; //空白區(qū)域 int ModuleSize = 12;//大小var encoder = new QrEncoder(Ecl);QrCode qr;if (encoder.TryEncode(Content, out qr))//對內(nèi)容進行編碼,并保存生成的矩陣
{var render = new GraphicsRenderer(new FixedModuleSize(ModuleSize, QuietZones));render.WriteToStream(qr.Matrix, ImageFormat.Png, ms);}else{return false;} return true;} }
通過上述方法即可實現(xiàn)二維碼的生成,得到數(shù)據(jù)流MemoryStream 然后轉(zhuǎn)換成Bitmap即可顯示。
上述方法調(diào)用了QrCode.Net類庫的Net35版本
QrCode.Net 下載地址:http://qrcodenet.codeplex.com/
原文地址: http://blog.csdn.net/paolei/article/details/12584295
參考地址:http://www.cnblogs.com/Soar1991/archive/2012/03/30/2426115.html
總結(jié)
以上是生活随笔為你收集整理的【转】C# 二维码生成的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Windows Phone 8初学者开发
- 下一篇: AFNetworking 下载文件断点续