The recommended way to install Initialcon is through composer.
Just create a composer.json
file for your project:
{
"require": {
"VentureCraft/initialcon": "*"
}
}
And run these two commands to install it:
$ wget http://getcomposer.org/composer.phar
$ php composer.phar install
Now you can add the autoloader (if your framework doesn't already do this for you), and you will have access to the library:
<?php
require 'vendor/autoload.php';
You're done.
Images are generated in PNG format with a colored background & the initials in white text.
The string can be an email, an IP address, a username, an ID or something else that is persistant between page loads. This string determines the color of the icon background and will persist between pageloads so long as the string doesnt change.
Create a new Initialcon
object.
$initialcon = new Initialcon();
Then you can generate and display an initialcon image
$initialcon->displayImage('TS', '[email protected]');
or generate and get the image data
$imageData = $initialcon->getImageData('TS', '[email protected]');
or generate and get the base 64 image uri ready for integrate into an HTML img tag.
$imageDataUri = $initialcon->getImageDataUri('HI', '[email protected]');
<img src="<?php echo $imageDataUri; ?>" alt="bar Initialcon" />
By default the size will be 64 pixels. If you want to change the image size just add a secondary parameter. 512 x 512px in this example.
$initialcon->displayImage('TS', '[email protected]', 512);
The color is automaticaly generated according to the string hash but you can chose to specify a color by adding a third argument.
Color can be an hexadecimal with 6 characters
$initialcon->displayImage('TS', '[email protected]', 64, 'A87EDF');
You can also grab the Image object to add more manipulation to the final icon (such as rounded corders, opacity, etc). We use the Intervention library for image creation so all of its' methods are available to you.
$initialcon->getImageObject('TS', '[email protected]', 512);
That's it!
To run unit tests, you'll need and a set of dependencies you can install using Composer:
php composer.phar install
Once installed, just launch the following command:
phpunit
Everythings should be ok.
- Originally forkeed from Benjamin Laugueux's great Identicon library at (https://github.com/yzalis/Initialcon)
Initialcon is released under the MIT License. See the bundled LICENSE file for details.