我正在使用itext在java中创建PDF。我可以使用java将图像写入PDF。如何确保图像的大小与将其写入PDF之前的大小相同。
e.g。如果图像大小为32 X 32像素。它应该只是在生成的pdf中。
以下是我的代码。
PdfPTable table = new PdfPTable(1);
Image img = Image.getInstance(photoLocation);
PdfPCell cell = new PdfPCell(img, false);
cell.setPadding(8);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setHorizontalAlignment(Element.ALIGN_MIDDLE);
table.addCell(cell);