Recommend this page to a friend! |
Classes of Muhammad Umer Farooq | PHP Identicon | readme.md | Download |
|
DownloadPHP IdenticonIdenticon is a library which generate an identicon image based on a string. Requirement
installrun this command
<?php use Lablnet\Identicon; require '../vendor/autoload.php'; $Identicon = new Identicon; //$Identicon->getInstance()->setBlock(2); //change block $imageDataUri = $Identicon->getImgDataBase64('php'); echo "<img src=".$imageDataUri." />";
<?php use Lablnet\Identicon; require '../vendor/autoload.php'; $Identicon = new Identicon; //$Identicon->getInstance()->setBlock(2); //change block string | size | foreground | background $imageDataUri = $Identicon->getImgDataBase64('php',1000,'#fff','#dad'); echo "<img src=".$imageDataUri." />";
|