Any ideas on how to create an image like this:
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?
Radial lines / starburst.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Radial lines / starburst.
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
convert -size 512x512 gradient: -rotate 90 -evaluate sine 20 -threshold 50% \
+level-colors blue,lightblue -distort polar 0 tmp.png