使用 ITEXT 作为字段标识符在 PDF 中填写条码 PDF-417

Fill Barcode PDF-417 in PDF using ITEXT for a field identifier

我需要生成一个 PDF417 条形码并将其填入我使用 ITEXT API 的已归档标识符的 PDF 字段中。

我用过几种方法比如

方式一

      PdfContentByte cb = stamper.getUnderContent(1);
      BarcodePDF417 pf = new BarcodePDF417();
      pf.setText("Some text value for encoding");
      Rectangle size = pf.getBarcodeSize();

      PdfTemplate template = cb.createTemplate(size.getWidth(), size.getHeight());
      pf.placeBarcode(template, BaseColor.BLACK, 5, 5);
      Image image = Image.getInstance(template);
      image.setAbsolutePosition(35f, 40f);
      cb.addImage(image);

这里的问题是条形码的大小不正确,并且没有放置在正确的位置。

方式二

  BarcodePDF417 barcode = new BarcodePDF417();
  barcode.setText("Some text value for encoding");
  barcode.placeBarcode(cb, BaseColor.BLACK, 5, 5);

这里也是一样的问题,条码大小不对,位置不对

我知道我需要专门放置条形码的字段 IDENTIFIER。 有没有一种方法可以获取单元格并生成该单元格的精确大小的条形码图像并将其放入?

感谢大家的帮助!

我终于可以实现了。我的密码是

        PdfContentByte cb = stamper.getUnderContent(i);// i being the pdf page number.
        BarcodePDF417 barcode = new BarcodePDF417();
        barcode.setErrorLevel(5);
        barcode.setCodeColumns(30);
        barcode.setCodeRows(5);
        barcode.setOptions(BarcodePDF417.PDF417_FIXED_RECTANGLE);
        barcode.setText(<Byte[] - aka byte array of the text that needs to be encoded.>);
        Rectangle rect = barcode.getBarcodeSize();

        PdfTemplate template = cb.createTemplate(2 + rect.getWidth(), 2 + rect.getHeight());

        barcode.placeBarcode(template, BaseColor.BLACK, 1, 1);

        Image image = Image.getInstance(template);
        image.scaleAbsolute(535, 135);
        image.setAbsolutePosition(40f, 40f);
        cb.addImage(image);