Search found 4 matches

by Massimo
Wed Aug 07, 2019 12:18 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: insert page number in PDF and little image
Replies: 5
Views: 2533

Re: insert page number in PDF and little image

Thanks a lot ! with this method the document size is smaller :-) Another two advice : I need to insert a image, for every page, that rappresent a stamp, and a page blank with annotation, is it correct this way ? Because in document with 25 page , 1200KB, if I insert a image (18 kb, gif) and PDF page...
by Massimo
Mon Aug 05, 2019 8:07 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: insert page number in PDF and little image
Replies: 5
Views: 2533

Re: insert page number in PDF and little image

at the moment I solved in this way... is the best way ? Dim stream As System.IO.Stream = System.IO.File.Open(PDFName, System.IO.FileMode.Open) Dim document As PdfDocument = PdfDocumentController.OpenDocument(stream) For p As Integer = 1 To document.Pages.Count - 1 Using g As PdfGraphics = PdfGraphic...
by Massimo
Mon Aug 05, 2019 6:14 pm
Forum: VintaSoft PDF .NET Plug-in Discussions
Topic: insert page number in PDF and little image
Replies: 5
Views: 2533

insert page number in PDF and little image

Hi, I need to insert a page number in a pdf file. With this code I can to insert page number in bottom left position but I don't understant how to insert in bottom right. I can't figure out how to transform the value of PDFPage.Size.Height and PDFPage.Size.Width in coordinate to draw text or image i...