Hallo, we use the PDF developer Version of the PDF Converter and PDF Creator. From our application we print lots of reports etc. After the printingjobs we have to split the PDF into several pages. Is there a way to split a PDF with the amyuni converter or creator in pages or extract some pages into another PDF ? For example there is a PDF with 100 pages and we want to extract or split page 5-10 and 15-16 etc. into two other PDFs.
i have heard and tried with the PDFsplit.exe but dont get the right syntax.
i also tried to think about a bad workaround with the creator: make a copy of PDF and use deletepage funktion (in creator) to delete all other pages.
There is no way to print the pages in own printjobs because of the performance and the time we spent to make a complete change in the print behaviour of our programm.
Thanks for a little help
Thomas
split PDF's into pages ?
Hello,
You can use the SplitXY function of CDINTFEx.Document to split the PDF document according to the customer names.
If you have on top of each page the name of the customer you can specify that the document
Here is how SplitXY works:
SplitXY("FileName",X position, Y position)
FileName: is a string containing the full path and name of the pdf file to be splitted.
X position: is the x position in of the text object containing the customer names
y position: is the y position in twips of the text object containing the customer names
Hope this helps,
You can use the SplitXY function of CDINTFEx.Document to split the PDF document according to the customer names.
If you have on top of each page the name of the customer you can specify that the document
Here is how SplitXY works:
SplitXY("FileName",X position, Y position)
FileName: is a string containing the full path and name of the pdf file to be splitted.
X position: is the x position in of the text object containing the customer names
y position: is the y position in twips of the text object containing the customer names
Hope this helps,