Search found 1 match

by paleshadow123
2016-03-06T05:43:47-07:00
Forum: Users
Topic: Adding "outer glow" to a PNG with transparent background
Replies: 8
Views: 18969

Re: Adding "outer glow" to a PNG with transparent background

This is very close to your desired result. Windows BAT syntax.
convert ^
2lllxlv.png ^
( +clone ^
-alpha extract ^
-blur 0x10 ^
-level 0,50%% ^
-background White ^
-alpha Shape ^
+write g.png ^
) ^
-compose DstOver -composite ^
-background gray(42%%) ^
-compose Over -layers flatten ...