# 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

The first command doesn't work.

link|improve this question

65% accept rate
Is there an error message? – RedGrittyBrick Oct 15 '10 at 19:21
feedback

1 Answer

I figured it out. Instead of using single quotes double quotes need to be used, then it works.

link|improve this answer
That sounds... wrong... – Ignacio Vazquez-Abrams Nov 21 '10 at 17:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.