qrencode
1.1、qrencode简介
是什么 ?:a fast and compact QR Code encoding library and utility.
开发语言:C
官方主页:https://fukuchi.org/works/qrencode
源码仓库:https://github.com/fukuchi/libqrencode
1.2、通过包管理器安装qrencode
操作系统包管理器安装命令
Windowsscoopscoop install qrencode
macOSHomeBrewbrew install qrencode
GNU/LinuxHomeBrewbrew install qrencode
aptsudo apt-get install -y qrencode
CentOSyumsudo yum install -y qrencode
dnfsudo dnf install -y qrencode
openSUSEzyppersudo zypper install -y qrencode qrencode-devel
Alpine Linuxapksudo apk add qrencode

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm qrencode
1.3、通过编译源码安装qrencode
1.4、qrencode命令

qrencode命令的使用格式:

qrencode [option]... [string]

string就是要编码的内容。如果string省略,表示从标准输入中输入数据。

1.4.1、-o <filePath>

指定生成的图片的路径。

示例:

qrencode -o xx.png "http://blog.fpliu.com/"

运行效果:

1.4.2、-s <num>

指定生成的图片的相对大小,默认是3

示例:

qrencode -o xx.png -s 6 "http://blog.fpliu.com/"

运行效果:

1.5、qrencode中包含的头文件
1.6、qrencode中包含的库文件
  • libqrencode.{a | so | dylib}