up vote 2 down vote favorite
1
share [g+] share [fb]

How does Stack Overflow for users auto-generate the gravatars for those who do not create a picture or who have not created a Gravatar icon?

Where did these avatars comes from?

Duplicate of what is the algorithm used to generate those little gravatar identicon images? which is itself duplicate of How do you generate that default avatar in Stackoverflow?...

link|improve this question

45% accept rate
Duplicate: stackoverflow.com/questions/392280/… – S.Lott Jan 2 '09 at 0:02
feedback

closed as exact duplicate by PhiLho Jan 2 '09 at 0:18

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.

1 Answer

up vote 8 down vote accepted

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.

[UPDATE]

See this post for some Language Implementations of this algorithm

link|improve this answer
Hi, is there an example of an implementation I could swipe for Ruby on Rails? – AFG Apr 2 '09 at 20:36
feedback

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