最新使用C#生成二维码方案,详解及实例 ( QRCoder )


当前第2页 返回上一页

g.png

2.代码

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

using System;

using System.Drawing;

using System.Windows.Forms;

 

namespace chestnut_form

{

    public partial class frm_qrcode : Form

    {

        public frm_qrcode()

        {

            InitializeComponent();

        }

 

        // 窗体加载

        private void frm_qrcode_Load(object sender, EventArgs e)

        {

            cb_version.SelectedIndex = 1;

 

            cb_pixel.SelectedIndex = 0;

 

            cb_icon_size.SelectedIndex = 0;

 

            cb_icon_border.SelectedIndex = 1;

        }

 

        // 编码

        private void btn_encode_Click(object sender, EventArgs e)

        {

            int version = Convert.ToInt16(cb_version.Text);

 

            int pixel = Convert.ToInt16(cb_pixel.Text);

 

            string str_msg = tb_msg.Text;

 

            int int_icon_size = Convert.ToInt16(cb_icon_size.Text);

 

            int int_icon_border = Convert.ToInt16(cb_icon_border.Text);

 

            bool b_we = rb_we_y.Checked ? true : false;

 

            Bitmap bmp = chestnut_qrcode.Encoder.code(str_msg, version, pixel, "E:/seaconch/git/1.jpg", int_icon_size, int_icon_border, b_we);

 

            pb_qrcode.Image = bmp;

        }

 

        // 保存

        private void btn_save_Click(object sender, EventArgs e)

        {

            if (pb_qrcode.Image != null)

 

                using (SaveFileDialog sfd = new SaveFileDialog())

                {

                    sfd.Filter = "(*.png)|*.png|(*.bmp)|*.bmp";

 

                    if (sfd.ShowDialog() == DialogResult.OK) pb_qrcode.Image.Save(sfd.FileName);

 

                }

        }

    }

}

看下C#二维码生成效果

h.png

相关文章:

【c#教程】C# 数据类型

相关视频:

极客学院C#视频教程

以上就是最新使用C#生成二维码方案,详解及实例 ( QRCoder )的详细内容!

返回前面的内容

相关阅读 >>

c#将unicode编码转换为汉字字符串的代码分析

详细介绍c#批量生成随机密码必须包含数字和字母并用加密算法加密的代码案例

c# 日志记录类创建的源码分享

formdragger在c#中实现窗体拖拽器的方法详解

c#正则表达式匹配与替换字符串功能示例

用c#实现一个简单的http服务器

关于.net(c#)正确读取中文编码文件的实例教程

简单介绍c#中list<t>对象的深度拷贝问题

最新使用c#生成二维码方案,详解及实例 ( qrcoder )

深入理解c#rx的主要接口

更多相关阅读请进入《二维码》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...