Deconstructing "Soft Edges"
Posted: 2011-01-10T17:10:00-07:00
I'm trying to deconstruct this line from the examples so I can convert it to Perlmagick:
convert thumbnail.gif -alpha set -virtual-pixel transparent -channel A -blur 0x8 -level 50%,100% +channel soft_edge.png
Can someone tell me the sequence of events? I have these Perlmagick commands:
$image->Set(alpha=>'Set');
$image->Set(virtual-pixel=>'Transparent');
$image->Blur(radius=>'0x8');
$image->Level(levels=>'50%,100%');
convert thumbnail.gif -alpha set -virtual-pixel transparent -channel A -blur 0x8 -level 50%,100% +channel soft_edge.png
Can someone tell me the sequence of events? I have these Perlmagick commands:
$image->Set(alpha=>'Set');
$image->Set(virtual-pixel=>'Transparent');
$image->Blur(radius=>'0x8');
$image->Level(levels=>'50%,100%');