Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Splitting PDF File with PdfMerger
How to split a PDF file using PdfMerger? I want split a PDF file into 2 parts: part 1 is from page 1 to 20 part 2 is from page 21 to the end.
✍: FYIcenter.com
You can run PdfMerge interactively and specify the input PDF file. Then change the value of "Pages" from "All" to "1-20". Click the "Merge/Split" button to generate the first part of the input PDF files.
Run PdfMerge interactively again and specify the input PDF file. Then change the value of "Pages" from "All" to "21". Click the "Merge/Split" button to generate the second part of the input PDF files.
You can also split the input PDF file by running PdfMerger at the command line twice with two XML files.
Create the first XML file called first.xml like this:
<?xml version="1.0" encoding="utf-8"?>
<merge>
<file>
<path>\fyicenter\input.pdf</path>
<pages>1-20</pages>
</file>
</merge>
Create the second XML file called second.xml like this:
<?xml version="1.0" encoding="utf-8"?>
<merge>
<file>
<path>\fyicenter\input.pdf</path>
<pages>21</pages>
</file>
</merge>
Then run the following commands: \fyicenter\PdfMerge first.xml output1.pdf \fyicenter\PdfMerge second.xml output2.pdf
2015-05-30, 1759🔥, 0💬
Popular Posts:
How to save a presentation with macros in the PowerPoint Macro-Enabled Presentation (*.pptm) file fo...
How to add or change the footer on a layout in PowerPoint? I want my slide footers to have the same ...
Where to find answers to frequently asked questions on Microsoft PowerPoint? I want to know how to c...
Why the "dir" command hangs when using the FTP command-line tool on Windows? when you run the "dir" ...
How register my Fitbit device through Fitbit Connect? I have an account with Fitbit server, installe...