command line help
Posted: 2019-03-26T19:26:25-07:00
Version: ImageMagick 7.0.7-28
I need to compare 2 png files. And a file needs to chop an edge.
convert base.png -gravity EAST -chop 6x0 base.png
compare -metric AE clean.png base.png result.png
I would like to combine into one command line:
compare -metric AE clean.png \( base.png -gravity EAST -chop 6x0 \) result.png
But get error:
compare: unrecognized option `-chop'
I was using -crop and it worked without problem. So I thought changing to -chop should be no problem.
I need to compare 2 png files. And a file needs to chop an edge.
convert base.png -gravity EAST -chop 6x0 base.png
compare -metric AE clean.png base.png result.png
I would like to combine into one command line:
compare -metric AE clean.png \( base.png -gravity EAST -chop 6x0 \) result.png
But get error:
compare: unrecognized option `-chop'
I was using -crop and it worked without problem. So I thought changing to -chop should be no problem.