Parcourir la Source

生成二维码

huwhois 5 ans auparavant
Parent
commit
b86aef2435

+ 10 - 0
pom.xml

@ -232,6 +232,16 @@
232 232
			<artifactId>lombok</artifactId>
233 233
			<version>${lombok.version}</version>
234 234
		</dependency>
235
		<dependency>
236
			<groupId>com.google.zxing</groupId>
237
			<artifactId>core</artifactId>
238
			<version>3.1.0</version>
239
		</dependency>
240
		<dependency>
241
			<groupId>com.google.zxing</groupId>
242
			<artifactId>javase</artifactId>
243
			<version>3.1.0</version>
244
		</dependency>
235 245
	</dependencies>
236 246
237 247
	<build>

+ 49 - 0
src/main/java/io/renren/modules/app/controller/QRCodeTest.java

@ -0,0 +1,49 @@
1
package io.renren.modules.app.controller;
2
3
import io.renren.common.utils.R;
4
import io.swagger.annotations.Api;
5
import io.swagger.annotations.ApiOperation;
6
7
import org.springframework.web.bind.annotation.GetMapping;
8
import org.springframework.web.bind.annotation.RequestAttribute;
9
import org.springframework.web.bind.annotation.RequestMapping;
10
import org.springframework.web.bind.annotation.RestController;
11
import org.apache.commons.io.IOUtils;
12
13
import io.renren.modules.app.utils.QRCodeUtils;
14
15
import javax.imageio.ImageIO;
16
import javax.servlet.ServletOutputStream;
17
import javax.servlet.http.HttpServletResponse;
18
import java.awt.image.BufferedImage;
19
import java.io.IOException;
20
21
/**
22
 * APP测试接口
23
 *
24
 * @author Mark sunlightcs@gmail.com
25
 */
26
@RestController
27
@RequestMapping("/app")
28
@Api("二维码测试接口")
29
public class QRCodeTest {
30
31
    @Autowired
32
	private QRCodeUtils qRCodeUtils;
33
34
    @GetMapping("qcodetest.jpg")
35
    @ApiOperation("获取二维码图片")
36
    public void  getCodeImg(HttpServletResponse response, String text){
37
        response.setHeader("Cache-Control", "no-store, no-cache");
38
		response.setContentType("image/jpeg");
39
40
		//获取图片验证码
41
		// BufferedImage image = qRCodeUtils.encode(text);
42
43
		ServletOutputStream out = response.getOutputStream();
44
		// ImageIO.write(image, "jpg", out);
45
		qRCodeUtils.encode(text, out);
46
		IOUtils.closeQuietly(out);
47
    }
48
49
}

+ 271 - 0
src/main/java/io/renren/modules/app/utils/QRCodeUtils.java

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