Is there identicon library for PHP [closed]

2019-03-31 17:49发布

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

标签: php identicon
5条回答
倾城 Initia
2楼-- · 2019-03-31 18:23

how about this

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

Hope it helps.

查看更多
手持菜刀,她持情操
3楼-- · 2019-03-31 18:34

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

查看更多
祖国的老花朵
4楼-- · 2019-03-31 18:39

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.

查看更多
forever°为你锁心
5楼-- · 2019-03-31 18:45

Sourceforge has a PHP identicon implementation

查看更多
等我变得足够好
6楼-- · 2019-03-31 18:48

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 .

查看更多
登录 后发表回答