电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術(shù)文章
文章詳情頁

Java生成中間logo的二維碼的示例代碼

瀏覽:4日期:2022-08-28 08:32:24

最近有負(fù)責(zé)微信開發(fā),對(duì)于微信開發(fā)的項(xiàng)目,肯定少不了二維碼啦,正好有個(gè)這樣的需求,這對(duì)不同的商品生成一個(gè)二維碼,掃碼即刻下單。博主就弄了一個(gè)二維碼生成的工具類。

弄出來之后,產(chǎn)品經(jīng)理又說了,中間放上公司的logo是不是好一點(diǎn)?加上吧,

加上公司logo之后,產(chǎn)品經(jīng)理想了想,每個(gè)商品都有個(gè)二維碼,銷售人員有很多個(gè)商品二維碼,群發(fā)給用戶,在qq群上,微信群上,怎么知道哪個(gè)二維碼對(duì)應(yīng)哪個(gè)商品的呢?于是決定要加上商品名稱。最后商品二維碼就成了下面這個(gè)模樣了(當(dāng)然啦,這里面的logo并不是博主現(xiàn)職公司的)。

Java生成中間logo的二維碼的示例代碼

效果已經(jīng)出來啦,下面附上代碼啦

如果讀者不需要logo或者二維碼名稱的,讀懂代碼后進(jìn)行刪減即可。注釋多多,還是很容易看懂的。

package com.luo.wctweb.util;import java.awt.Color;import java.awt.Font;import java.awt.Graphics2D;import java.awt.image.BufferedImage;import java.io.ByteArrayOutputStream;import java.io.File;import java.util.Date;import java.util.HashMap;import java.util.Map;import javax.imageio.ImageIO;import javax.servlet.http.HttpServletRequest;import com.google.zxing.BarcodeFormat;import com.google.zxing.EncodeHintType;import com.google.zxing.MultiFormatWriter;import com.google.zxing.WriterException;import com.google.zxing.common.BitMatrix;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;import com.lz.lsf.util.Base64;/** * @Description: (二維碼) * @author:luoguohui * @date:2015-10-29 下午05:27:13 */public class ZXingCode{ private static final int QRCOLOR = 0xFF000000; //默認(rèn)是黑色 private static final int BGWHITE = 0xFFFFFFFF; //背景顏色 public static void main(String[] args) throws WriterException { try { getLogoQRCode('https://www.baidu.com/', null, '跳轉(zhuǎn)到百度的二維碼'); } catch (Exception e) { e.printStackTrace(); } } /** * 生成帶logo的二維碼圖片 * * @param qrPic * @param logoPic */ public static String getLogoQRCode(String qrUrl,HttpServletRequest request,String productName) {// String filePath = request.getSession().getServletContext().getRealPath('/') + 'resources/images/logoImages/llhlogo.png'; //filePath是二維碼logo的路徑,但是實(shí)際中我們是放在項(xiàng)目的某個(gè)路徑下面的,所以路徑用上面的,把下面的注釋就好 String filePath = 'C:/Users/luoguohui/Desktop/78310a55b319ebc4fa3aef658126cffc1f17168f.jpg'; //TODO String content = qrUrl; try { ZXingCode zp = new ZXingCode(); BufferedImage bim = zp.getQR_CODEBufferedImage(content, BarcodeFormat.QR_CODE, 400, 400, zp.getDecodeHintType()); return zp.addLogo_QRCode(bim, new File(filePath), new LogoConfig(), productName); } catch (Exception e) { e.printStackTrace(); } return null; } /** * 給二維碼圖片添加Logo * * @param qrPic * @param logoPic */ public String addLogo_QRCode(BufferedImage bim, File logoPic, LogoConfig logoConfig, String productName) { try { /** * 讀取二維碼圖片,并構(gòu)建繪圖對(duì)象 */ BufferedImage image = bim; Graphics2D g = image.createGraphics(); /** * 讀取Logo圖片 */ BufferedImage logo = ImageIO.read(logoPic); /** * 設(shè)置logo的大小,本人設(shè)置為二維碼圖片的20%,因?yàn)檫^大會(huì)蓋掉二維碼 */ int widthLogo = logo.getWidth(null)>image.getWidth()*3/10?(image.getWidth()*3/10):logo.getWidth(null), heightLogo = logo.getHeight(null)>image.getHeight()*3/10?(image.getHeight()*3/10):logo.getWidth(null); /** * logo放在中心 */ int x = (image.getWidth() - widthLogo) / 2; int y = (image.getHeight() - heightLogo) / 2; /** * logo放在右下角 * int x = (image.getWidth() - widthLogo); * int y = (image.getHeight() - heightLogo); */ //開始繪制圖片 g.drawImage(logo, x, y, widthLogo, heightLogo, null);// g.drawRoundRect(x, y, widthLogo, heightLogo, 15, 15);// g.setStroke(new BasicStroke(logoConfig.getBorder()));// g.setColor(logoConfig.getBorderColor());// g.drawRect(x, y, widthLogo, heightLogo); g.dispose(); //把商品名稱添加上去,商品名稱不要太長哦,這里最多支持兩行。太長就會(huì)自動(dòng)截取啦 if (productName != null && !productName.equals('')) {//新的圖片,把帶logo的二維碼下面加上文字BufferedImage outImage = new BufferedImage(400, 445, BufferedImage.TYPE_4BYTE_ABGR);Graphics2D outg = outImage.createGraphics();//畫二維碼到新的面板outg.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);//畫文字到新的面板outg.setColor(Color.BLACK); outg.setFont(new Font('宋體',Font.BOLD,30)); //字體、字型、字號(hào) int strWidth = outg.getFontMetrics().stringWidth(productName);if (strWidth > 399) {// //長度過長就截取前面部分// outg.drawString(productName, 0, image.getHeight() + (outImage.getHeight() - image.getHeight())/2 + 5 ); //畫文字 //長度過長就換行 String productName1 = productName.substring(0, productName.length()/2); String productName2 = productName.substring(productName.length()/2, productName.length()); int strWidth1 = outg.getFontMetrics().stringWidth(productName1); int strWidth2 = outg.getFontMetrics().stringWidth(productName2); outg.drawString(productName1, 200 - strWidth1/2, image.getHeight() + (outImage.getHeight() - image.getHeight())/2 + 12 ); BufferedImage outImage2 = new BufferedImage(400, 485, BufferedImage.TYPE_4BYTE_ABGR); Graphics2D outg2 = outImage2.createGraphics(); outg2.drawImage(outImage, 0, 0, outImage.getWidth(), outImage.getHeight(), null); outg2.setColor(Color.BLACK); outg2.setFont(new Font('宋體',Font.BOLD,30)); //字體、字型、字號(hào) outg2.drawString(productName2, 200 - strWidth2/2, outImage.getHeight() + (outImage2.getHeight() - outImage.getHeight())/2 + 5 ); outg2.dispose(); outImage2.flush(); outImage = outImage2;}else { outg.drawString(productName, 200 - strWidth/2 , image.getHeight() + (outImage.getHeight() - image.getHeight())/2 + 12 ); //畫文字 }outg.dispose(); outImage.flush();image = outImage; } logo.flush(); image.flush(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); baos.flush(); ImageIO.write(image, 'png', baos); //二維碼生成的路徑,但是實(shí)際項(xiàng)目中,我們是把這生成的二維碼顯示到界面上的,因此下面的折行代碼可以注釋掉 //可以看到這個(gè)方法最終返回的是這個(gè)二維碼的imageBase64字符串 //前端用 <img src='data:image/png;base64,${imageBase64QRCode}'/> 其中${imageBase64QRCode}對(duì)應(yīng)二維碼的imageBase64字符串 ImageIO.write(image, 'png', new File('C:/Users/luoguohui/Desktop/TDC-' + new Date().getTime() + 'test.png')); //TODO String imageBase64QRCode = Base64.byteArrayToBase64(baos.toByteArray()); baos.close(); return imageBase64QRCode; } catch (Exception e) { e.printStackTrace(); } return null; } /** * 構(gòu)建初始化二維碼 * * @param bm * @return */ public BufferedImage fileToBufferedImage(BitMatrix bm) { BufferedImage image = null; try { int w = bm.getWidth(), h = bm.getHeight(); image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); for (int x = 0; x < w; x++) {for (int y = 0; y < h; y++){ image.setRGB(x, y, bm.get(x, y) ? 0xFF000000 : 0xFFCCDDEE);} } } catch (Exception e) { e.printStackTrace(); } return image; } /** * 生成二維碼bufferedImage圖片 * * @param content * 編碼內(nèi)容 * @param barcodeFormat * 編碼類型 * @param width * 圖片寬度 * @param height * 圖片高度 * @param hints * 設(shè)置參數(shù) * @return */ public BufferedImage getQR_CODEBufferedImage(String content, BarcodeFormat barcodeFormat, int width, int height, Map<EncodeHintType, ?> hints) { MultiFormatWriter multiFormatWriter = null; BitMatrix bm = null; BufferedImage image = null; try { multiFormatWriter = new MultiFormatWriter(); // 參數(shù)順序分別為:編碼內(nèi)容,編碼類型,生成圖片寬度,生成圖片高度,設(shè)置參數(shù) bm = multiFormatWriter.encode(content, barcodeFormat, width, height, hints); int w = bm.getWidth(); int h = bm.getHeight(); image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); // 開始利用二維碼數(shù)據(jù)創(chuàng)建Bitmap圖片,分別設(shè)為黑(0xFFFFFFFF)白(0xFF000000)兩色 for (int x = 0; x < w; x++) {for (int y = 0; y < h; y++){ image.setRGB(x, y, bm.get(x, y) ? QRCOLOR : BGWHITE);} } } catch (WriterException e) { e.printStackTrace(); } return image; } /** * 設(shè)置二維碼的格式參數(shù) * * @return */ public Map<EncodeHintType, Object> getDecodeHintType() { // 用于設(shè)置QR二維碼參數(shù) Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>(); // 設(shè)置QR二維碼的糾錯(cuò)級(jí)別(H為最高級(jí)別)具體級(jí)別信息 hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 設(shè)置編碼方式 hints.put(EncodeHintType.CHARACTER_SET, 'utf-8'); hints.put(EncodeHintType.MARGIN, 0); hints.put(EncodeHintType.MAX_SIZE, 350); hints.put(EncodeHintType.MIN_SIZE, 100); return hints; }} class LogoConfig { // logo默認(rèn)邊框顏色 public static final Color DEFAULT_BORDERCOLOR = Color.WHITE; // logo默認(rèn)邊框?qū)挾? public static final int DEFAULT_BORDER = 2; // logo大小默認(rèn)為照片的1/5 public static final int DEFAULT_LOGOPART = 5; private final int border = DEFAULT_BORDER; private final Color borderColor; private final int logoPart; /** * Creates a default config with on color {@link #BLACK} and off color * {@link #WHITE}, generating normal black-on-white barcodes. */ public LogoConfig() { this(DEFAULT_BORDERCOLOR, DEFAULT_LOGOPART); } public LogoConfig(Color borderColor, int logoPart) { this.borderColor = borderColor; this.logoPart = logoPart; } public Color getBorderColor() { return borderColor; } public int getBorder() { return border; } public int getLogoPart() { return logoPart; } }

需要說明的是以上代碼依賴了com.google.zxing這個(gè)插件,如果讀者跟博主一樣都是使用maven的話,添加下面依賴即可。如果沒有用maven的話,直接在http://maven.outofmemory.cn/com.google.zxing/core/3.1.0/ 下載。

<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.1.0</version></dependency>

以上就是Java生成中間logo的二維碼的示例代碼的詳細(xì)內(nèi)容,更多關(guān)于Java生成中間logo的二維碼的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: BAUER减速机|ROSSI-MERSEN熔断器-APTECH调压阀-上海爱泽工业设备有限公司 | 工业PH计|工业ph酸度计|在线PH计价格-合肥卓尔仪器仪表有限公司 济南画室培训-美术高考培训-山东艺霖艺术培训画室 | 东莞精密模具加工,精密连接器模具零件,自動機零件,冶工具加工-益久精密 | 胃口福饺子加盟官网_新鲜现包饺子云吞加盟 - 【胃口福唯一官网】 | 收录网| 劳动法网-专业的劳动法和劳动争议仲裁服务网 | 家德利门业,家居安全门,别墅大门 - 安徽家德利门业有限公司 | 彼得逊采泥器-定深式采泥器-电动土壤采样器-土壤样品风干机-常州索奥仪器制造有限公司 | 洁净棚-洁净工作棚-无菌室-净化工程公司_北京卫护科技有限公司 | 电动百叶窗,开窗器,电动遮阳百叶,电动开窗机生产厂家-徐州鑫友工控科技发展有限公司 | 专业的新乡振动筛厂家-振动筛品质保障-环保振动筛价格—新乡市德科筛分机械有限公司 | 济南展厅设计施工_数字化展厅策划设计施工公司_山东锐尚文化传播有限公司 | 上海办公室装修,办公楼装修设计,办公空间设计,企业展厅设计_写艺装饰公司 | 厂房出售_厂房仓库出租_写字楼招租_土地出售-中苣招商网-中苣招商网 | 铝镁锰板_铝镁锰合金板_铝镁锰板厂家_铝镁锰金属屋面板_安徽建科 | 砍排机-锯骨机-冻肉切丁机-熟肉切片机-预制菜生产线一站式服务厂商 - 广州市祥九瑞盈机械设备有限公司 | 拉力机-万能试验机-材料拉伸试验机-电子拉力机-拉力试验机厂家-冲击试验机-苏州皖仪实验仪器有限公司 | 道达尔润滑油-食品级润滑油-道达尔导热油-合成导热油,深圳道达尔代理商合-深圳浩方正大官网 | 膜结构_ETFE膜结构_膜结构厂家_膜结构设计-深圳市烨兴智能空间技术有限公司 | 陕西自考报名_陕西自学考试网 | 实验室隔膜泵-无油防腐蚀隔膜泵-耐腐蚀隔膜真空泵-杭州景程仪器 电杆荷载挠度测试仪-电杆荷载位移-管桩测试仪-北京绿野创能机电设备有限公司 | 智能楼宇-楼宇自控系统-楼宇智能化-楼宇自动化-三水智能化 | 金联宇电缆|广东金联宇电缆厂家_广东金联宇电缆实业有限公司 | 企小优-企业数字化转型服务商_网络推广_网络推广公司 | 扬尘监测_扬尘监测系统_带证扬尘监测设备 - 郑州港迪科技有限公司 | 称重传感器,测力传感器,拉压力传感器,压力变送器,扭矩传感器,南京凯基特电气有限公司 | 行吊_电动单梁起重机_双梁起重机_合肥起重机_厂家_合肥市神雕起重机械有限公司 | 蜘蛛车-高空作业平台-升降机-高空作业车租赁-臂式伸缩臂叉装车-登高车出租厂家 - 普雷斯特机械设备(北京)有限公司 | 写方案网_方案策划方案模板下载| 数控走心机-走心机价格-双主轴走心机-宝宇百科 | 储气罐,真空罐,缓冲罐,隔膜气压罐厂家批发价格,空压机储气罐规格型号-上海申容压力容器集团有限公司 | 权威废金属|废塑料|废纸|废铜|废钢价格|再生资源回收行情报价中心-中废网 | 自动钻孔机-全自动数控钻孔机生产厂家-多米(广东)智能装备有限公司 | 长信科技产业园官网_西安厂房_陕西标准工业厂房| 色谱柱-淋洗液罐-巴罗克试剂槽-巴氏吸管-5ml样品瓶-SBS液氮冻存管-上海希言科学仪器有限公司 | 吨袋包装机|吨包秤|吨包机|集装袋包装机-烟台华恩科技 | 喷码机,激光喷码打码机,鸡蛋打码机,手持打码机,自动喷码机,一物一码防伪溯源-恒欣瑞达有限公司 | POM塑料_PBT材料「进口」聚甲醛POM杜邦原料、加纤PBT塑料报价格找利隆塑料 | 深圳美安可自动化设备有限公司,喷码机,定制喷码机,二维码喷码机,深圳喷码机,纸箱喷码机,东莞喷码机 UV喷码机,日期喷码机,鸡蛋喷码机,管芯喷码机,管内壁喷码机,喷码机厂家 | 400电话_400电话申请_888元包年_400电话办理服务中心_400VIP网 | 口臭的治疗方法,口臭怎么办,怎么除口臭,口臭的原因-口臭治疗网 |