How to Split a single PDF document intomultiple PDF documents in VB.Net?

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default How to Split a single PDF document intomultiple PDF documents in VB.Net?

    Hi,
    I am using Adobe Acrobat Standard 7.I just need to split a huge pdf file into multiple pdf files.This needs to be done in VB.Net.Do we have any methods in Acrobat for doing this?Thanks in advance!
    Ruben_Gerald@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. split single pdf doc to many based on line/column
      Can anyone share with me a method of splitting a single PDF document into multiple PDF documents based a value in a particular location(i.e.,...
    2. single document to cover an installation/upgrade?
      I run a webserver with ColdFusion. I have to say in advance, this is NOT my only job function, so I can't totally immerse myself in ColdFusion --...
    3. How do I break a large document into smaller documents
      Hi, Using InDesign cs, if I have one document that is 200 pages long and I would like to break it into separate chapters and then recombine it into...
    4. Converting a multiple page PDF to a single TIFF document
      www.imagemagick.org also provides exellent, free, tools for working with tiff files etc
    5. opening multiple images in a single document
      Is there any way of automating the task of opening several different images in one document?
  3. #2

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    Sure. Download the Acrobat SDK and look at the samples...
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    I am doing pretty much the same thing. But what I would like to do is split a pdf into multiple pdfs and name each output pdf according to the name of the bookmark. (The output pdfs could be 1 or more pages...)

    Have looked through the SDK documentation but unliess I skipped over something I have not found a way to do this. Any ideas?
    CSun@adobeforums.com Guest

  5. #4

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?



    Have looked through the SDK documentation but unliess I skipped over something
    I have not found a way to do this.




    You must have skipped over both the IAC and JavaScript API references then. ;)

    Both IAC and JavaScript have "insert pages" methods that will let you insert specific pages from one document into another. They also both have "create" methods that let you create a blank PDF.

    So you could create a blank document, and then insert whatever pages you wanted based on whatever factors you wanted from your source document into that new document.
    PDL@adobeforums.com Guest

  6. #5

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    I can split the document and create pdfs just fine. The problem I'm having is reading information from the source pdf.

    The source pdf is a master account list. I'd like to break it apart by account #. From what I can tell there is no metadata on each page to identify the account. However each account is bookmarked. If I could somehow link pages to bookmarks or bookmarks to pages that would suit me fine. But from what I can tell the only way to get any info from a bookmark is to know the title.
    CSun@adobeforums.com Guest

  7. #6

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    You can execute a bookmark to have it take you the starting page, grab it's number, then go to the next bookmark and grab it's number...
    Leonard_Rosenthol@adobeforums.com Guest

  8. #7

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    Can I move through bookmarks sequentially? I thought the only way to retrieve a bookmark was to “GetByTitle”. In which case I would have to know the title of the bookmark. Which I may not know if there is a new account…
    CSun@adobeforums.com Guest

  9. #8

    Default Re: How to Split a single PDF document intomultiple PDF documents in VB.Net?

    yes, you can move through them sequentially. there is a sample in the SDK.
    Leonard_Rosenthol@adobeforums.com Guest

  10. #9

    Default How to Split a single PDF document intomultiple PDF documents in PHP?

    Is it possible to split a single PDF Document into multiple PDF Documents using php?
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139