Java Mailing List Archive

http://www.junlu.com/

Home » Home (12/2007) » iText »

Re: [iText-questions] add a image at right bottom in the last page

max bertolini

2006-08-23

Replies:

Hi Erik,

you could try to do something similar of:

    try {
       PdfReader reader = new PdfReader("input.pdf");
       PdfStamper stamp = new PdfStamper(reader, new
FileOutputStream("output.pdf"));
       PdfContentByte content =
stamp.getOverContent(reader.getNumberOfPages());

       Image image = Image.getInstance("printr01.gif");

       image.setAbsolutePosition(450,10);
       content.addImage(image);

       stamp.close();
       reader.close();

    } catch (Exception iOE) {
       System.out.println("Exception: " + iOE);
    }

Regards
  Max

----- Original Message -----
From: "Eric Chow" <eric138@(protected)>
To: <itext-questions@(protected)>
Sent: Wednesday, August 23, 2006 11:54 AM
Subject: [iText-questions] add a image at right bottom in the last page


> Hello,
>
> How can I add a image at right bottom in the last page ?
>
>
> In fact, I want to sign a PDF with a certificate and show a GIF(
> handwriting signature) into the right botom of the last page. How can
> do this?
>
> Any example ?
>
>
> Best regards,
> Eric
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> iText-questions mailing list
> iText-questions@(protected)
> https://lists.sourceforge.net/lists/listinfo/itext-questions
>


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions@(protected)
https://lists.sourceforge.net/lists/listinfo/itext-questions
©2008 junlu.com - Jax Systems, LLC, U.S.A.