二維碼生成解析器,由論壇用戶原創(chuàng)制作的一個(gè)二維碼生成工具,兼具二維碼生成與解析功能,可以輕松制作出需要的二維碼效果出來(lái),并且是單文件程序,攜帶方便。有相關(guān)二維碼生成解析需求的朋友們不妨試試吧!
二維碼生成解析器說(shuō)明
論壇上看到過(guò)很多二維碼生成和解析的程序,有很多都是調(diào)用api接口實(shí)現(xiàn)的,不但需要聯(lián)網(wǎng)才能實(shí)現(xiàn)而且存在一定的信息泄露隱患
從網(wǎng)上找了一些官方的QRcode庫(kù)函數(shù),加了個(gè)GUI封裝了一下,做了個(gè)本地的二維碼生成解析程序
本程序是使用java語(yǔ)言所寫,沒有java環(huán)境無(wú)法運(yùn)行
二維碼生成解析器源碼
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);
}
}