I have a huge image, lets say 1000x7000 and I would like to convert to PDF, but fit the width in the page and split the height in multiple pages.
When I Use the simple command below, the page in PDF is adjusted according the image size:
Code: Select all
C:\Program Files\ImageMagick-7.0.3-Q16>convert.exe c:\temp\teste.jpg c:\temp\teste.pdf
Code: Select all
convert.exe c:\temp\teste.jpg -page A4 c:\temp\teste.pdf
Thanks in advance!