Re: Strange "add" behaviour
Posted: 2013-10-08T08:17:24-07:00
There are many ways of making an image grayscale (ie removing the colours). One is to lower the saturation: "-modulate 100,0,100".
For example:
For example:
Code: Select all
convert in.png -modulate 100,0,100 out.png
Code: Select all
convert %1 ( %2 -modulate 100,0,100 ) ( %3 +level 0,80% ) -compose Over -composite %4