rdpascua / laravel-identicon
Identicon wrapper for Laravel
1.0.0
2017-06-28 18:13 UTC
Requires
- php: >=5.6.4
- illuminate/support: >=4.1 <6.0
- yzalis/identicon: ^1.1
Requires (Dev)
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2024-11-13 15:12:05 UTC
README
Generate awesome avatar placeholders using identicon.
Installation
composer require rdpascua/laravel-identicon
Add this to your service provider
Rdpascua\Identicon\IdenticonServiceProvider::class,
And add this to your facades
'aliases' => [
'Identicon' => Rdpascua\Identicon\Facades\Identicon::class,
]
Usage
Identicon::getImageDataUri($string, $size = 64, $color = null)
Returns a base64 image.
<!-- Base64 URI image --> <img src="{{ Identicon::getImageDataUri('baz') }}"> <!-- Explicitly specify the size and color --> <img src="{{ Identicon::getImageDataUri('foo', 256, 'B4D455') }}">
Identicon::image($string, $size = 64, $color = null)
Returns a base64 image wrapped in <img>
tag.
<!-- Show image -->
{{ Identicon::image('baz') }}
Identicon::getImageData($string, $size = 64, $color = null)
Identicon::displayImage($string, $size = 64, $color = null)
Credits
License
This wrapper is licensed under the MIT license