Re: Making all colors in an image lighter by a certain percentage

Fred Weinhaus <[email protected]> Mon, 18 Apr 2011 19:43:42 -0700
Newsgroups gmane.comp.video.image-magick.user
Message-ID <p06240807c9d2a6e0bbba@[192.168.1.2]>
>The most direct way I think would be
>
>convert image -evaluate multiply XX% resultimage


Correction. When using -evaluate multiply XX, the XX is a fraction 
such as 0.8 and not 80%. However, as I said later, if you don't want 
to affect the slope (contrast), then you want

convert  image -evaluate subtract XX% resultimage

Here you do want percent, such as 20%.

Fred