使用iText在PDF页脚中的图像上的文本

时间:2014-04-01 17:46:54

标签: java pdf itext footer

我正在尝试在PDF页脚中添加图片和页面。我的问题是我无法在图像上显示页码。以下是我的代码。

public void onEndPage(PdfWriter writer, Document document) {
    int pageNo=writer.getPageNumber()-this.pageNumber+1;
    Integer dummy=pageNo;
    String pageNoString=dummy.toString();
    PdfContentByte cbb = writer.getDirectContent();

    try {
        ColumnText column = new ColumnText(cbb);
        PdfPTable newtable = new PdfPTable(1);
        newtable.setTotalWidth(530);
        newtable.setLockedWidth(true);
        Image img = Image.getInstance("C:/Users/sathesh/Desktop/Warfiles/PDFFiles/Footer.png");

        PdfPCell imageCell=new PdfPCell();
        PdfPCell textCell=new PdfPCell(new Paragraph("Disclaimer text",new Font(Font.FontFamily.COURIER, 6, Font.NORMAL)));
        imageCell.setBorder(Rectangle.NO_BORDER);
        textCell.setBorder(Rectangle.NO_BORDER);
            imageCell.setImage(img);
            ColumnText.showTextAligned(cbb,
                    Element.ALIGN_LEFT, new Phrase(pageNoString,FontFactory.getFont(FontFactory.COURIER,12,new BaseColor(0xFF, 0x00, 0x00))), 50, 95, 0);
            newtable.addCell(imageCell);
        newtable.addCell(textCell);
        column.addElement(newtable);
        column.setSimpleColumn(30, 130, 570, 45,5f, Element.ALIGN_RIGHT | Element.ALIGN_BOTTOM |Element.ALIGN_JUSTIFIED_ALL);
        }
        column.go();
        catch(Exception e)
        {
              e.printStackTrace();
        }
}

1 个答案:

答案 0 :(得分:1)

你有:

ColumnText.showTextAligned(cbb, Element.ALIGN_LEFT, new Phrase(pageNoString,FontFactory.getFont(FontFactory.COURIER,12,new BaseColor(0xFF, 0x00, 0x00))), 50, 95, 0);
newtable.addCell(imageCell);
newtable.addCell(textCell);
column.addElement(newtable);
column.setSimpleColumn(30, 130, 570, 45,5f, Element.ALIGN_RIGHT | Element.ALIGN_BOTTOM |Element.ALIGN_JUSTIFIED_ALL);
column.go();

首先添加文本,然后用包含图像的表格覆盖文本,因此图像覆盖文本。

正如我在评论中所说,你应该使用基本逻辑并试试这个:

newtable.addCell(imageCell);
newtable.addCell(textCell);
column.addElement(newtable);
column.setSimpleColumn(30, 130, 570, 45,5f, Element.ALIGN_RIGHT | Element.ALIGN_BOTTOM |Element.ALIGN_JUSTIFIED_ALL);
column.go();
ColumnText.showTextAligned(cbb, Element.ALIGN_LEFT, new Phrase(pageNoString,FontFactory.getFont(FontFactory.COURIER,12,new BaseColor(0xFF, 0x00, 0x00))), 50, 95, 0);

现在首先添加包含图像的表格,然后将文本写在图像的顶部。