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
link|improve this question

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

6 Answers

up vote 20 down vote accepted

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.

Important Update You may also be interested in Unicornicons.

link|improve this answer
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
feedback

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|improve this answer
Atwood's Law: That code has been ported to JavaScript: github.com/hgwr/identicon – Sam Hasler Feb 24 at 13:41
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

Easy way to display the gravatar for a given email address

http://meta.stackoverflow.com/questions/38944/what-is-the-easist-way-to-display-the-gravatar-for-an-email-address

link|improve this answer
feedback

Here is an Identicon implementation as a JQuery plugin using HTML5 and the Canvas element. If the browser supports Canvas the Identicon is drawn without an IMG and HTTP call to Gravatar, otherwise it defaults to the Gravatar IMG link.

Demo : http://francisshanahan.com/identicon5/test.html

jQuery Page: http://plugins.jquery.com/project/identicon5

Project Page: http://francisshanahan.com/index.php/identicon5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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