up vote 5 down vote favorite
3
share [g+] share [fb]

Possible Duplicate:
what is the algorithm used to generate those little gravatar identicon images?

Is there a name for the type of geometric based unique avatars that are generated for users of Stack Overflow? I'm interested in the method for generating the patterns and if this is a area of study out side of Gravatars.

link|improve this question

1  
The question you linked to as a duplicate, stackoverflow.com/questions/392280/…, is apparently a duplicate of stackoverflow.com/questions/267945/…. Though I think the former has better answers. – James McMahon Apr 28 '09 at 15:07
feedback

closed as exact duplicate by Bill the Lizard Feb 18 '11 at 21:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

4 Answers

up vote 8 down vote accepted

I think they are called Identicons.

http://en.wikipedia.org/wiki/Identicon

Snippet from Wikipedia:

An Identicon is a visual representation of a hash value, usually of the IP address, serving to identify a user of a computer system. The original Identicon is a 9-block graphic, which has been extended to other graphic forms by third parties some of whom have used MD5 instead of the IP address as the identifier.

link|improve this answer
Exactly what I wanted to know, Thanks. – QueueHammer Apr 28 '09 at 14:57
feedback

They're called Identicons.

Jeff Atwood pulled together the SO implementation I believe for ASP.NET

Wiki Page http://en.wikipedia.org/wiki/Identicon

Jeffs Blog http://www.codinghorror.com/blog/archives/000774.html

.NET Implementation http://www.codinghorror.com/blog/files/Identicon-sample-vs-2005-v13.zip

link|improve this answer
feedback

They are known as Identicons

link|improve this answer
feedback

There's a creative commons script you can look at that generates random avatars. It generates little monsters rather than the geometric designs, but it's the same idea. You use the IP or email address of the visitor as the seed:

http://www.splitbrain.org/projects/monsterid

I used this script to teach me how to make a cool one of my own.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.