Radial lines / starburst.

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
dognose
Posts: 265
Joined: 2005-03-08T22:16:37-07:00

Radial lines / starburst.

Post by dognose »

Any ideas on how to create an image like this:

Image

given colors and number, etc.

I've seen fred's starburst and the flare example, but they don't seem to create clean lines. .

I've also tried
convert xc:red xc:pink xc:red xc:pink xc:red xc:pink xc:red xc:pink xc:red xc:pink xc:red xc:pink +append -resize 200x200\! lines.gif
convert lines.gif -distort Polar -1 circular.gif

Any ideas on how to clean it up?
dognose
Posts: 265
Joined: 2005-03-08T22:16:37-07:00

Re: Radial lines / starburst.

Post by dognose »

no one?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Radial lines / starburst.

Post by fmw42 »

closest I can come with a quick try is:

convert -size 512x512 gradient: -rotate 90 -evaluate sine 20 -threshold 50% \
+level-colors blue,lightblue -distort polar 0 tmp.png
Post Reply