i use this command line to convert multi image pdfs into single files:
Code: Select all
convert -density 300x300 -units pixelsperinch input -background white -alpha background -alpha off -antialias -compress zip +adjoin output.tiff
Code: Select all
convert -density 300x300 -units pixelsperinch input -background white -alpha background -alpha offantialias -compress zip -set filename:mysize '%wx%h' +adjoin output_%[filename:mysize].tif
what is wrong with the second command? why only the first image is written to a image?