dragonfly icon indicating copy to clipboard operation
dragonfly copied to clipboard

some arguments passed to convert need to precede the source filename

Open jsierles opened this issue 9 years ago • 2 comments

Some arguments, such as 'density' for specifying a source PDF file's resolution, must come before the source filename, otherwise they are ignored. This is important for controlling the target resolution of a vector image converted to PNG.

BAD % convert test.pdf -density 150 test.png

GOOD % convert -density test.pdf test.png

Should a PR for this should include an extra option for these arguments?

jsierles avatar Mar 04 '15 18:03 jsierles