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?
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?
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();
Browser other questions tagged c# itextsharp
You are not signed in. Login or sign up in order to post.
Thanks, it worked.
– TotallyUncool
@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
– Marco Souza
Thanks for the notice and for the edits, my first question and I had not picked up very well the schemes of asking question.
– TotallyUncool