how to create a pdf from more images ?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
kadkam
Posts: 9
Joined: 2008-01-09T08:20:23-07:00

how to create a pdf from more images ?

Post by kadkam »

Hi

Explain by example:

I have

image01.jpg
image02.jpg
photo.jpg

I want to create a single test.pdf file with more pages and jpg recompression (75%)

Can I have the command line please?


THANKS
Drarakel
Posts: 547
Joined: 2010-04-07T12:36:59-07:00
Authentication code: 8675308

Re: how to create a pdf from more images ?

Post by Drarakel »

Hi,
Just specify the input images one after another:
convert image01.jpg image02.jpg photo.jpg -compress jpeg -quality 75 test.pdf
Post Reply