Hi
I have an image and i want to overlay it with a special color and multiply it like photoshop does.
This is source image
This should be result
Any Ideas ?
Thx so far
Color overlay multiply like Photshop
-
- Posts: 1
- Joined: 2013-06-12T02:47:01-07:00
- Authentication code: 6789
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Color overlay multiply like Photshop
try this
convert face.jpg \( -clone 0 -fill red -colorize 100 \) -compose multiply -composite red_face.jpg
see
http://www.imagemagick.org/Usage/color_mods/#colorize
http://www.imagemagick.org/Usage/compose/#compose
http://www.imagemagick.org/Usage/compose/#multiply
If on windows, remove the two \ before the (...)
convert face.jpg \( -clone 0 -fill red -colorize 100 \) -compose multiply -composite red_face.jpg
see
http://www.imagemagick.org/Usage/color_mods/#colorize
http://www.imagemagick.org/Usage/compose/#compose
http://www.imagemagick.org/Usage/compose/#multiply
If on windows, remove the two \ before the (...)