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?".
I'm converting a scanned book to a format suitable for my eBook reader, so I now have a number of scanned and cropped jpeg images (one for each page) that I want to convert to a pdf file. ImageMagick is the only software that has succeeded in creating a pdf file readable on the eBook device. However, when i convert the jpeg images into the pdf file using
convert protfys-*.jpg -crop 1560x2400+130+30 -compress Zip -monochrome -resize 1300 protfys.pdf
a margin is added to the pdf file so that the extracted images does not fill up the whole page but appear centered horizontally and vertically on the page. For optimal viewing on my eBook reader, I want the images to fill the page horizontally. Is this possible to do with ImageMagick?