生成帶logo的二維碼
① 如何生成帶中間logo的二維碼
先生成一個二維碼,然後再PS一個LOGO在中間就可以了
② 如何用javascript生成帶logo的二維碼
使用 jQuery.qrcode.js實現。
jQuery.qrcode.js 是一個能夠在客戶端生成矩陣二維碼QRCode 的jquery插件,使用它可以很方便的在頁面專上生成二維條碼。此插件是屬能夠獨立使用的,體積也比較 小,使用gzip壓縮後才不到4kb。因為它是直接在客戶端生成的條碼, 所以不會有圖片下載的過程,能夠實現快速生成。它是基於一個多語言的類庫封裝的,也不依賴於其他額外的服務。
好處:使用jquery-qrcode的好處,不需要在伺服器端生成多餘的二維碼圖片,二維碼直接通過JavaScript直接在客戶端生成,有效減少帶寬,以及維護成本。
③ java中生成中間帶logo的二維碼
下載 QRCode ,設置 CLASSPATH、編譯源碼,可以運行的。。。。。。。。。。
2維碼就是有容錯,所以,中間「挖」空一小片不影響識別 。。。。。
④ jquery qrcode 怎麼生成帶logo的二維碼
$('#output').qrcode({
width: 500,
height: 500,
text: trClick.utf16to8(localhref + "?" + qrCode),
imgWidth: 300/4, //圖片寬
imgHeight: 300 / 4, //圖片高\
src: "../img/icon.png"
});
$('#output').css('display', 'block');
var canvas = $('#output').find("canvas")[0];
try {//解決IE轉base64時緩存不足,canvas轉blob下載
var blob = canvas.msToBlob();
navigator.msSaveBlob(blob, qrCode + '.png');
} catch (e) {//如果為其他瀏覽器,使用base64轉碼下載
var url = canvas.toDataURL('image/jpeg');
$("#download").attr("download", qrCode + '.png')
$("#download").attr('href', url).get(0).click();
}
⑤ 請問哪款Android APP能生成帶自定義logo的二維碼
生成自帶logo的二維碼,倒是可以在網站上進行生成,app沒有見過
⑥ 如何生成帶logo圖片的二維碼用二維碼生成器嗎還是ps
親測可用,望親給好評哦,還有,祝你家小店越做越大
⑦ 帶有logo的二維碼怎麼製作
很簡單的,網上找到二維碼生成
然後有個添加LOGO的
添加上就可以了
直接網路二維碼生成就能找到很多的
⑧ 生成二維碼 並且在二維碼上面加logo 求助
蘋果手機可以直接使用二維碼工房Pro生成帶logo的二維碼名片,這個應用生成二維碼的功能很強大,支持文本、網址、名片等格式,輸入想要生成的內容,一鍵即可創建二維碼,支持嵌入Logo,還有彩碼、各種精美模板、融合二維碼等美化功能。不是蘋果手機的話,直接關注它的公眾號也行。
⑨ 如何生成帶logo的參數二維碼生成器
經過測試好用的一個生成二維碼圖片的方法:
/**
* 生成二維碼(QRCode)圖片
* @param content 二維碼圖片的內容
* @param imgPath 生成二維碼圖片完整的路徑
* @param ccbpath 二維碼圖片中間的logo路徑
*/
public static int createQRCode(String content, String imgPath,String ccbPath) {
try {
Qrcode qrcodeHandler = new Qrcode();
qrcodeHandler.setQrcodeErrorCorrect('M');
qrcodeHandler.setQrcodeEncodeMode('B');
qrcodeHandler.setQrcodeVersion(7);
// System.out.println(content);
byte[] contentBytes = content.getBytes("gb2312");
BufferedImage bufImg = new BufferedImage(140, 140,
BufferedImage.TYPE_INT_RGB);
Graphics2D gs = bufImg.createGraphics();
gs.setBackground(Color.WHITE);
gs.clearRect(0, 0, 140, 140);
2
// 設定圖像顏色 > BLACK
gs.setColor(Color.BLACK);
// 設置偏移量 不設置可能導致解析出錯
int pixoff = 2;
// 輸出內容 > 二維碼
if (contentBytes.length > 0 && contentBytes.length < 120) {
boolean[][] www.gzlij.com codeOut =
qrcodeHandler.calQrcode(contentBytes);
for (int i = 0; i < codeOut.length; i++) {
for (int j = 0; j < codeOut.length; j++) {
if (codeOut[j][i]) {
gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);
}
}
}
} else {
System.err.println("QRCode content bytes length = "
+ contentBytes.length + " not in [ 0,120 ]. ");
return -1;
}
Image img = ImageIO.read(new File(ccbPath));
//實例化一個Image對象。
gs.drawImage(img, 55, 55, null);
gs.dispose();
bufImg.flush();
3
//實例化一個Image對象。
gs.drawImage(img, 55, 55, null);
gs.dispose();
bufImg.flush();
// 生成二維碼QRCode圖片
File imgFile = new File(imgPath);
ImageIO.write(bufImg, "png", imgFile);
} catch (Exception e)
{
e.printStackTrace();
return -100;
}
return 0;
}
⑩ 求一個 二維碼生成器帶logo的
http://sz.ganji.com/fuwu_dian/392699/ 這里有一個,你看一下回 能不能用答