I'm new to imagemagick, and I need a little help.
I have a pdf, I want to convert it in jpg but I need to have a jpg file for every two consecutive pages
I have used this command to convert just two pages in a single jpg file with the page side by side
Code: Select all
convert pdf_file.pdf[0-1] -colorspace rgb -density 300 +append two_pages.jpg
there is some kind of option to do this task? I tried with -tile 2x1 option but it doesn't work
if it isn't possibile I have to write my own script to do this task