-4

PDF ファイルにレターヘッド アイコンを追加するにはどうすればよいですか? テキストファイルから値を出力するだけです。

    try{
    Document document = new Document();
    PdfWriter.getInstance(document, new FileOutputStream("Payment.pdf"));
    document.open();
    document.add(new Paragraph("Payment Information", FontFactory.getFont(FontFactory.COURIER,18, Font.BOLD)));
    document.add(new Paragraph(" "));
    document.add(new Paragraph("Customer ID:  "+value1));
    document.add(new Paragraph("Name:  "+value2));
    document.add(new Paragraph("Date Applied:  "+value3));
    document.add(new Paragraph("Months:  "+value4));
    document.add(new Paragraph("Amount:  "+value5));
    document.add(new Paragraph("Interest:  "+value6));
    document.add(new Paragraph("Monthly Payment:  "+value7));
    document.add(new Paragraph("Total:  "+value8));
    document.close();
    JOptionPane.showMessageDialog(null, "Record Saved");
    }
    catch(Exception e){
    JOptionPane.showMessageDialog( null, e);
    }
4

2 に答える 2

2

を使用して、画像またはアイコンを pdf に追加しますdocument.add(image)。次のリンクで例を示します。

Itext 画像を PDF に追加 / 挿入

上記の例では、IText API を使用しています。

于 2012-10-15T03:59:38.513 に答える