二维码工具类

  1. import java.awt.BasicStroke;  
  2. import java.awt.Graphics;  
  3. import java.awt.Graphics2D;  
  4. import java.awt.Image;  
  5. import java.awt.Shape;  
  6. import java.awt.geom.RoundRectangle2D;  
  7. import java.awt.image.BufferedImage;  
  8. import java.io.File;  
  9. import java.io.OutputStream;  
  10. import java.util.Hashtable;  
  11.   
  12. import javax.imageio.ImageIO;  
  13.   
  14. import org.apache.log4j.Logger;  
  15.   
  16. import com.google.zxing.BarcodeFormat;  
  17. import com.google.zxing.BinaryBitmap;  
  18. import com.google.zxing.DecodeHintType;  
  19. import com.google.zxing.EncodeHintType;  
  20. import com.google.zxing.MultiFormatReader;  
  21. import com.google.zxing.MultiFormatWriter;  
  22. import com.google.zxing.Result;  
  23. import com.google.zxing.common.BitMatrix;  
  24. import com.google.zxing.common.HybridBinarizer;  
  25. import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;  
  26.   
  27. /** 
  28.  * 二维码工具类 
  29.  * @author  
  30.  * @date 2016年7月13日 上午9:55:18 
  31.  */  
  32. public class QRCodeUtil {  
  33.     private static final Logger LOGGER = Logger.getLogger(QRCodeUtil.class);  
  34.       
  35.     private static final String CHARSET = "utf-8";  
  36.     private static final String FORMAT_NAME = "JPG";  
  37.     // 二维码尺寸  
  38.     private static final int QRCODE_SIZE = 300;  
  39.     // LOGO宽度  
  40.     private static final int WIDTH = 60;  
  41.     // LOGO高度  
  42.     private static final int HEIGHT = 60;  
  43.       
  44.     public static void main(String[] args) throws Exception {  
  45.         String text = "http://www.baidu.com";  
  46.         String fileName=QRCodeUtil.encode(text, "F:/QR/");  
  47.         System.out.println("fileName:"+fileName);  
  48.     }  
  49.   //58585918.com很多兼职、返利、招聘网站信息,希望可以帮助大家。
  50.     private static BufferedImage createImage(String content, String imgPath,  
  51.             boolean needCompress) throws Exception {  
  52.         Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();  
  53.         hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);  
  54.         hints.put(EncodeHintType.CHARACTER_SET, CHARSET);  
  55.         hints.put(EncodeHintType.MARGIN, 1);  
  56.         BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, QRCODE_SIZE, QRCODE_SIZE, hints);  
  57.         int width = bitMatrix.getWidth();  
  58.         int height = bitMatrix.getHeight();  
  59.         BufferedImage image = new BufferedImage(width, height,  
  60.                 BufferedImage.TYPE_INT_RGB);  
  61.         for (int x = 0; x < width; x++) {  
  62.             for (int y = 0; y < height; y++) {  
  63.                 image.setRGB(x, y, bitMatrix.get(x, y) ? 0xFF000000 : 0xFFFFFFFF);  
  64.             }  
  65.         }  
  66.         if (imgPath == null || "".equals(imgPath)) {  
  67.             return image;  
  68.         }  
  69.         // 插入图片  
  70.         QRCodeUtil.insertImage(image, imgPath, needCompress);  
  71.         return image;  
  72.     }  
  73.   
  74.     /** 
  75.      * 插入LOGO 
  76.      * @param source 二维码图片 
  77.      * @param imgPath LOGO图片地址 
  78.      * @param needCompress 是否压缩 
  79.      * @throws Exception 
  80.      */  
  81.     private static void insertImage(BufferedImage source, String imgPath,  
  82.             boolean needCompress) throws Exception {  
  83.         File file = new File(imgPath);  
  84.         if (!file.exists()) {  
  85.             LOGGER.info("" + imgPath + "   该文件不存在!");  
  86.             return;  
  87.         }  
  88.         Image src = ImageIO.read(new File(imgPath));  
  89.         int width = src.getWidth(null);  
  90.         int height = src.getHeight(null);  
  91.         if (needCompress) { // 压缩LOGO  
  92.             if (width > WIDTH) {  
  93.                 width = WIDTH;  
  94.             }  
  95.             if (height > HEIGHT) {  
  96.                 height = HEIGHT;  
  97.             }  
  98.             Image image = src.getScaledInstance(width, height,  
  99.                     Image.SCALE_SMOOTH);  
  100.             BufferedImage tag = new BufferedImage(width, height,  
  101.                     BufferedImage.TYPE_INT_RGB);  
  102.             Graphics g = tag.getGraphics();  
  103.             g.drawImage(image, 00null); // 绘制缩小后的图  
  104.             g.dispose();  
  105.             src = image;  
  106.         }  
  107.         // 插入LOGO  
  108.         Graphics2D graph = source.createGraphics();  
  109.         int x = (QRCODE_SIZE - width) / 2;  
  110.         int y = (QRCODE_SIZE - height) / 2;  
  111.         graph.drawImage(src, x, y, width, height, null);  
  112.         Shape shape = new RoundRectangle2D.Float(x, y, width, width, 66);  
  113.         graph.setStroke(new BasicStroke(3f));  
  114.         graph.draw(shape);  
  115.         graph.dispose();  
  116.     }  
  117.   
  118.     /** 
  119.      * 生成二维码(内嵌LOGO) 
  120.      * @param content 内容 
  121.      * @param imgPath LOGO地址 
  122.      * @param destPath 存放目录 
  123.      * @param needCompress 是否压缩LOGO 
  124.      * @throws Exception 
  125.      * @return 文件名 
  126.      */  
  127.     public static String encode(String content, String imgPath, String destPath,  
  128.             boolean needCompress) throws Exception {  
  129.         BufferedImage image = QRCodeUtil.createImage(content, imgPath, needCompress);  
  130.         mkdirs(destPath);  
  131.         String file = UUIDUtil.createUUID() + ".jpg";  
  132.         ImageIO.write(image, FORMAT_NAME, new File(destPath + "/" + file));  
  133.         return file;  
  134.     }  
  135.   
  136.     /** 
  137.      * 文件夹不存在时,mkdirs会自动创建多层目录,区别于mkdir.(mkdir如果父目录不存在则会抛出异常) 
  138.      * @param destPath 存放目录 
  139.      */  
  140.     public static void mkdirs(String destPath) {  
  141.         File file = new File(destPath);  
  142.         // 当文件夹不存在时,mkdirs会自动创建多层目录,区别于mkdir.(mkdir如果父目录不存在则会抛出异常)  
  143.         if (!file.exists() && !file.isDirectory()) {  
  144.             file.mkdirs();  
  145.         }  
  146.     }  
  147.   
  148.     /** 
  149.      * 生成二维码(内嵌LOGO) 
  150.      * @param content  内容 
  151.      * @param imgPath LOGO地址 
  152.      * @param destPath 存储地址 
  153.      * @throws Exception 
  154.      */  
  155.     public static void encode(String content, String imgPath, String destPath) throws Exception {  
  156.         QRCodeUtil.encode(content, imgPath, destPath, true);  
  157.     }  
  158.   
  159.     /** 
  160.      * 生成二维码 
  161.      * @param content 内容 
  162.      * @param destPath 存储地址 
  163.      * @param needCompress 是否压缩LOGO 
  164.      * @throws Exception 
  165.      */  
  166.     public static void encode(String content, String destPath, boolean needCompress) throws Exception {  
  167.         QRCodeUtil.encode(content, null, destPath, needCompress);  
  168.     }  
  169.   
  170.     /** 
  171.      * 生成二维码 
  172.      * @param content 内容 
  173.      * @param destPath 存储地址 
  174.      * @throws Exception 
  175.      * @return 文件名 
  176.      */  
  177.     public static String encode(String content, String destPath) {  
  178.         String fileName = null;  
  179.         try {  
  180.             fileName = QRCodeUtil.encode(content, null, destPath, false);  
  181.         } catch (Exception e) {  
  182.             // TODO Auto-generated catch block  
  183.             e.printStackTrace();  
  184.         }  
  185.         return fileName;  
  186.     }  
  187.   
  188.     /** 
  189.      * 生成二维码(内嵌LOGO) 
  190.      * @param content 内容 
  191.      * @param imgPath LOGO地址 
  192.      * @param output 输出流 
  193.      * @param needCompress 是否压缩LOGO 
  194.      * @throws Exception 
  195.      */  
  196.     public static void encode(String content, String imgPath,  
  197.             OutputStream output, boolean needCompress) throws Exception {  
  198.         BufferedImage image = QRCodeUtil.createImage(content, imgPath,needCompress);  
  199.         ImageIO.write(image, FORMAT_NAME, output);  
  200.     }  
  201.   
  202.     /** 
  203.      * 生成二维码 
  204.      * @param content 内容 
  205.      * @param output 输出流 
  206.      * @throws Exception 
  207.      */  
  208.     public static void encode(String content, OutputStream output)  
  209.             throws Exception {  
  210.         QRCodeUtil.encode(content, null, output, false);  
  211.     }  
  212.   
  213.     /** 
  214.      * 解析二维码 
  215.      * @param file 二维码图片 
  216.      * @return  
  217.      * @throws Exception 
  218.      */  
  219.     public static String decode(File file) throws Exception {  
  220.         BufferedImage image;  
  221.         image = ImageIO.read(file);  
  222.         if (image == null) {  
  223.             return null;  
  224.         }  
  225.         BufferedImageLuminanceSource source = new BufferedImageLuminanceSource(image);  
  226.         BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));  
  227.         Result result;  
  228.         Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>();  
  229.         hints.put(DecodeHintType.CHARACTER_SET, CHARSET);  
  230.         result = new MultiFormatReader().decode(bitmap, hints);  
  231.         String resultStr = result.getText();  
  232.         return resultStr;  
  233.     }  
  234.   
  235.     /** 
  236.      * 解析二维码 
  237.      * @param path 二维码图片地址 
  238.      * @return 
  239.      * @throws Exception 
  240.      */  
  241.     public static String decode(String path) throws Exception {  
  242.         return QRCodeUtil.decode(new File(path));  
  243.     }  
  244.   
  245. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值