# 安装libpng
>>>yum install -y libpng libpng-devel
# 安装qrencode(当然也可以使用源码编译安装)
>>>yum install -y qrencode
# 将“your input words”转换为二维码并保存在qrcode.png图片中
>>>qrencode -o qrcode.png "your input words"
# 在终端下无法查看png图片,所以可以使用ANSI生成
>>>echo "your input words" | qrencode -o - -t ANSI
# 也可以将需要转换的文字保存为xx.txt文件,之后再转换
>>>cat xx.txt | qrencode -o - -t ANSI
# 注:输出的二维码图片大小取决于,内容的多少,且不能换行