| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package jnpf.controller;
- import io.swagger.v3.oas.annotations.Operation;
- import io.swagger.v3.oas.annotations.tags.Tag;
- import jnpf.util.DownUtil;
- import jnpf.util.ServletUtil;
- import jnpf.util.ZxingCodeUtil;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import java.awt.image.BufferedImage;
- /**
- * 生成条码
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2019年9月26日 上午9:18
- */
- @RestController
- @Tag(name = "(待定)生成条码", description = "BarCode")
- @RequestMapping("/api/extend/BarCode")
- public class BarCodeController {
- /**
- * 生成二维码
- *
- * @return
- */
- @Operation(summary = "生成二维码")
- @GetMapping("/BuildQRCode")
- public void buildQrCode() {
- BufferedImage image = ZxingCodeUtil.createCode(ServletUtil.getHeader("F_QRCodeContent"), 400, 400);
- DownUtil.write(image);
- }
- /**
- * 生成条形码
- *
- * @return
- */
- @Operation(summary = "生成条形码")
- @GetMapping("/BuildBarCode")
- public void buildBarCode() {
- BufferedImage image = ZxingCodeUtil.getBarcode(ServletUtil.getHeader("F_BarCodeContent"), 265, 50);
- DownUtil.write(image);
- }
- }
|