JAVA根据URL生成二维码图片、根据路径生成二维码图片
引入jar包
zxing-2.3.0.jar、IKAnalyzer2012_u6.jar
下载地址:https://yvioo.lanzous.com/b00nlbp6h
密码:5jge
ZxingLogoConfig.java
import java.awt.Color; public class ZxingLogoConfig {
// logo默认边框颜色
public static final Color DEFAULT_BORDERCOLOR = Color.WHITE;
// logo默认边框宽度
public static final int DEFAULT_BORDER = 2;
// logo大小默认为照片的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 ZxingLogoConfig() {
this(DEFAULT_BORDERCOLOR, DEFAULT_LOGOPART);
} public ZxingLogoConfig(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;
}
}
ZXingCode .java
package com.util; import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.HashMap;
import java.util.Map; import javax.imageio.ImageIO; import org.apache.commons.lang.StringUtils; import com.google.zxing.BarcodeFormat;
import com.google.zxing.Binarizer;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.EncodeHintType;
import com.google.zxing.LuminanceSource;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.Result;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;/**
* @Description: (二维码)
* @author 。
*/
public class ZXingCode { private static final int BLACK = 0xFF000000;//黑色
private static final int WHITE = 0xFFFFFFFF;//白色 private static class SingletonHolder{
private final static ZXingCode INSTANCE=new ZXingCode();
} private ZXingCode(){} public static ZXingCode getInstance(){
return SingletonHolder.INSTANCE;
} /**
* 给二维码图片添加Logo
*
* @param qrPic
* @param logoPic
*/
public void addLogoQRCode(File qrPic, File logoPic,
ZxingLogoConfig logoConfig) {
try {
if (!qrPic.isFile() || !logoPic.isFile()) {
System.out.print("file not find !");
System.exit(0);
} /**
* 读取二维码图片,并构建绘图对象
*/
BufferedImage image = ImageIO.read(qrPic);
Graphics2D g = image.createGraphics(); /**
* 读取Logo图片
*/
BufferedImage logo = ImageIO.read(logoPic);
/**
* 设置logo的大小,本人设置为二维码图片的20%,因为过大会盖掉二维码
*/
int widthLogo = logo.getWidth(null) > image.getWidth() * 2 / 10 ? (image.getWidth() * 2 / 10)
: logo.getWidth(null),
heightLogo = logo.getHeight(null) > image.getHeight() * 2 / 10 ? (image.getHeight() * 2 / 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();
logo.flush();
image.flush(); ImageIO.write(image, "png", new File("D:/test/2.jpg"));
} catch (Exception e) {
e.printStackTrace();
}
} public BufferedImage addLogoQRCode(BufferedImage image, File logoPic,
ZxingLogoConfig logoConfig) {
try {
if (image==null || !logoPic.isFile()) {
System.out.print("file not find !");
return image;
} /**
* 读取二维码图片,并构建绘图对象
*/
Graphics2D g = image.createGraphics(); /**
* 读取Logo图片
*/
BufferedImage logo = ImageIO.read(logoPic);
/**
* 设置logo的大小,本人设置为二维码图片的20%,因为过大会盖掉二维码
*/
int widthLogo = logo.getWidth(null) > image.getWidth() * 2 / 10 ? (image.getWidth() * 2 / 10)
: logo.getWidth(null),
heightLogo = logo.getHeight(null) > image.getHeight() * 2 / 10 ? (image.getHeight() * 2 / 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();
logo.flush();
image.flush();
return image;
} catch (Exception e) {
e.printStackTrace();
}
return image;
} public BufferedImage addLogoWordQRCode(BufferedImage image,
String logoWord, Integer fontSize,
ZxingLogoConfig logoConfig) {
try {
if (image==null || StringUtils.isBlank(logoWord)) {
System.out.print("file not find !");
return image;
}
Graphics2D g = image.createGraphics();
int widthLogo = g.getFontMetrics().stringWidth(logoWord);
int heightLogo= 10;
int x = (image.getWidth() - widthLogo) / 2;
int y = (image.getHeight() - heightLogo) / 2;
// 开始绘制图片
Font font=new Font("黑体", Font.PLAIN, fontSize);
g.setFont(font);
g.setColor(Color.BLACK);
g.drawString(logoWord, x, y);
g.dispose();
image.flush();
return image;
} catch (Exception e) {
e.printStackTrace();
}
return image;
} /**
* 二维码的解析
*
* @param file
*/
public void parseQRCODEImage(File file) {
try {
MultiFormatReader formatReader = new MultiFormatReader(); // File file = new File(filePath);
if (!file.exists()) {
return;
} BufferedImage image = ImageIO.read(file); LuminanceSource source = new BufferedImageLuminanceSource(image);
Binarizer binarizer = new HybridBinarizer(source);
BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer); Map hints = new HashMap();
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
Result result = formatReader.decode(binaryBitmap, hints);
} catch (Exception e) {
e.printStackTrace();
}
} /**
* 将二维码生成为文件
*
* @param bm
* @param imageFormat
* @param file
*/
public void decodeQRCODE2ImageFile(BitMatrix bm, String imageFormat, File file) {
try {
if (null == file || file.getName().trim().isEmpty()) {
throw new IllegalArgumentException("文件异常,或扩展名有问题!");
} BufferedImage bi = fileToBufferedImage(bm);
ImageIO.write(bi, "png", file);
} catch (Exception e) {
e.printStackTrace();
}
} /**
* 构建初始化二维码
*
* @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
* 编码内容
* @param barcodeFormat
* 编码类型
* @param width
* 图片宽度
* @param height
* 图片高度
* @param hints
* 设置参数
* @return
*/
public BufferedImage getQRCODEBufferedImage(String content,
BarcodeFormat barcodeFormat, int width, int height,
Map<EncodeHintType, ?> hints) {
MultiFormatWriter multiFormatWriter = null;
BitMatrix bm = null;
BufferedImage image = null;
try {
multiFormatWriter = new MultiFormatWriter(); // 参数顺序分别为:编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
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); // 开始利用二维码数据创建Bitmap图片,分别设为黑(0xFF000000)白(0xFFFFFFFF)两色
for (int x = 0; x < w; x++) {
for (int y = 0; y < h; y++) {
image.setRGB(x, y, bm.get(x, y) ? BLACK : WHITE);
}
}
} catch (WriterException e) {
e.printStackTrace();
}
return image;
} /**
* 设置二维码的格式参数
*
* @return
*/
public Map<EncodeHintType, Object> getDecodeHintType() {
// 用于设置QR二维码参数
Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>();
// 设置QR二维码的纠错级别(H为最高级别)具体级别信息
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
// 设置编码方式
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;
}
}
控制器方法请求代码
package com.test; import java.awt.image.BufferedImage; import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import com.google.zxing.BarcodeFormat;
import com.util.ZXingCode; /**
* 二维码Action
*/
@Controller
public class DimensionCodeAct { /**
* 生成二维码图片
* @param content url链接
* @param fontSize 文字大小
* @param size 图片大小
* @param request
* @param response
*/
@RequestMapping("/o_create_dimensioncode")
public void createCodeImg(String content,
Integer fontSize,Integer size,
HttpServletRequest request,
HttpServletResponse response) {
if(StringUtils.isNotBlank(content)){
if(size==null){
size=100;
}
if(fontSize==null){
fontSize=10;
}
response.setContentType("image/png");
try { ZXingCode zp = ZXingCode.getInstance();
BufferedImage bim = zp.getQRCODEBufferedImage(content, BarcodeFormat.QR_CODE, size, size,
zp.getDecodeHintType());
ImageIO.write(bim, "png", response.getOutputStream());
//如果是只要生成到本地文件夹 用以下写法
//File file=new File("存放的绝对路径,例:D://xxx.jpg");
//ImageIO.write(bim, "png", file);
} catch (Exception e) {
//e.printStackTrace();
}
}
}
}
页面调用
<img src="/o_create_dimensioncode.jspx?content=${url!}&size=90" style="width:150px;height:150px;"/>
JAVA根据URL生成二维码图片、根据路径生成二维码图片的更多相关文章
- C#获取Html中的图片元素路径
使用Ueditor的时候把文章以HTML标签的方式存在数据库中,同时还要将文章的第一张图片的路径一并存入数据库,所以就需要在Html中获取第一个图片的路径,没有图片的话设置一个默认的图片.代码如下: ...
- C#实现图片文件到数据流,再到图片文件的转换
//----引入必要的命名空间 using System.IO; using System.Drawing.Imaging; //----代码部分----// private byte[] photo ...
- java后台中处理图片辅助类汇总(上传图片到服务器,从服务器下载图片保存到本地,缩放图片,copy图片,往图片添加水印图片或者文字,生成二维码,删除图片等)
最近工作中处理小程序宝箱活动,需要java画海报,所以把这块都快百度遍了,记录一下处理的方法,百度博客上面也有不少坑! 获取本地图片路径: String bgPath = Thread.current ...
- java、python、golang等开发语言如何快速生成二维码?
免费二维码生成途径非常多!比如比较有名的草料二维码,如果只是简单的使用,用它就足够了.但是如果想大规模的生成,那就不太合适了.再者很多工具都没办法在二维码中加入logo(像微信二维码一样). 接下来, ...
- canvas生成二维码,并下载保存为本地的图片
function getTicket(id,salt){//qrcode生成canvas二维码 $(".zc-mask").show(); $(".edit-box&qu ...
- 使用qrcode输入信息生成二维码包含二维码说明信息,点击转化为图片并下载
说明:输入汉字和数字都可以识别并展示 <body> <h2 id="h2">二维码生成</h2> <br> <span id= ...
- java实现微信支付宝等多个支付平台合一的二维码支付(maven+spring springmvc mybatis框架)
首先申明,本人实现微信支付宝等支付平台合多为一的二维码支付,并且实现有效时间内支付有效,本人采用的框架是spring springmvc mybatis 框架,maven管理.其实如果支付,不需要my ...
- C# 生成二维码,彩色二维码,带有Logo的二维码及普通条形码
每次写博客,第一句话都是这样的:程序员很苦逼,除了会写程序,还得会写博客!当然,希望将来的一天,某位老板看到此博客,给你的程序员职工加点薪资吧!因为程序员的世界除了苦逼就是沉默.我眼中的程序员大多都不 ...
- (转)ZXing生成二维码和带logo的二维码,模仿微信生成二维码效果
场景:移动支付需要对二维码的生成与部署有所了解,掌握目前主流的二维码生成技术. 1 ZXing 生成二维码 首先说下,QRCode是日本人开发的,ZXing是google开发,barcode4j也是老 ...
- Thinkphp3.2结合phpqrcode生成二维码(含Logo的二维码),附案例
首先,下载phpqrcode,将其解压到项目ThinkPHP\Library\Vendor目录下.Index_index.html(模板可自行配置) <form action="{:U ...
随机推荐
- 数据库连接池配置 testOnBorrow
背景 前段时间做系统压测,发现DB的CPU使用率飙升很严重,排查后发现是一个配置testOnBorrow由false修改为true导致.怎么对性能影响这么大?需要好好了解一下. testOnBorro ...
- Oracle JDK 下载、配置与验证
# 1. 解决官网下载JDK需要登录Oracle账号问题(JDK 8) JDK 1.8 官网下载地址: https://www.oracle.com/java/technologies/javase/ ...
- 【机器学习与R语言】6-线性回归
目录 1.理解回归 1)简单线性回归 2)普通最小二乘估计 3)相关系数 4)多元线性回归 2.线性回归应用示例 1)收集数据 2)探索和准备数据 3)训练数据 4)评估模型 5)提高模型性能 1.理 ...
- 远程登录Linux系统及上传下载文件
目录 1. 远程登录Linux系统 1.1 为什么要远程登录 1.2 Xshell6安装 1.3 连接登录 1.3.1 连接前提 1.3.2 Xshell连接配置 2. 远程上传下载文件 2.1 Xf ...
- windows系统 svn自动更新
如果对svn不熟悉,当svn上面有更新时,想看到实时效果,就得去web目录手动更新,比较麻烦 其它svn有一个自动更新的功能 利用 hook 在svn 仓库目录下面有一个hook目录 在post- ...
- 详解工作流框架Activiti的服务架构和组件
摘要:通过这篇文章,可以对工作流有一个基本的认识,为后续工作流框架Activiti的学习打下坚实的基础. 本文分享自华为云社区<BPMN工作流的基本概念!详解工作流框架Activiti的服务架构 ...
- == 和 equals() 方法的区别
== 在比较基本数据类型时,是比较两边的数据的值是否相等 // 整数类型 int num1 = 1; // 双精度浮点数类型 double num2 = 1.0; // 输出结果为 true Syst ...
- 学习java的第十五天
一.今日收获 1.完成了手册第二章没有验证完成的例题 2.预习了第三章的算法以及for语句与if语句的用法 二.今日难题 1.验证上出现问题,没有那么仔细. 2.第二章还有没有完全理解的问题 三.明日 ...
- A Child's History of England.18
But, although she was a gentle lady, in all things worthy to be beloved - good, beautiful, sensible, ...
- day13 cookie与session和中间件
day13 cookie与session和中间件 今日内容概要 cookie与session简介 django操作cookie与session django中间件简介 如何自定义中间件 csrf跨站请 ...