Java:Java编程实现导出二维码

Java:Java编程实现导出二维码


输出结果

更新……

代码设计

public class QRCodeUtil {
private static final String CHARSET = "utf-8";
private static final String FORMAT_NAME = "JPG";
// 二维码尺寸
private static final int QRCODE_SIZE = 300;
// LOGO宽度
private static final int WIDTH = 60;
// LOGO高度
private static final int HEIGHT = 60;

private static BufferedImage createImage(String content, String imgPath,
boolean needCompress) throws Exception {
Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
hints.put(EncodeHintType.CHARACTER_SET, CHARSET);
hints.put(EncodeHintType.MARGIN, 1);
BitMatrix bitMatrix = new MultiFormatWriter().encode(content,
BarcodeFormat.QR_CODE, QRCODE_SIZE, QRCODE_SIZE, hints);
int width = bitMatrix.getWidth();
int height = bitMatrix.getHeight();
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
image.setRGB(x, y, bitMatrix.get(x, y) ? 0xFF000000
: 0xFFFFFFFF);
}
}
if (imgPath == null || "".equals(imgPath)) {
return image;
}
// 插入图片
QRCodeUtil.insertImage(image, imgPath, needCompress);
return image;
}

private static void insertImage(BufferedImage source, String imgPath,
boolean needCompress) throws Exception {
File file = new File(imgPath);
if (!file.exists()) {
System.err.println(""+imgPath+"   该文件不存在!");
return;
}
Image src = ImageIO.read(new File(imgPath));
int width = src.getWidth(null);
int height = src.getHeight(null);
if (needCompress) { // 压缩LOGO
if (width > WIDTH) {
width = WIDTH;
}
if (height > HEIGHT) {
height = HEIGHT;
}
Image image = src.getScaledInstance(width, height,
Image.SCALE_SMOOTH);
BufferedImage tag = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = tag.getGraphics();
g.drawImage(image, 0, 0, null); // 绘制缩小后的图
g.dispose();
src = image;
}
// 插入LOGO
Graphics2D graph = source.createGraphics();
int x = (QRCODE_SIZE - width) / 2;
int y = (QRCODE_SIZE - height) / 2;
graph.drawImage(src, x, y, width, height, null);
Shape shape = new RoundRectangle2D.Float(x, y, width, width, 6, 6);
graph.setStroke(new BasicStroke(3f));
graph.draw(shape);
graph.dispose();
}

public static void encode(String content, String imgPath, String destPath,
boolean needCompress) throws Exception {
BufferedImage image = QRCodeUtil.createImage(content, imgPath,
needCompress);
mkdirs(destPath);
String file = new Random().nextInt(99999999)+".jpg";
ImageIO.write(image, FORMAT_NAME, new File(destPath+"/"+file));
}
public static void mkdirs(String destPath) {
File file =new File(destPath);
//当文件夹不存在时,mkdirs会自动创建多层目录,区别于mkdir.(mkdir如果父目录不存在则会抛出异常)
if (!file.exists() && !file.isDirectory()) {
file.mkdirs();
}
}

/**
 * 生成二维码(内嵌LOGO)
 *
 * @param content
 *            内容
 * @param imgPath
 *            LOGO地址
 * @param destPath
 *            存储地址
 * @throws Exception
 */
public static void encode(String content, String imgPath, String destPath)
throws Exception {
QRCodeUtil.encode(content, imgPath, destPath, false);
}

/**
 * 生成二维码
 *
 * @param content
 *            内容
 * @param destPath
 *            存储地址
 * @param needCompress
 *            是否压缩LOGO
 * @throws Exception
 */
public static void encode(String content, String destPath,
boolean needCompress) throws Exception {
QRCodeUtil.encode(content, null, destPath, needCompress);
}

/**
 * 生成二维码
 *
 * @param content
 *            内容
 * @param destPath
 *            存储地址
 * @throws Exception
 */
public static void encode(String content, String destPath) throws Exception {
QRCodeUtil.encode(content, null, destPath, false);
}

/**
 * 生成二维码(内嵌LOGO)
 *
 * @param content
 *            内容
 * @param imgPath
 *            LOGO地址
 * @param output
 *            输出流
 * @param needCompress
 *            是否压缩LOGO
 * @throws Exception
 */
public static void encode(String content, String imgPath,
OutputStream output, boolean needCompress) throws Exception {
BufferedImage image = QRCodeUtil.createImage(content, imgPath,
needCompress);
ImageIO.write(image, FORMAT_NAME, output);
}

/**
 * 生成二维码
 *
 * @param content
 *            内容
 * @param output
 *            输出流
 * @throws Exception
 */
public static void encode(String content, OutputStream output)
throws Exception {
QRCodeUtil.encode(content, null, output, false);
}

/**
 * 解析二维码
 *
 * @param file
 *            二维码图片
 * @return
 * @throws Exception
 */
public static String decode(File file) throws Exception {
BufferedImage image;
image = ImageIO.read(file);
if (image == null) {
return null;
}
BufferedImageLuminanceSource source = new BufferedImageLuminanceSource(
image);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Result result;
Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>();
hints.put(DecodeHintType.CHARACTER_SET, CHARSET);
result = new MultiFormatReader().decode(bitmap, hints);
String resultStr = result.getText();
return resultStr;
}

/**
 * 解析二维码
 *
 * @param path
 *            二维码图片地址
 * @return
 * @throws Exception
 */
public static String decode(String path) throws Exception {
return QRCodeUtil.decode(new File(path));
}

public static void main(String[] args) throws Exception {
String text = "http://www.jason-niu.com";
QRCodeUtil.encode(text, "G:/创业/云崖牛logo小.jpg", "G:/创业/云崖牛barcode", true);
}
}
(0)

相关推荐

  • Java 在Excel中添加水印

    在Excel中没有直接添加水印的功能,但依旧可以通过一定方式来实现类似水印效果.本文通过Java程序代码介绍具体实现方法. 程序环境: 测试文档:Office Excel 2013 编译环境:Inte ...

  • Java 实现定制二维码,附源码

    来源:http://suo.im/5R6ewH 步骤 1 第一步首先创建一个普通的 Maven 项目,然后要实现二维码功能,我们肯定要使用别人提供好的 Jar 包,这里我用的是 google 提供的 ...

  • 如何快速导出个人微信公众号二维码

    轩轩小姐姐2018-10-23 23:38 当我们注册申请了个人微信公众号以后,基本都会做一些或多或少的宣传,那么二维码在哪里,又怎么下载了,下面是我的操作过程,希望对大家有所帮助. 方法 1 首先在 ...

  • 社区二维码云门禁技术方案

    智能二维码云门禁系统,以移动互联网技术为依托,通过利用物联网.云计算和虚拟化等新技术,实现对系统内人员的流动和行动轨迹进行一个精细化.实时型.可追溯的管理.智能二维码云门禁采用二维码作为人员身份识别的 ...

  • 通道闸机嵌入安装二维码刷卡门禁一体机

    通道闸嵌入二维码刷卡门禁一体机

  • 广州微信二维码怎么乘车?羊城通乘车码开通使用攻略

    [导语]:"羊城通乘车码"是腾讯公司与广州羊城通公司携手推出的一大新型支付方式,用户只需打开手机通过羊城通APP.微信小程序即可体验. 据了解,广州是全国首个在公共交通领域与腾讯开 ...

  • 二维码扫码登录是什么原理

    来自:掘金,作者:ask_the_sky 链接:https://juejin.cn/post/6940976355097985032 在日常生活中,二维码出现在很多场景,比如超市支付.系统登录.应用下 ...

  • 如何免费制作支付宝微信合并收款二维码?

    它们用各自app的收款二维码,收钱到app的账户中,商家再从app中提款即可,这样极大的方便了商家的收款和消费者的付款. 但这些app并不是免费的,商家在提现时,会被收取一定的手续费.并且这些软件的评 ...

  • 【津巴时讯】津巴布韦电子版"二维码新冠疫苗接种卡"即将面世

    据<新闻日报>5月6日消息称:津巴布韦卫生部信息与数据分析部门负责人Simukai Zizhou日前表示,当世界卫生组织国际疫苗护照系统上线运行后,津巴布韦为防止伪造的疫苗接种证书而设计的 ...

  • “数字人民币”来了,央行再传新消息,二维码或成为过去?

    "数字人民币"来了,央行传来新消息 进入到21世纪之后,国人的生活水平有了显著的提高,随之而来的还有各种以前闻所未闻的新技术,比如说移动支付和"数字人民币".在 ...