huwhois 5 years ago
parent
commit
72c9037ac1
1 changed files with 12 additions and 1 deletions
  1. 12 1
      src/main/java/io/renren/modules/app/controller/QRCodeTest.java

+ 12 - 1
src/main/java/io/renren/modules/app/controller/QRCodeTest.java

@ -20,7 +20,7 @@ import java.awt.image.BufferedImage;
20 20
import java.io.IOException;
21 21
22 22
/**
23
 * APP测试接口
23
 * 二维码测试接口
24 24
 *
25 25
 * @author Mark sunlightcs@gmail.com
26 26
 */
@ -51,4 +51,15 @@ public class QRCodeTest {
51 51
		}
52 52
    }
53 53
54
	@GetMapping("qcodetesturl")
55
    @ApiOperation("获取二维码图片地址")
56
    public void  getCodeImgUrl(String text)throws IOException {
57
		String img = (new Date().getTime()).toString();
58
		try{
59
			qRCodeUtils.encode(text, img);
60
			return R.ok().put("img", img);
61
		}catch(Exception e){
62
			e.printStackTrace();
63
		}
64
    }
54 65
}