2019Linux下二维码生成工具:QRencode
程序员文章站
2024-03-18 20:11:46
...
工作学习之余更多精彩内容请查看传送门: [聚金天下]
安装qrencode
安装libpng
[aaa@qq.com ~]# yum install -y libpng libpng-devel
安装qrencode 方式一
[aaa@qq.com ~]# wget http://distfiles.macports.org/qrencode/qrencode-4.0.2.tar.bz2
[aaa@qq.com ~]# tar -jxf qrencode-4.0.2.tar.bz2
[aaa@qq.com ~]# cd qrencode-4.0.2
[aaa@qq.com ~]# ./configure --prefix=/opt/qrencode
[aaa@qq.com ~]# make && make install
工作学习之余更多精彩内容请查看传送门: [聚金天下]
安装qrencode 方式二
qrencode的使用
语法格式
Usage: qrencode [OPTION]… [STRING]
OPTIONS:
-o:输出的二维码文件名。如test.png。需要以.png结尾。-表示输出到控制台。
-s:指定图片大小。默认为3个像素。
-t:指定产生的图片类型。默认为PNG。可以是PNG/ANSI/ANSI256/ASCIIi/UTF8等。如果需要输出到控制台,可以用ANSI、ANSI256等
STRING:可以是text、url等
根据URL生成二维码图片
[aaa@qq.com ~]# qrencode -o jujintianxia.png 'https://www.jujintianxia.com'
从标准输入产生二维码
[aaa@qq.com ~]# qrencode -o - -t ANSI "https://www.jujintianxia.com"
第二种方式:
安装
pip install qrcode-terminal
从标准输入产生二维码
[aaa@qq.com ~]# qrcode-terminal-py -d https://www.jujintianxia.com
[aaa@qq.com ~]# echo "https://www.jujintianxia.com" | qrcode-terminal-py
项目地址:https://github.com/alishtory/qrcode-terminal
工作学习之余更多精彩内容请查看传送门:[聚金天下]