Color overlay multiply like Photshop

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
JayChandler
Posts: 1
Joined: 2013-06-12T02:47:01-07:00
Authentication code: 6789

Color overlay multiply like Photshop

Post 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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Color overlay multiply like Photshop

Post 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 (...)
Post Reply