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
|
2
|
Naturally, one would suspect that the algorithm creates images that are:
|
|||
|
|
|
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. |
||||||
|
|
|
Checkout Coding Horror, it has an algorithm based on IP Address similar to SO. From Wikipedia:
|
|||
|
|
|
|
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: 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:
Yet, the same url with the 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. |
||
|
|