引入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生成二维码图片、根据路径生成二维码图片的更多相关文章

  1. C#获取Html中的图片元素路径

    使用Ueditor的时候把文章以HTML标签的方式存在数据库中,同时还要将文章的第一张图片的路径一并存入数据库,所以就需要在Html中获取第一个图片的路径,没有图片的话设置一个默认的图片.代码如下: ...

  2. C#实现图片文件到数据流,再到图片文件的转换

    //----引入必要的命名空间 using System.IO; using System.Drawing.Imaging; //----代码部分----// private byte[] photo ...

  3. java后台中处理图片辅助类汇总(上传图片到服务器,从服务器下载图片保存到本地,缩放图片,copy图片,往图片添加水印图片或者文字,生成二维码,删除图片等)

    最近工作中处理小程序宝箱活动,需要java画海报,所以把这块都快百度遍了,记录一下处理的方法,百度博客上面也有不少坑! 获取本地图片路径: String bgPath = Thread.current ...

  4. java、python、golang等开发语言如何快速生成二维码?

    免费二维码生成途径非常多!比如比较有名的草料二维码,如果只是简单的使用,用它就足够了.但是如果想大规模的生成,那就不太合适了.再者很多工具都没办法在二维码中加入logo(像微信二维码一样). 接下来, ...

  5. canvas生成二维码,并下载保存为本地的图片

    function getTicket(id,salt){//qrcode生成canvas二维码 $(".zc-mask").show(); $(".edit-box&qu ...

  6. 使用qrcode输入信息生成二维码包含二维码说明信息,点击转化为图片并下载

    说明:输入汉字和数字都可以识别并展示 <body> <h2 id="h2">二维码生成</h2> <br> <span id= ...

  7. java实现微信支付宝等多个支付平台合一的二维码支付(maven+spring springmvc mybatis框架)

    首先申明,本人实现微信支付宝等支付平台合多为一的二维码支付,并且实现有效时间内支付有效,本人采用的框架是spring springmvc mybatis 框架,maven管理.其实如果支付,不需要my ...

  8. C# 生成二维码,彩色二维码,带有Logo的二维码及普通条形码

    每次写博客,第一句话都是这样的:程序员很苦逼,除了会写程序,还得会写博客!当然,希望将来的一天,某位老板看到此博客,给你的程序员职工加点薪资吧!因为程序员的世界除了苦逼就是沉默.我眼中的程序员大多都不 ...

  9. (转)ZXing生成二维码和带logo的二维码,模仿微信生成二维码效果

    场景:移动支付需要对二维码的生成与部署有所了解,掌握目前主流的二维码生成技术. 1 ZXing 生成二维码 首先说下,QRCode是日本人开发的,ZXing是google开发,barcode4j也是老 ...

  10. Thinkphp3.2结合phpqrcode生成二维码(含Logo的二维码),附案例

    首先,下载phpqrcode,将其解压到项目ThinkPHP\Library\Vendor目录下.Index_index.html(模板可自行配置) <form action="{:U ...

随机推荐

  1. 模版 动态 dp

    模版 动态 dp 终于来写这个东西了.. LG 模版:给定 n 个点的数,点有点权, $ m $ 次修改点权,求修改完后这个树的最大独立集大小. 我们先来考虑朴素的最大独立集的 dp \[dp[u][ ...

  2. 用jquery的prop方法操作checkbox

    prop设置checkbox选中 $('#checkbox-id').prop("checked",true) 判断checkbox是否选中,if ($('#checkbox-id ...

  3. 使用Mybatis出现的问题+配置优化+ResultMap

    一.可能出现的问题 1.Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: ...

  4. euerka总结

    一.euerka的基本知识 1. 服务治理 Spring Cloud 封装了 Netflix 公司开发的 Eureka 模块来实现服务治理 在传统的rpc远程调用框架中,管理每个服务与服务之间依赖关系 ...

  5. 详解 Rainbond Ingress 泛解析域名机制

    Rainbond 作为一款云原生应用管理平台,天生带有引导南北向网络流量的分布式网关 rbd-gateway.区别于一般的 Ingress 配置中,用户需要自行定义域名的使用体验,Rainbond 的 ...

  6. Angular 组件通信的三种方式

    我们可以通过以下三种方式来实现: 传递一个组件的引用给另一个组件 通过子组件发送EventEmitter和父组件通信 通过serive通信 1. 传递一个组件的引用给另一个组件 Demo1 模板引用变 ...

  7. Apache2配置文件解读

    每次碰到都不知道具体的作用,所以来分析一下 配置文件结构 apache2在启动的时候自动读取/etc/apache2/apache2.conf文件的配置信息,不同的配置项按功能分布在不同的文件中,然后 ...

  8. oracle中的数组

    Oracle中的数组分为固定数组和可变数组. 一.固定数组固定数组:在定义的时候预定义了数组的大小,在初始化数组时如果超出这个大小,会提示ORA-06532:超出小标超出限制!语法:        T ...

  9. 规范——Java后端开发规范

    Java后端开发规范 一.技术栈规约 二.命名规范 三.Java代码规范(注释规范.异常与日志.代码逻辑规范) 四.Mybatis与SQL规范 五.结果检查(单元测试及代码扫描) 六.安全规范 一.技 ...

  10. 【Java基础】Java反射——Private Fields and Methods

    Despite the common belief it is actually possible to access private fields and methods of other clas ...