tags:

views:

530

answers:

6

I'm looking for a PHP library/function/class which can create Identicons.

+2  A: 

how about this

it's how Scott did the identicons for Wordpress, you can download the code and see for yourself.

Hope it helps.

balexandre
+1  A: 

PHPClasses didn't have anything - but you could have a look at this MonsterID implementation.

Ross
A: 

Mmm, I wondered why you asked, since you link to Wikipedia article which points to lot of implementations, including PHP ones. BTW, thanks for your question, I didn't know the name of these icons...

But after exploring a bit, I found lot of links there were outdated... Following the Visiglyphs one, the original code is no longer available, but the author points to an alternative, OO version which can be downloaded. :-)

Note that author also wrote an interesting complement article: How to create a Visiglyph cache .

PhiLho
+2  A: 

i use this:

class Gravatar
{
    static public function GetGravatarUrl( $email, $size = 128, $type = 'identicon', $rating = 'pg' )
    {
        $gravatar = sprintf( 'http://www.gravatar.com/avatar/%s?d=%s&s=%d&r=%s',
                              md5( $email ), $type, $size, $rating );
        return $gravatar;
    }
}

Which is basically the same thing SO uses. It supports everything gravatar.com supports.

Kris
A: 

Sourceforge has a PHP identicon implementation