rdpascua/laravel-identicon
Identicon Wrapper for Laravel
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="https://raw.githubusercontent.com/rdpascua/laravel-identicon/HEAD/{{ Identicon::getImageDataUri('baz') }}">
<!-- Explicitly specify the size and color -->
<img src="https://raw.githubusercontent.com/rdpascua/laravel-identicon/HEAD/{{ 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
Related Packages
arcanedev/gravatar
A library providing easy gravatar integration/generation (Laravel supported).
86,915
17
irazasyed/laravel-identicon
Laravel Identicon Package - Extends Identicon Library and Adds Support for Seaml...
29,747
23
creativeorange/gravatar
A Laravel Gravatar package for retrieving gravatar image URLs or checking the ex...
8,230,740
546