How to add image on second page with setAbsolutePosition iTextSharp C #?

3

I wonder if you can use setAbsolutePosition to add an image on the second page of the document built in iTextSharp PDF. if possible, how?

    
asked by anonymous 08.09.2016 / 16:23

1 answer

4

The setAbsolutePosition you arrow the position of the image.

To add the image on the second page of the document use: NewPage() .

Document document = new Document(PageSize.A4.Rotate(), 20, 20, 20, 20);
// O que você quer na primeira página
document.NewPage();
    
09.09.2016 / 14:55