Search found 89 matches

by delbeke
Thu Jun 21, 2018 9:17 am
Forum: PDF
Topic: Insert a blank page
Replies: 2
Views: 2977

Re: Insert a blank page

Hi MetalCoder. Loïc ask me to create a sample for you. Regrettably I no longer have a vb6 installed, so i have make this sample with a text editor and of course, I can't build the exe file. Private Sub Form_Load() Dim oLicenseManager As New LicenseManager oLicenseManager.RegisterKEY ("XXX"...
by delbeke
Mon Jun 11, 2018 8:45 am
Forum: PDF
Topic: Replace Image in PDF without changing text
Replies: 1
Views: 3657

Re: Replace Image in PDF without changing text

Hi Matthew

There is a function to do that : ReplaceImage,

see : https://www.gdpicture.com/guides/gdpicture/web ... Image.html

Hope this help.
Best regards.

Jean-Luc
by delbeke
Thu May 31, 2018 9:19 am
Forum: PDF
Topic: How to insert new page at specific page number?
Replies: 1
Views: 2484

Re: How to insert new page at specific page number?

Hi Bote You can use the method InsertPage to insert a blank page at a specific page number. see : https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPicture.NET.14~GdPicture14.GdPicturePDF~InsertPage.html To clone a page, you can use the method Clonepage see : https://www.gdpicture.com/guide...
by delbeke
Thu May 10, 2018 8:27 am
Forum: PDF
Topic: Modify signed PDF without compromising the signature
Replies: 7
Views: 123543

Re: Modify signed PDF without compromising the signature

Hi avalon86 The minimum to change a signed pdf without invalidating the signature, is to use an incremental save. use the SaveToFileInc function for example see : https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPicture.NET.14~GdPicture14.GdPicturePDF~SaveToFileInc.html Hope this help Jean...
by delbeke
Fri Mar 30, 2018 9:20 am
Forum: PDF
Topic: Converting Letter PDF to 11x17 PDF Booklet
Replies: 5
Views: 4630

Re: Converting Letter PDF to 11x17 PDF Booklet

Hi blewis.

You are very welcome.
Please, make me a return.

Best regards
Jean-Luc
by delbeke
Thu Mar 29, 2018 8:56 am
Forum: PDF
Topic: Converting Letter PDF to 11x17 PDF Booklet
Replies: 5
Views: 4630

Re: Converting Letter PDF to 11x17 PDF Booklet

Hi blewis. Now i understand whar you want to do. You must use the DrawPage function https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPicture.NET.14~GdPicture14.GdPicturePDF~DrawPage.html You open the original pdf and you create a new one You can then create a new 11x17" page in the ne...
by delbeke
Wed Mar 28, 2018 9:41 am
Forum: PDF
Topic: Converting Letter PDF to 11x17 PDF Booklet
Replies: 5
Views: 4630

Re: Converting Letter PDF to 11x17 PDF Booklet

Hi blewis. What you want to do is not clear for me but I can point you to some usefull functions. ResizePage https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPicture.NET.14~GdPicture14.GdPicturePDF~ResizePage.html ScalePage https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPicture...
by delbeke
Tue Mar 20, 2018 9:31 am
Forum: PDF
Topic: PDF/A with selectable text
Replies: 1
Views: 2548

Re: PDF/A with selectable text

Hi Snuffchen Only the convertion pdf to pdf/a can only be done through a rasterisation. Creating a pdf/a from scratch can be done with all the possibilties of GdPicture. You must just use NewPdf(Conformance) when creating the pdf. see : https://www.gdpicture.com/guides/gdpicture/Overview.html#GdPict...
by delbeke
Tue Mar 13, 2018 12:34 pm
Forum: PDF
Topic: Is the PDF attachment code buggy?
Replies: 3
Views: 3601

Re: Is the PDF attachment code buggy?

Hi mattewan

Without the final PDF, it will be difficult to find what is the problem.
Can you make a test storing them according the alphabetical order, please.
image001.jpg first and then Text.htm

Best regards.
Jean-Luc
by delbeke
Mon Mar 12, 2018 6:10 pm
Forum: PDF
Topic: Is the PDF attachment code buggy?
Replies: 3
Views: 3601

Re: Is the PDF attachment code buggy?

Hi mattewan.

Can you transmit the filenames of the attachments when the problem occurs.
Perhaps you can try

if (oPDF.EmbedFile(email.Attachments.newFilename + i.ToString(), "")

Hope this help
Best regards.
Jean-Luc
by delbeke
Thu Feb 22, 2018 8:01 pm
Forum: PDF
Topic: DrawWrappedText line spacing
Replies: 1
Views: 2546

Re: DrawWrappedText line spacing

Hi tboser.

I am afraid there is no way. The line height is the computed through the font height.

Hope this help.
Best regards.
Jean-Luc
by delbeke
Wed Nov 15, 2017 11:21 am
Forum: PDF
Topic: Most reliable way to insert an existing PDF with multiple pages into another PDF
Replies: 3
Views: 4310

Re: Most reliable way to insert an existing PDF with multiple pages into another PDF

Hi sbarlow I think about creating a brand new pdf and then clone wanted pages in it at will. All methods seem to equivalent because merging use internally the clone page function. The method 2 is original because it do not use clone page. Perhaps the size of the final pdf may be lower, not sure of t...
by delbeke
Thu Oct 12, 2017 6:30 pm
Forum: Example requests & Code samples
Topic: PDF - How to make a text fill a rectangle
Replies: 4
Views: 8306

Re: PDF - How to make a text fill a rectangle

Hi Reisrf

You are welcome
Thanks for the return.
Best regards
Jean-Luc
by delbeke
Tue Oct 10, 2017 10:41 am
Forum: Example requests & Code samples
Topic: PDF - How to make a text fill a rectangle
Replies: 4
Views: 8306

Re: PDF - How to make a text fill a rectangle

Hi Reisfr here is a small snippet with 2 methods to achieve the problem Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Dim oGdPicturePDF As New GdPicturePDF() Dim status As GdPictureStatus = oGdPicturePDF.NewPDF() If status = GdPictureStatus.OK Then oGdPicturePDF.N...