runmybusiness/initialcon

This package is abandoned and no longer maintained. No replacement package was suggested.

Create a GMail esque avatar based on the users intials & a persistant identifier such as an email address.

0.1.3 2015-07-28 15:02 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:35:35 UTC


README

Build Status StyleCI Latest Stable Version Total Downloads Latest Unstable Version License

Initialcon example #1   Initialcon example #2   Initialcon example #3  

Installation

The recommended way to install Initialcon is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "runmybusiness/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.

Usage

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.

Generate an initialcon

Create a new Initialcon object.

$initialcon = new Initialcon();

Then you can generate and display an initialcon image

$initialcon->displayImage('TS', 'tom@test.com');

or generate and get the image data

$imageData = $initialcon->getImageData('TS', 'tom@test.com');

or generate and get the base 64 image uri ready for integrate into an HTML img tag.

$imageDataUri = $initialcon->getImageDataUri('HI', 'hello@test.com');
<img src="<?php echo $imageDataUri; ?>" alt="bar Initialcon" />

Change the size

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', 'tom@test.com', 512);

Color

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', 'tom@test.com', 64, 'A87EDF');

Image Object

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', 'tom@test.com', 512);

That's it!

Unit Tests

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.

Credits

License

Initialcon is released under the MIT License. See the bundled LICENSE file for details.