使用 java 创建条形码并将其绘制到现有图像

create barcode and draw it to an existing image using java

我尝试使用 itext 但我找不到将条形码打印到图像的方法,我只找到了将条形码打印到 PDF 的示例,我有一个图像信用卡,所以我需要在图像上绘制条形码(卡号),有人在 itext 或使用另一个库的另一个示例中有如何做到这一点的示例吗?,

提前致谢。

解法:

基本上,您想绘制条形码并创建一个 .png。如果是这样的话 Buffered Image API 应该可以解决问题

例子

BufferedImage bufferedImage = new        
BufferedImage(200,200,BufferedImage.TYPE_INT_RGB);
Graphics g = bufferedImage.getGraphics();

g.fillRect(0,0, 20,20); // draws barcode

写入 .png 的示例

try {
    // retrieve image
    BufferedImage bi = getMyImage();
    File outputfile = new File("saved.png");
    ImageIO.write(bi, "png", outputfile);
} catch (IOException e) {
    ...
}

它创建图像,然后将其写入文件。

我找到了解决方案,希望这对其他人有帮助,感谢大家

使用 itext 创建条形码:

Barcode39 barcode = new Barcode39();
barcode.setCode("7001390283546141");
barcode.setBarHeight(40);

Image img = barcode.createAwtImage(Color.BLACK, Color.WHITE);

BufferedImage outImage = new BufferedImage(img.getWidth(null), img.getHeight(null),BufferedImage.TYPE_INT_RGB);

outImage.getGraphics().drawImage(img, 0, 0, null);
ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
ImageIO.write(outImage, "png", bytesOut);
bytesOut.flush();
byte[] pngImageData = bytesOut.toByteArray();
FileOutputStream fos = new FileOutputStream("C:/results/barcode.jpg");
fos.write(pngImageData);
fos.flush();
fos.close();

创建条形码图像后

final BufferedImage image1 = ImageIO.read(new File("C:/results/image.jpg"));
final BufferedImage image2 = ImageIO.read(new File("C:/results/barcode.jpg"));

Graphics g = image2.getGraphics();
g.drawImage(image2, 0, 0, image2.getWidth(), image2.getHeight(), null);
g.dispose();

final int xMax = image1.getWidth() - image2.getWidth();
final int yMax = image1.getHeight() - image2.getHeight();

Graphics g2 = image1.getGraphics();
Random random = new Random();
int x = random.nextInt(xMax);
int y = random.nextInt(yMax);

g2.drawImage(image2, x, y, null);
g2.dispose();

File outputfile = new File("C:/results/final.jpg");
ImageIO.write(image1, "png", outputfile);