This content has been marked as final.
Show 4 replies
-
1. Re: How to insert a blank page to a existing pdf using VB.Net
Test Screen Name Mar 19, 2013 6:13 AM (in response to VKP1)There's no specific API, but you can use functions in the Acrobat SDK to copy pages from one document to another. So you can insert a page which is blank that way.
-
2. Re: How to insert a blank page to a existing pdf using VB.Net
lrosenth Mar 19, 2013 6:32 AM (in response to Test Screen Name)You can also create a new PDF with an empty page quite easily and then copy from there.
-
3. Re: How to insert a blank page to a existing pdf using VB.Net
khkremer Mar 19, 2013 6:34 AM (in response to lrosenth)You can also use the JavaScript bridge (the JSO object) and then add a
blank page via the Doc.newPage() method.
Most of the API functions available in the JavaScript API are available to
e.g. VB programs via the JSO object.
Karl Heinz Kremer
PDF Acrobatics Without a Net
PDF Software Development, Training and More...
-
4. Re: How to insert a blank page to a existing pdf using VB.Net
VKP1 Mar 19, 2013 11:44 PM (in response to khkremer)Thanks for the quick replies.
jso.GetType().InvokeMember("newPage", BindingFlags.InvokeMethod, Nothing, jso, Nothing)
This worked for me




