lshorz/laravel-identicon

Laravel identicon Package

dev-master 2021-06-03 07:15 UTC

This package is auto-updated.

Last update: 2024-03-29 04:33:08 UTC


README

Create identcion avatar for Laravel

perview

Preview

Installation

$ composer require "lshorz/laravel-identicon":"dev-master"

Example

Display image

Identicon::identiconImage('user');

or use helper

identicon_image('Hello');
identicon_base64('username', 200);

Get the base64 uri

<img src="{!! Identicon::identiconBase64('user', 120, '#FFFFFF', 0.08) !!}" />