我现在有这个课程,它创建了一个带有QR码的图像,效果很好。
但是,当我使用此类通过向其提供新的String来创建另一个QR码时,第一个QR码会被绘制...
请帮忙!
有没有办法初始化Graphics2d或BufferedImage?

import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;

import javax.imageio.ImageIO;

import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;

public class QRCodeGenerator {

int size = 300;
String fileType = "jpg";

static String filePath = "QR.jpg";
static File myFile = new File(filePath);
Hashtable<EncodeHintType, ErrorCorrectionLevel> hintMap = new Hashtable<EncodeHintType, ErrorCorrectionLevel>();
QRCodeWriter qrCodeWriter = new QRCodeWriter();
BitMatrix byteMatrix = new BitMatrix(300, 300);
BufferedImage image;
Graphics2D graphics;

QRCodeGenerator(String myText) {

    try {
        hintMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
        byteMatrix = qrCodeWriter.encode(myText, BarcodeFormat.QR_CODE,
                size, size, hintMap);
        int width = byteMatrix.getWidth();
        image = new BufferedImage(width, width, BufferedImage.TYPE_INT_RGB);
        image.createGraphics();

        graphics = (Graphics2D) image.getGraphics();
        graphics.setColor(ColorsClass.colorBackground);
        graphics.fillRect(0, 0, width, width);
        graphics.setColor(ColorsClass.colorForeground);

        for (int i = 0; i < width; i++) {
            for (int j = 0; j < width; j++) {
                if (byteMatrix.get(i, j)) {
                    graphics.fillRect(i, j, 1, 1);
                }
            }
        }
        ImageIO.write(image, fileType, myFile);
        System.out.println(myText);
    } catch (WriterException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}


}

最佳答案

它似乎与您需要编写的myFile字段或图像文件的声明有关。

如以下链接中所述。您每次必须显式关闭和打开图像文件

您也可以尝试每次要创建2D图像(例如“ QR_1.jpg”,“ QR_2.jpg”)时使用不同的名称创建一个新文件,从而减少覆盖和丢失先前数据的可能性。

http://docs.oracle.com/javase/7/docs/api/javax/imageio/ImageIO.html

使用支持给定格式的任意ImageWriter将图像写入ImageOutputStream。图像从当前流指针开始写入ImageOutputStream,从该点开始覆盖现有的流数据(如果存在)。

写操作完成后,此方法不会关闭提供的ImageOutputStream;如果需要,调用者有责任关闭流。

关于java - 我无法动态生成QR码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32739477/

10-11 04:58