codeguru
codeguru

Reputation: 1851

Is there identicon library for PHP

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

Upvotes: 3

Views: 3241

Answers (5)

rockjock
rockjock

Reputation:

Sourceforge has a PHP identicon implementation

Upvotes: 2

Kris
Kris

Reputation: 41857

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.

Upvotes: 11

PhiLho
PhiLho

Reputation: 41152

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 .

Upvotes: 0

Ross
Ross

Reputation: 47057

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

Upvotes: 1

balexandre
balexandre

Reputation: 75103

how about this

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

Hope it helps.

Upvotes: 3

Related Questions