溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

c#生成二維碼的方法

發(fā)布時(shí)間:2020-09-22 10:26:32 來(lái)源:億速云 閱讀:208 作者:小新 欄目:編程語(yǔ)言

小編給大家分享一下c#生成二維碼的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

                                                           引用ZXing類庫(kù)

實(shí)現(xiàn)功能:

1生成帶有Logo二維碼

2 將二維碼繪制到圖片上

3 圖片上繪制文字

生成二維碼

public string CreateQrCode(string md5Str,string name,int sex)
        {
            string str = sex == 1? "先生":"女士";
            string logoPath = AppDomain.CurrentDomain.BaseDirectory + "/logo.png";
            string qrCodePath = path + DateTime.Now.ToString("yyyyMMddHHmmss") + ".jpg";
            string yqPath = AppDomain.CurrentDomain.BaseDirectory + "/yq2.jpg";
            string yqCardPath = path + TCommon.Md5(DateTime.Now.ToString("yyyyMMddHHmmss")) + ".jpg";
            if (Directory.Exists(path) == false)//如果不存在就創(chuàng)建file文件夾
            {
                Directory.CreateDirectory(path);
            }
            Generate3(md5Str,logoPath,qrCodePath);
            Image qrCodeImg = new Bitmap(qrCodePath);
            Image image = new Bitmap(yqPath);
            Graphics ig = Graphics.FromImage(image);
            Font font = new Font("Arial", 38,FontStyle.Bold); 
            Font font2 = new Font("STXINWEI", 38, FontStyle.Bold);
            Brush brush = System.Drawing.Brushes.Black;
            SizeF size = ig.MeasureString(name, font2);
            SizeF size2 = ig.MeasureString(str, font);
            ig.DrawString(name, font, brush, (720-size.Width-size2.Width) /2, 680);
            ig.DrawString(str, font, brush, (720 - size.Width - size2.Width) / 2 + size.Width, 680);
            ig.FillRectangle(Brushes.White, 280, 351, 160, 160);
            ig.DrawImage(qrCodeImg, 285, 356);
            image.Save(yqCardPath);
            return yqCardPath.Substring(2);
        }

圖片上生成文字

看完了這篇文章,相信你對(duì)c#生成二維碼的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI