vote up 8 vote down star
3

Naturally, one would suspect that the algorithm creates images that are:

  • highly unlikely to produce the same identicon twice; and
  • capable of ensuring that each identicon is sufficiently distinctive as to not appear too similar to any other identicon
flag

60% accept rate
Duplicate of stackoverflow.com/questions/267945/… – Jay Dec 24 '08 at 23:15

4 Answers

vote up 7 vote down check

They are called Identicons. The Gravatar identicon image is based off of an MD5 hash of your email address. Here is an identicon implmentation if you are using .NET. There are other implementations listed in the Wikipedia article as well.

link|flag
3  
Gravatar use a hash of the email address, not the IP. – Nick Johnson Dec 28 '08 at 17:34
Good to know. That makes sense for Gravatar since they have the email address. – Lance Fisher Dec 29 '08 at 18:45
vote up 2 vote down

Here's an implementation of it for Wordpress, and another one for Perl.

link|flag
vote up 5 vote down

Checkout Coding Horror, it has an algorithm based on IP Address similar to SO.

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. In summary, an Identicon is a privacy protecting derivative of each user's IP address built into a 9-block image and displayed next the user's name. A visual representation is thought to be easier to compare than one which uses only numbers and more importantly, it maintains the person's privacy. The Identicon graphic is unique since it's based on the users IP, but it is not possible to recover the IP by looking at the Identicon.

link|flag
vote up 3 vote down

As regards showing them automatically with Gravatar, here is the answer I posted here:

The 'random' colorful gravatars are displayed because this query string parameter is being added to every gravatar source url: d=identicon

This is done so that if the user doesn't have a gravatar image associated with his email, this 'random' image is displayed, instead of the default blue gravatar image.

The following displays the 'default' blue image because the parameter is not included: alt text

Yet, the same url with the d=identicon parameter included, shows this: alt text

PS: This is the url used for the example: http://www.gravatar.com/avatar/94d093eda664addd6e450d7e9881bcad?s=32&d=identicon&r=PG

Btw, these images (called Identicons) are not really random, but are generated based on a Hash of your IP address.

link|flag

Your Answer

Get an OpenID
or

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