|
|
|
@ -16,10 +16,8 @@ import javax.imageio.ImageIO;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
import javax.swing.filechooser.FileSystemView; |
|
|
|
|
import java.awt.image.BufferedImage; |
|
|
|
|
import java.io.File; |
|
|
|
|
import java.io.FileInputStream; |
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.io.InputStream; |
|
|
|
|
import java.io.*; |
|
|
|
|
import java.util.Base64; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.UUID; |
|
|
|
@ -105,6 +103,40 @@ public class QRCodeUtil {
|
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static String createCodeToBase64(String content) throws IOException { |
|
|
|
|
FileInputStream inputFile = null; |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
String imgPath = CommonConstant.SYSTEMFILEPATH+"qrCodeImg/"; |
|
|
|
|
File codeImgFileSaveDir = new File(imgPath); |
|
|
|
|
//1. 使用UUID重新生成文件名,防止文件名称重复造成文件覆盖
|
|
|
|
|
String fileName = UUID.randomUUID() + "." +FileFormat; |
|
|
|
|
content = content.trim(); |
|
|
|
|
if (codeImgFileSaveDir==null || codeImgFileSaveDir.isFile()) { |
|
|
|
|
//二维码图片存在目录为空,默认放在桌面...
|
|
|
|
|
codeImgFileSaveDir = FileSystemView.getFileSystemView().getHomeDirectory(); |
|
|
|
|
} |
|
|
|
|
if (!codeImgFileSaveDir.exists()) { |
|
|
|
|
//二维码图片存在目录不存在,开始创建...
|
|
|
|
|
codeImgFileSaveDir.mkdirs(); |
|
|
|
|
} |
|
|
|
|
//核心代码-生成二维码
|
|
|
|
|
BufferedImage bufferedImage = getBufferedImage(content); |
|
|
|
|
File codeImgFile = new File(codeImgFileSaveDir, fileName); |
|
|
|
|
ImageIO.write(bufferedImage, FileFormat, codeImgFile); |
|
|
|
|
inputFile = new FileInputStream(codeImgFile); |
|
|
|
|
byte[] bytes = new byte[(int) codeImgFile.length()]; |
|
|
|
|
inputFile.read(bytes); |
|
|
|
|
return Base64.getEncoder().encodeToString(bytes).replaceAll("\r|\n", ""); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
}finally { |
|
|
|
|
inputFile.close(); |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 条形码 |
|
|
|
|
* @param content |
|
|
|
@ -183,6 +215,37 @@ public class QRCodeUtil {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return bufferedImage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static String getBufferedImageToBase64(String content) throws WriterException, IOException { |
|
|
|
|
|
|
|
|
|
//com.google.zxing.EncodeHintType:编码提示类型,枚举类型
|
|
|
|
|
Map<EncodeHintType, Object> hints = new HashMap(); |
|
|
|
|
|
|
|
|
|
//EncodeHintType.CHARACTER_SET:设置字符编码类型
|
|
|
|
|
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); |
|
|
|
|
|
|
|
|
|
//EncodeHintType.ERROR_CORRECTION:设置误差校正
|
|
|
|
|
//ErrorCorrectionLevel:误差校正等级,L = ~7% correction、M = ~15% correction、Q = ~25% correction、H = ~30% correction
|
|
|
|
|
//不设置时,默认为 L 等级,等级不一样,生成的图案不同,但扫描的结果是一样的
|
|
|
|
|
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M); |
|
|
|
|
|
|
|
|
|
//EncodeHintType.MARGIN:设置二维码边距,单位像素,值越小,二维码距离四周越近
|
|
|
|
|
hints.put(EncodeHintType.MARGIN, 0); |
|
|
|
|
|
|
|
|
|
MultiFormatWriter multiFormatWriter = new MultiFormatWriter(); |
|
|
|
|
BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE, CODE_WIDTH, CODE_HEIGHT, hints); |
|
|
|
|
BufferedImage bufferedImage = new BufferedImage(CODE_WIDTH, CODE_HEIGHT, BufferedImage.TYPE_INT_BGR); |
|
|
|
|
for (int x = 0; x < CODE_WIDTH; x++) { |
|
|
|
|
for (int y = 0; y < CODE_HEIGHT; y++) { |
|
|
|
|
bufferedImage.setRGB(x, y, bitMatrix.get(x, y) ? FRONT_COLOR : BACKGROUND_COLOR); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
ByteArrayOutputStream bos = new ByteArrayOutputStream(); |
|
|
|
|
ImageIO.write(bufferedImage,".png",bos); |
|
|
|
|
byte[] byteArray = bos.toByteArray(); |
|
|
|
|
return Base64.getEncoder().encodeToString(byteArray); |
|
|
|
|
} //核心代码-生成二维码
|
|
|
|
|
public static BufferedImage getBufferedImageMatrix(String content) throws WriterException { |
|
|
|
|
|
|
|
|
|