C# 生成二维码

 ///


        /// 生成二维码
        ///

        /// 二维码内容
        ///  /// 文件名称
        ///
        private string GenerateQRCode(string content, string fileName = "")
        {
            if (fileName == "")
            {
                fileName = content;
            }

            string PicPath = PathExt.ConvertAbsolutePath("/UploadFile/Barcode/" + fileName + ".png");
            //创建路径
            string rootPath = PathExt.ConvertAbsolutePath("/UploadFile/Barcode");  //rootPath

            if (!System.IO.Directory.Exists(rootPath))
            {
                //不存在就添加路径(文件夹)
                System.IO.Directory.CreateDirectory(rootPath);
            }
            try
            {
                QrEncoder encoder = new QrEncoder(ErrorCorrectionLevel.M);
                QrCode qrCode;
                encoder.TryEncode(content, out qrCode);

                GraphicsRenderer gRenderer = new GraphicsRenderer(
                    new FixedModuleSize(12, QuietZoneModules.Two),
                    Brushes.Black, Brushes.White);

                MemoryStream ms = new MemoryStream();
                gRenderer.WriteToStream(qrCode.Matrix, ImageFormat.Png, ms);

                FileStream fs = new FileStream(PicPath, FileMode.OpenOrCreate);
                BinaryWriter w = new BinaryWriter(fs);
                w.Write(ms.ToArray());
                fs.Close();
                ms.Close();


                return "/UploadFile/Barcode/" + fileName + ".png";

            }
            catch (Exception)
            {
                return "";
            }
        }

你可能感兴趣的:(二维码,C#,生成二维码,二维码,生成,C#)