Is there any way to make a region lighten?, but with fuzz/opaque results included.
Example:
Code: Select all
convert input.jpg -region 73x31+45+36 -fuzz 8% -fill red -opaque '#a9afaf' output.jpgNow I want those pixels to change its opacity, or to be lighten.
So, I tried:
Code: Select all
convert input.jpg -region 73x31+45+36 -fuzz 8% -fill red -colorize 10% -opaque '#a9afaf' output.jpgWhat can I do to change the brightness of the selected pixels? (The ones colored in red in the first example).
Thank you very much!!!