Page 1 of 1

Color overlay multiply like Photshop

Posted: 2013-06-12T02:51:24-07:00
by JayChandler
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

Image

This should be result

Image

Any Ideas ?

Thx so far

Re: Color overlay multiply like Photshop

Posted: 2013-06-12T09:58:57-07:00
by fmw42
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 (...)