I am looking for code to automatically generate lots of colorful unicorns. I would also like to randomly generate clouds and rainbows in the image. How does one go about automatically generating meaningful images?
migrated from stackoverflow.com Mar 31 '10 at 23:09
|
There you go: I just published the code. This is
|
|||
|
|
|
This code in JavaScript will do:
You can use it e.g. within the Or simply copy and paste it to the address bar of your browser and press return ;-) |
||||
|
|
|
just visit http://unicornify.appspot.com/ Algo is here http://unicornify.appspot.com/making-of |
|||
|
|
|
Well you want to start with some line only unicorns that are encoded in a "color by number" manner, so that places that should have like colors, such as hoves, can be easily identified. For each number randomly assign a color, you could add extra rules to ensure the color is a pretty color, such as pastels. I would store the shapes of the unicorns as vector graphics. That way you can randomly move, rotate, and size the unicorns. The clouds would also be pre-designed and stored as vector graphics. Be sure the Z order of the clouds places them behind the unicorns, or randomly assign the z order to give the effect that the unicorns are flying through the clouds. Yes, I know unicorns don't fly normally, but they are magical after all, right? |
|||
|
|
|
If you want to do it programatically: Clouds can be created using some fractal algorithm. Rainbows can be created using a simple color-spectrum rendering algorithm. Unicorns don't exist until .NET5 |
|||
|
|
|
Of course there is a Linq function for that:
|
|||
|
|
|
Here's the code I used, 100 at a time:
"something" is your gmail account (or other email that lets you add a bit after +). "bgpxi" is just some random junk to thwart the obvious privacy issue with gravatar, that if someone can guess your email address, they can confirm that guess by matching the MD5 sum. A dictionary attack, in essence. That's because I was picking a better icon for SO, though: otherwise any old string with a varying part will do. Come to think of it, it's just for a day and SO doesn't actually use your email address for anything unless you tell it to, so for my purposes anything it will accept as an email address would do. |
||||
|
|
|
Simple. Write a small program to parse user names off stackoverflow.com and then further parse the url to their icons. Problem is this might not work after tomorrow. I am still working on that problem. |
|||
|
|
|
Add a 400 unicorns to the page (sorry, I have almost no js skills)
|
||||
|
|
import unicorns– Jeff B Mar 31 '10 at 22:52