gpt4 book ai didi

java - iText - 图像破坏单元格对齐

转载 作者:行者123 更新时间:2023-12-02 04:34:18 24 4
gpt4 key购买 nike

我有一个表,其中第一行中只有图像,第二行中只有图像的描述。我通过创建一个具有图像数量(列)大小的表格来处理此问题,然后用大小为 1 的表格填充单元格(2 行 = 第一行图像,第二行描述)。将第一行的单元格对齐设置为居中后,第二行将不会应用对齐并且描述保持在左侧...这是一个错误吗?

    Integer size = filepathArray.length;
PdfPTable pdfPTable = new PdfPTable(size);
for (int i = 0; i < size; i++) {
PdfPTable inner = new PdfPTable(1);
try {
PdfPCell image = new PdfPCell();
PdfPCell description = new PdfPCell();
PdfPCell cell = new PdfPCell();
image.setImage(Image.getInstance(getImageAsByteArray(filepathArray[i])));
image.setFixedHeight(32);
image.setBorder(Rectangle.NO_BORDER);
image.setHorizontalAlignment(Element.ALIGN_CENTER);
inner.addCell(image);
description.addElement(new Chunk(filepathArray[i], FontFactory.getFont("Arial", 8)));
description.setBorder(Rectangle.NO_BORDER);
description.setHorizontalAlignment(Element.ALIGN_CENTER);
inner.addCell(description);
cell = new PdfPCell();
cell.addElement(inner); // needed to actually remove the border from the cell which contains the inner table because tables have no setter for the border
cell.setBorder(Rectangle.NO_BORDER);
pdfPTable.addCell(cell);
} catch (Exception e) {
}
}
pdfPTable.setHorizontalAlignment(Element.ALIGN_LEFT);

结果:图片居中,文字不居中,没办法,我什么都试过了!另外 addElement() 会删除所有先前设置的对齐方式(表格和单元格元素,这是一个错误吗?),因此我必须在将内容添加到单元格或表格后设置对齐方式。

最佳答案

这是错误的:

PdfPCell description = new PdfPCell();
description.addElement(new Chunk(filepathArray[i], FontFactory.getFont("Arial", 8)));
description.setHorizontalAlignment(Element.ALIGN_CENTER);

这是错误的,因为您正在混合文本模式:

PdfPCell description = new PdfPCell(new Phrase(filepathArray[i], FontFactory.getFont("Arial", 8)));
description.setHorizontalAlignment(Element.ALIGN_CENTER);

使用复合模式:

PdfPCell description = new PdfPCell();
Paragraph p = new Paragraph(filepathArray[i], FontFactory.getFont("Arial", 8));
p.setAlignment(Element.ALIGN_CENTER);
description.addElement(p);

似乎您已经尝试了所有方法,但没有使用文档中解释的方法;-)

关于java - iText - 图像破坏单元格对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31027600/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com