Browse Source

Merge branch 'homework' into dev

huwhois 5 years ago
parent
commit
a8f0ada0ed

+ 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>

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

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

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

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