如何使用带有 barcode4j 库的 pdfbox(1.8.12) 将 Code128 条码图像添加到现有 pdf 中?

How to add Code128 Barcode image to existing pdf using pdfbox(1.8.12) with barcode4j library?

我正在尝试从 barcode4j 库(code128bean,其他条码 bean)生成条码并尝试添加到现有的 pdf 中。使用以下代码在本地创建条形码图像。

//Create the barcode bean
Code128Bean code128Bean = new Code128Bean();
final int dpi = 150;
code128Bean.setModuleWidth(UnitConv.in2mm(1.0f / dpi)); //makes the narrow bar 
//width exactly one pixel
//bean.setCodeset(2);
code128Bean.doQuietZone(false);

//Open output file
File outputFile = new File("D:/barcode4jcod128.png"); //I dont want to create it
OutputStream code128Stream = new FileOutputStream(outputFile);
try {
    //Set up the canvas provider for monochrome PNG output 
    BitmapCanvasProvider canvas1 = new BitmapCanvasProvider(
            code128Stream, "image/x-png", dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0);

    //Generate the barcode
    code128Bean.generateBarcode(canvas1, "123456");

    //Signal end of generation
    canvas1.finish();
} finally {
    code128Stream.close();
}
  1. 我的问题是我不想创建图像并将其保存在本地文件系统中,然后将其作为图像添加到 pdf。我只想动态创建我的意思是动态创建条形码图像并将其添加到 pdf 中。
  2. 如何将页面大小(如 PDPage.PAGE_SIZE_A4)设置为我从 catalog.getAllPages() 方法检索到的现有 PDPages,如 (List<PDPage> pages = catalog.getAllPages();)

有人可以帮忙吗?

非常感谢您对 Tilman 的帮助。这是我所做的

public static BufferedImage geBufferedImageForCode128Bean(String barcodeString) {
    Code128Bean code128Bean = new Code128Bean();
    final int dpi = 150;
    code128Bean.setModuleWidth(UnitConv.in2mm(1.0f / dpi)); //makes the narrow bar 
    code128Bean.doQuietZone(false);
    BitmapCanvasProvider canvas1 = new BitmapCanvasProvider(
        dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0
    );
    //Generate the barcode
    code128Bean.generateBarcode(canvas1, barcodeString);
    return canvas1.getBufferedImage();
}

// main code
PDDocument finalDoc = new PDDocument();
BufferedImage bufferedImage = geBufferedImageForCode128Bean("12345");
PDXObjectImage pdImage = new PDPixelMap(doc, bufferedImage);
PDPageContentStream contentStream = new PDPageContentStream(
    finalDoc, pdPage, true, true, true
);
contentStream.drawXObject(pdImage, 100, 600, 50, 20);
contentStream.close();
finalDoc.addPage(pdPage);
finalDoc.save(new File("D:/Test75.pdf"));

正在创建条形码,但它是以垂直方式创建的。我想以水平方式查看。再次感谢你的帮助。

1) 在保留内容的同时将图像添加到现有页面:

BitmapCanvasProvider canvas1 = new BitmapCanvasProvider(
    dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0
);
code128Bean.generateBarcode(canvas1, "123456");
canvas1.finish();
BufferedImage bim = canvas1.getBufferedImage();

PDXObjectImage img = new PDPixelMap(doc, bim);
PDPageContentStream contents = new PDPageContentStream(doc, page, true, true, true);
contents.drawXObject(img, 100, 600, bim.getWidth(), bim.getHeight());
contents.close();

2) 在现有页面上将媒体框设置为 A4:

page.setMediaBox(PDPage.PAGE_SIZE_A4);