qrencode 生成个人微信二维码
- 安装 qrencode
centos:
yum install -y qrencode
macos:brew install qrencode
- 先将自己的微信二维码保存下来,再用浏览器扫描识别出二维码的链接地址 xxx
echo "替换成你自己的链接地址xxx" | qrencode -o - -t ANSI | gzip -c | base64 > wx.code
- 通过步骤2 ,生成的wx.code 即可实现我们的需求
echo "替换成你自己的wx.code的内容" | base64 --decode | gzip -d
Example
image原文链接:
https://blog.foreveronline.top/archives/qrencode-sheng-cheng-er-wei-ma
网友评论