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" <[EMAIL PROTECTED]>
To: <itext-questions@lists.sourceforge.net>
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@lists.sourceforge.net
> 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@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to