I'm coming along further with my IM experiments.
One thing bugging me though. I've followed a few examples and have managed to create the effect I desired. The only downside so far is that when I flatten the layers I lose tranaparent background.
My code so far is this:
Code: Select all
convert -size 150x150 \( xc:none -fill none -stroke black -strokewidth 1 -draw "arc 10,10 130,130 102,280" -channel RGBA -blur 0x4 \) \( xc:none -stroke white -strokewidth 1 -draw "arc 10,10 130,130 102,280" -channel a -evaluate divide 3 \) \( xc:none -stroke black -strokewidth 3 -draw "arc 10,10 130,130 80,102" -channel A -blur 0x2 \( +clone xc:none -fill "#24acff" -draw 'color 0,0 reset' \) -compose ATop -composite \) -layers merge arc.png
What am I doing wrong here???
Cheers,
PL