作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在创建一个生成 PDF 的系统。但是,我不能将两到三个图像放在一个单元格中。我试过循环它,但它有边界。我该怎么办?
最佳答案
请看ImagesInCell例子。它使用三个图像:
public static final String IMG1 = "resources/images/brasil.png";
public static final String IMG2 = "resources/images/dog.bmp";
public static final String IMG3 = "resources/images/fox.bmp";
这些是图像实例:
Image img1 = Image.getInstance(IMG1);
Image img2 = Image.getInstance(IMG2);
Image img3 = Image.getInstance(IMG3);
向单个单元格添加多个图像的最简单方法是多次使用 addElement
:
PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(50);
table.addCell("Different images, one after the other vertically:");
PdfPCell cell = new PdfPCell();
cell.addElement(img1);
cell.addElement(img2);
cell.addElement(img3);
table.addCell(cell);
document.add(table);
结果是这样的:
如您所见,图像已自动缩放以适合单元格的宽度。如果这不是您想要的,您必须改进您的问题,因为您只是声称您不能将三个图像添加到同一个单元格,而这个简单的例子证明恰恰相反。
也许你想要这样的东西:
在图片的第一行,我们使用与之前相同的 addElement()
方法,但我们将图片的宽度百分比更改为 20%:
cell = new PdfPCell();
img1.setWidthPercentage(20);
cell.addElement(img1);
img2.setWidthPercentage(20);
cell.addElement(img2);
img3.setWidthPercentage(20);
cell.addElement(img3);
table.addCell(cell);
在第二行的图像中,我们使用了不同的方法:我们将图像包装在 Chunk
对象中,这样我们就可以将它们并排放置:
Paragraph p = new Paragraph();
img1.scalePercent(30);
p.add(new Chunk(img1, 0, 0, true));
p.add(new Chunk(img2, 0, 0, true));
p.add(new Chunk(img3, 0, 0, true));
cell = new PdfPCell();
cell.addElement(p);
table.addCell(cell);
观察我缩放了第一张图片。如果该图像保持其原始大小,则这三张图像将无法并排放置。
将图像包装在 Chunk
中的好处是我们可以混合图像和文本:
p = new Paragraph("The quick brown ");
p.add(new Chunk(img3, 0, 0, true));
p.add(" jumps over the lazy ");
p.add(new Chunk(img2, 0, 0, true));
cell = new PdfPCell();
cell.addElement(p);
table.addCell(cell);
关于java - 如何在 iText 中的一个单元格中添加两个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33603296/
我是一名优秀的程序员,十分优秀!