|
Combine two PDF Files into a single multi page PDF File without displaying or decoding any of the images.
Public Function PDFEditMerge( _ ByVal strSource1File As String, _ ByVal strSource2File As String, _ ByVal strOutputFile As String ) As Bool
|
Parameter
strSource1File The source of first PDF File.
strSource2File The source of second PDF File.
strOutputFile The output PDF File.
Return Value Return true if successful, otherwise return false.
Example
|
Visual Basic Syntax ImageViewer1.PDFEditMerge "c:\first.pdf", "c:\second.pdf","c:\output.pdf"
|
|
|