I want to merge two filesm layout.pdf and list.pdf into 00.pdf. So I run using command line like this
C:\PdfMerge>pdfmerge c:\Layout.pdf;all;none c:\List.pdf;all;none c:\00.pdf
but it gave me an error could not find the file
'c:\Layout.pdf;all;none'
Is there anything wrong with my command line?
Logged In: YES
user_id=1979453
Originator: NO
The command line for PdfMerge requires that you use a list file.
Syntax is:
pdfmerge <merge_command_file_name> <output_file_name></output_file_name></merge_command_file_name>
A valid example:
c:>pdfmerge cmd.lst
where cmd.lst contains:
c:\tmp\shell.pdf;1-4;none;TITLE PAGE
c:\tmp\shell.pdf;5;none
See the wiki page for more information, you can also use an XML format command file.