I'm trying make an image with transparency more see though.
I'm using
convert image.png -alpha on -channel a -evaluate set 50% out.png
However, it removes the areas that were completely transparent and makes them 50%..
So, I'm losing the mask..
How can I keep the mask and bump up the rest of the alpha?
Alpha on already transparent images..
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Alpha on already transparent images..
Instead of setting the alpha, you should multiply it, eg by 0.5.
snibgo's IM pages: im.snibgo.com
Re: Alpha on already transparent images..
-evaluate multiply 0.5
works great, THANKS!
works great, THANKS!