PHP code example of humans / avatars

1. Go to this page and download the library: Download humans/avatars library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

humans / avatars example snippets


use Humans\Avatars\Facades\Avatars;
use Humans\Avatars\Attempt;
use Humans\Avatars\Providers;

$response = Avatars::attempt(
    new Providers\Unavatar('[email protected]'),
    new Providers\Unavatar('jaggy'),
    new Providers\Unavatar('[email protected]'),
    new Providers\UiAvatars('Jaggy Gauran'),
);

$response->contents;
$response->extension;

Avatars::pass('example image content', 'gif');

Avatars::fail();