Code Monkey home page Code Monkey logo

identicon's Introduction

PHP Identicon Generator

Code Climate Test Coverage

This is a PHP library which generates identicons based on a given string. Currently only SVG format is supported as it offers the best combination of efficiency, quality, file size and ease of use.

For integration with a symfony application, there is BitverseIdenticonBundle

Installation

Install using composer:

$ composer require bitverse/identicon

Usage

The code below, will create a rings-identicon from the string "hello world", and save it to helloworld.svg.

<?php

use Bitverse\Identicon\Identicon;
use Bitverse\Identicon\Color\Color;
use Bitverse\Identicon\Generator\RingsGenerator;
use Bitverse\Identicon\Preprocessor\MD5Preprocessor;

$generator = new RingsGenerator();
$generator->setBackgroundColor(Color::parseHex('#EEEEEE'));

$identicon = new Identicon(new MD5Preprocessor(), $generator);

$icon = $identicon->getIcon('hello world');

file_put_contents('helloworld.svg', $icon);

Identicon object

Identicon is the main service that's responsible for providing the identicons based on a given string. In order to do that, it's required to pass a preprocessor and a generator into it's constructor.

You can then call the getIcon() function to create a new icon.

Preprocessor

A preprocessor is an object that implements Bitverse\Identicon\Preprocessor\PreprocessorInterface.

The role of the preprocessor is to conduct any action on the string before it's passed to the generate() method of the generator. This includes hashing.

Currently, the library only includes MD5Preprocessor, which hashes the given string using MD5 algorithm.

Generator

Generator is responsible for actually generating the icon from the hash produced by the preprocessor.

Any object can be a generator as long as it implements Bitverse\Identicon\Generator\GeneratorInterface.

Currently the library provides two generators by default:

  • RingsGenerator produces identicons made out of a centerpiece and three rings of different lengths and rotation.

  • PixelsGenerator generates 5x5 pixels icons, similar to the ones used on github.

Examples

Here are some examples for 'helloworld':

  • MD5Preprocessor + RingsGenerator:

  • MD5Preprocessor + PixelsGenerator:

identicon's People

Contributors

arminnh avatar hpainter avatar ice9js avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

identicon's Issues

New release?

Could you make a new release? I'd like to include setting the foreground colors in a project and using dev-master is something I'd like to avoid for a stable version.

Undefined Variable bg

Undefined variable: bg

Catchable fatal error: Argument 1 passed to Bitverse\Identicon\Generator\RingsGenerator::setBackgroundColor() must be an instance of Bitverse\Identicon\Color\Color, null given

Is foreground color determined by the ID's hash?

hello,

Looking for an identicon library, I ran into this as well as yzalis' so I've been trying to figure out which fits my needs best.

The other package's identicon color is determined, like the design, by the hashed identity (eg: username). Your readme doesn't mention how the foreground color is determined. Is it set as a property of the class? Is it a function of the hash? Do all identicons have the same color?

The only info in the readme that I see about color is how to set the background color:

$generator->setBackgroundColor(Color::parseHex('#EEEEEE'));

If the background color isn't set, what will it be?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.