Hi! > I have scanned related pages of a document as jpeg > (limitation of software), converted to pdf using > imagemagick::convert. Now is there a way to concatenate > the pdf files (or jpeg files and then conver to pdf) > to collect the complete document.
i use GhostScript in a similar case in this way: gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=firstANDsecond.pdf -dBATCH first.pdf second.pdf that for me works perfectly. Of course you can join more than 2 files. 'man gs' (and google :-D) surely help you for parameters. Hope that helps you!