vote up 0 vote down star

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?...

flag

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

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

1 Answer

vote up 4 vote down check

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|flag
Hi, is there an example of an implementation I could swipe for Ruby on Rails? – AFG Apr 2 at 20:36
Check out these links: douglasfshearer.com/blog/… | slightlycoded.com/blog/… – Andreas Grech Apr 2 at 20:53

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