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?
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?
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();