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

Asked

Viewed 245 times

3

I would like to know if it is possible to use the setAbsolutePosition to add an image to the second page of the document built in iTextSharp PDF. if possible, as?

1 answer

4


The setAbsolutePosition you arrow the position of the image.

To add the image to 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();
  • 1

    Thanks, it worked.

  • 1

    @Totallyuncool, be sure to accept the answer as it accepts it encourages the staff to continue answering. If you doubt how to do consult here

  • 1

    Thanks for the notice and for the edits, my first question and I had not picked up very well the schemes of asking question.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.