// Setup the files for merging
string firstDoc = "sample1.pdf";
string secondDoc = "sample2.pdf";
string DestFileName = "merged_samples.pdf";
// Load the first PDF into memory
QP.LoadFromFile(firstDoc);
int MainDocID = QP.SelectedDocument();
// Load the second PDF into memory
QP.LoadFromFile(secondDoc);
int AppendID = QP.SelectedDocument();
// Select the PDF to which the other PDF
// should be appended to and then merge.
// After merging AppendID will be removed
// from memory and MainDocID will be selected
QP.SelectDocument(MainDocID);
QP.MergeDocument(AppendID);
// Remove document from memory
QP.SaveToFile(DestFileName);
|