All Projects β†’ heyvito β†’ Identicon

heyvito / Identicon

Licence: mit
πŸ‘Ύ A Ruby library that generates GitHub-like identicons

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Identicon

Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-29.11%)
Mutual labels:  icons
Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: ✭ 1,157 (+1364.56%)
Mutual labels:  icons
Hass Bha Icons
Additional icons for Home Assistant to accompany the MDI icons
Stars: ✭ 75 (-5.06%)
Mutual labels:  icons
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (-18.99%)
Mutual labels:  icons
Xcodeicontagger
Adds version and commit hash as an overlay to your iOS app's icon.
Stars: ✭ 66 (-16.46%)
Mutual labels:  icons
Svgsprit.es
Public endpoint to generate SVG Sprites
Stars: ✭ 73 (-7.59%)
Mutual labels:  icons
Iconhandler
Tint you Icons, change the size, apply alpha color and set a position easily. πŸ‘“
Stars: ✭ 59 (-25.32%)
Mutual labels:  icons
Font Awesome Stylus
Stylus port for font-awesome 4.7.0
Stars: ✭ 77 (-2.53%)
Mutual labels:  icons
H2d2 Shopicons
Essentials E-Commerce icon pack for free.
Stars: ✭ 67 (-15.19%)
Mutual labels:  icons
Blade Icons
A package to easily make use of SVG icons in your Laravel Blade views.
Stars: ✭ 1,181 (+1394.94%)
Mutual labels:  icons
Dctb Links
My Personal Links
Stars: ✭ 65 (-17.72%)
Mutual labels:  icons
Social Circles
Well designed social media buttons.
Stars: ✭ 66 (-16.46%)
Mutual labels:  icons
Svg Sprite Webpack Plugin
Webpack plugin for loading/extracting SVGs into a sprite file
Stars: ✭ 73 (-7.59%)
Mutual labels:  icons
Hybicon
Hybrid SVG icons
Stars: ✭ 62 (-21.52%)
Mutual labels:  icons
Iconify Sketch
Sketch plug-in for importing over 70,000 icons from 80+ icon sets, including Material Design Icons, FontAwesome, Jam Icons, Open Emoji and many others.
Stars: ✭ 76 (-3.8%)
Mutual labels:  icons
Govicons
πŸ‡ΊπŸ‡Έ US Government themed icons and CSS toolkit
Stars: ✭ 60 (-24.05%)
Mutual labels:  icons
React Bootstrap Icons
React component for Bootstrap Icons
Stars: ✭ 71 (-10.13%)
Mutual labels:  icons
Fontawesome Module
Module to use Font Awesome icons in Nuxt.js
Stars: ✭ 79 (+0%)
Mutual labels:  icons
Ios Icon Selector
A drop-in UI component to allow easy selection of alternate icons on iOS.
Stars: ✭ 77 (-2.53%)
Mutual labels:  icons
Sing App
πŸ’₯Free and open-source admin dashboard template built with Bootstrap 4.5 πŸ’₯
Stars: ✭ 1,187 (+1402.53%)
Mutual labels:  icons

Identicon

Dependency Status

A Ruby library that generates GitHub-like identicons

Installation

Add it to your application's Gemfile:

gem 'identicon'

and run

$ bundle

or manually install through the command-line:

$ gem install identicon

Usage

Require it

require 'identicon'

And use data_url_for or file_for, as explained below:

data_url_for

This generates a data-url, so you can use it immediately, check it out:

Identicon.data_url_for "Whatever you want!"

You can also specify a image size and a background color:

Identicon.data_url_for "Whatever you want!", 128, [255, 255, 255]

This creates a 128x128px image, with a nice white background.

file_for

This generates and writes the result to a file. It's as easy as just making a data-url. Check it out:

Identicon.file_for "User's email? Username? Telephone?", "/path/to/the/image"

And, as you may guess, it also accepts the aforementioned parameters:

Identicon.file_for "User's email? Username? Telephone?", "/path/to/the/image", 128, [255, 255, 255]

Pull requests are welcome!

License

The MIT License (MIT)

Copyright (c) 2014-2017 Victor Gama

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].