Layer with opacity

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
brubru
Posts: 18
Joined: 2013-05-10T04:22:01-07:00
Authentication code: 6789

Layer with opacity

Post by brubru »

Hi.
How i can to create a fill or adjustment layer with opacity like on this screen - Image.
The reason why i need it, is a opacity effect.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Layer with opacity

Post by fmw42 »

convert image \( -clone 0 -alpha off -fill pink -colorize 100% -alpha set -channel a -evaluate set XX% +channel \) -compose YYY -composite result

where XX will be the opacity amount and YYY is the compose method you want to use
Post Reply