二维码生成解析器,QRcode支持logo图标本地运行版

网络工具 2020-08-07 18:25:54

二维码生成解析器,QRcode支持logo图标本地运行版

本程序是使用java语言所写,没有java环境无法运行
主程序源码如下:
public class test {
public static void main(String[] args) throws Exception {
String text = "爱享源码";
String imgPath = "111.jpg";
String destPath = "222.jpg";
QR.encode(text, imgPath, destPath, true);
String str = QR.decode(destPath);
System.out.println(str);
}
}