如何使这个 imagemagick 命令正常工作?

如何使这个 imagemagick 命令正常工作?
# create a 2 color image from scratch to supply colors for mapping
$ convert -size 10x10 xc:white -fill red -draw 'rectangle 0 0 5 5' \
    -colors 2 +dither bicolor.gif
# map 'em, Danno!
$ convert -colors 2 -normalize +dither -remap bicolor.gif in.png out.png

第一个命令不起作用。

答案1

我明白了。不用单引号,而是用双引号,这样就可以了。

相关内容