我正在使用iText API生成条形码,当它是线条码时,一切看起来都很好,当它是2D条形码然后条形码作为图像放入pdf文档时,因此降低了低分辨率打印机上条形码的质量,无法扫描条码。以下是代码
BarcodePDF417 pdf417 = new BarcodePDF417();
String text = "BarcodePDF417 barcode";
pdf417.setText(text);
Image img = pdf417.getImage();
document.add(img);
现在我正在寻找绘制条形码的替代方案,我找到了可能有利于此要求的palceBarcode方法。
我在itext源代码中看到了BarcodePDF417类中的以下代码,无法找到如何使用它的方式
public void placeBarcode(PdfContentByte cb, BaseColor foreground, float moduleHeight, float moduleWidth) {
paintCode();
int stride = (bitColumns + 7) / 8;
cb.setColorFill(foreground);
for (int k = 0; k < codeRows; ++k) {
int p = k * stride;
for (int j = 0; j < bitColumns; ++j) {
int b = outBits[p + j / 8] & 0xff;
b <<= j % 8;
if ((b & 0x80) != 0) {
cb.rectangle(j * moduleWidth, (codeRows - k - 1) * moduleHeight, moduleWidth, moduleHeight);
}
}
}
cb.fill();
}
有人可以建议使用上述方法吗?
我编写了如下代码,但整个页面都变黑了。
Rectangle pageSize = new Rectangle(w * 72, h * 72);
Document doc = new Document(pageSize, 1f, 1f, 1f, 1f);
PdfWriter writer = PdfWriter.getInstance(doc, getOutputStream());
doc.open();
PdfContentByte cb = writer.getDirectContent();
BarcodePDF417 pf = new BarcodePDF417();
pf.setText("BarcodePDF417 barcode");
pf.getImage();
Rectangle rc = pf.getBarcodeSize();
pf.placeBarcode(cb, BaseColor.BLACK, rc.getHeight(), rc.getWidth());
doc.close();
答案 0 :(得分:2)
请查看BarcodePlacement示例。在此示例中,我们创建了三个PDF417条形码:
PdfContentByte cb = writer.getDirectContent();
Image img = createBarcode(cb, "This is a 2D barcode", 1, 1);
document.add(new Paragraph(
String.format("This barcode measures %s by %s user units",
img.getScaledWidth(), img.getScaledHeight())));
document.add(img);
img = createBarcode(cb, "This is NOT a raster image", 3, 3);
document.add(new Paragraph(
String.format("This barcode measures %s by %s user units",
img.getScaledWidth(), img.getScaledHeight())));
document.add(img);
img = createBarcode(cb, "This is vector data drawn on a PDF page", 1, 3);
document.add(new Paragraph(
String.format("This barcode measures %s by %s user units",
img.getScaledWidth(), img.getScaledHeight())));
结果在外面看起来像这样:
一个特定的条形码在内部看起来像这样:
我在视图中添加以显示2D条形码未添加为光栅图像(就像您尝试过的初始方法一样)。它是由一系列小矩形组成的矢量图像。您可以通过查看barcode_placement.pdf文件来自行检查。
请不要因为我使用Image
对象而感到困惑。如果您查看createBarcode()
方法,可以看到Image
实际上是矢量图像:
public Image createBarcode(PdfContentByte cb, String text,
float mh, float mw) throws BadElementException {
BarcodePDF417 pf = new BarcodePDF417();
pf.setText("BarcodePDF417 barcode");
Rectangle size = pf.getBarcodeSize();
PdfTemplate template = cb.createTemplate(
mw * size.getWidth(), mh * size.getHeight());
pf.placeBarcode(template, BaseColor.BLACK, mh, mw);
return Image.getInstance(template);
}
传递给placeBarcode()
方法的高度和宽度,定义绘制的小矩形的高度和宽度。如果您查看 inside 视图,您可以看到例如:
0 21 3 1 re
这是一个x = 0,y = 21,宽度3和高度为1的矩形。
当您询问条形码的大小时,您将获得将要绘制的矩形数。因此,条形码的尺寸为:
Rectangle size = pf.getBarcodeSize();
float width = mw * size.getWidth();
float height = mh * size.getHeight();
如果size
和mw
等于mh
,则假设1
是用户单位的尺寸是正确的。
我使用这些值来创建PdfTemplate
实例,并将条形码绘制到此 Form XObject 。大多数情况下,使用Image
类比使用PdfTemplate
更容易,因此我将PdfTemplate
包裹在Image
内。
然后,我可以将此Image
添加到文档中,就像任何其他图像一样。与普通图像的主要区别在于,此图像是矢量图像。