To trim image’s whitespace, I use
magick input.png -trim +repage output.png
I can replace the word magick
with convert
and this doesn’t seem to make any difference. But is it really so? Is magick
is simply a recommended alias to convert
here?
convert input.png -trim +repage output.png
My doubts are intensifying by the fact that to use modern convert
, you must, at least, to not use it with the word magick
, because you will use the legacy convert
then.
# DON'T DO THIS.
magick convert input.png -trim +repage output.png