iText - 图像打破细胞对齐

时间:2015-06-24 13:13:24

标签: java pdf itext

我有一张表,第一行中只有图像,第二行只有图像的描述。我通过创建一个包含图像数量大小(列)的表来处理这个,然后用大小为1的表填充单元格(2行=第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()删除所有先前设置的对齐(表格和单元格元素,这是一个错误吗?)所以我必须在将内容添加到单元格或表格后设置对齐。

1 个答案:

答案 0 :(得分:2)

这是错误的:

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);

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