I have noticed that some parameters should be put before the input file and some parameters are after the input file. Something like this:
convert âdensity 144 file1.pdf file1.jpg
In this example this will not work:
convert file1.pdf âdensity 144 file1.jpg
On the other hand, other parameters can be put after the input file (file1.pdf). What is the rule? Is there any preferred way of ordering the conversion parameters?
Order of Parameters for convert
See http://www.cit.gu.edu.au/~anthony/graphics/imagick6 for a discussion of command line order. Generally speaking a setting should come before an image filename and an image operator after the image filename.
magick wrote: See http://www.cit.gu.edu.au/~anthony/graphics/imagick6 for a discussion of command line order. Generally speaking a setting should come before an image filename and an image operator after the image filename.
How do I know if a parameter is a setting or an operator? For instance density is a setting, but geometry is an operator. How would I know that?
Do what few people do. Read the manual. See http://magick.imagemagick.org/script/co ... essing.php.