sandfoxme / monsterid
MonsterID is a method to generate a unique monster image based upon a certain identifier (IP address, email address, whatever). It can be used to automatically provide personal avatar images in blog comments or other community services.
Requires
- php: ^5.5|^7.0|^8.0
- ext-gd: *
Requires (Dev)
README
MonsterID is a method to generate a unique monster image based upon a certain identifier (IP address, email address, whatever). It can be used to automatically provide personal avatar images in blog comments or other community services.
MonsterID was inspired by a post by Don Park and the Combinatoric Critters.
All graphics were created by Andreas Gohr. The source code and the graphics are provided under the MIT License.
Installation
Install it with Composer
composer require 'sandfoxme/monsterid:^1.2'
Usage
<?php use function SandFox\MonsterID\build_monster; header('Content-type: image/png'); echo build_monster('sandfox@sandfox.me', 150);
Read full documentation here: https://sandfox.dev/php/monsterid.html
Adaptation
Adaptation as a composer library performed by Anton "Sand Fox" Smirnov