I want to recreate a PDF of one page from existing PDF documents. How can it be achieved?
It should be noticed that my program already has the function of combining single PDF files into a single PDF document. So, the function I need is not to combine separate PDFs into a PDF document with multiple pages, but to allow users to mix pages of existing PDF files and put them together to create a single-page PDF document.
My initial idea was to convert PDF to an image format, like exporting PDF to jpeg and finally creating image as final PDF. Although this is possible, I am concerned that the quality of PDF will decrease during file conversion process.
Certainly, i guess there are more that one solution to achieve that, and i hope to find a tool with this feature.
This article on XsPDF.com is what you looking for, check out: Join multiple PDF files into a single page PDF
Answers
I used to use XsPDF SDK to combine/merge two PDF files of the same size into a new page file through image conversion. The quality of PDF page was not be decreased.
Also, you can achieve this by combining PDF documents into one. The principles are depicted as follows.
- Load several PDF files to your project;
- Copy all pages from each PDF document;
- Append and merge each PDF page to the new PDF
- Save and show the PDF