How to generate the random default "gravatars" like on Stack Overflow?

26,718

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

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

By the way these images (called Identicons) are not really random, but are generated based on the email hash.

See How is the default user avatar generated? for some Language Implementations of this algorithm.

Share:
26,718

Related videos on Youtube

Dávid Kertész
Author by

Dávid Kertész

Updated on January 29, 2020

Comments

  • Dávid Kertész
    Dávid Kertész over 4 years

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

    Where do these random avatars come from, and how can I generate them for my own site?

    • Ilmari Karonen
      Ilmari Karonen almost 10 years
      Note: The question this was originally closed as a duplicate of has been migrated to Meta Stack Exchange, but IMO this remains a valid question for Stack Overflow, too. I have thus cleaned it up and voted to reopen it.
  • Dávid Kertész
    Dávid Kertész about 15 years
    Hi, is there an example of an implementation I could swipe for Ruby on Rails?
  • Andreas Grech
    Andreas Grech about 15 years
  • Cyril N.
    Cyril N. over 10 years
    * "a geometric pattern based on an email hash", not the IP Address hash (source: fr.gravatar.com/site/implement/images )