1.0.0 • Published 5 years ago

ui-avatars v1.0.0

Weekly downloads
280
License
MIT
Repository
github
Last release
5 years ago

UI Avatars

Generate avatar images based on user initials.

Build status Azure DevOps tests (branch) Azure DevOps coverage Codacy Badge MIT License npm

Usage

After installing, simply import it in your file.

const uiavatars = require("ui-avatars");

Consume the generateAvatar() API to get an avatar URL that you can use directly as an image. Supply the settings object to this method to generate the avatar image URL accordingly. You can either supply one or all settings, based on your requirement. All settings are pretty self-explanatory.

var avatarURL = uiavatars.generateAvatar({
            uppercase: true,
            name: "Tony Stark",
            background: "990000",
            color: "000000",
            fontsize: 0.5,
            bold: true,
            length: 2,
            rounded: true,
            size: 250
        }); 

Examples

Clicking on the images below opens the image in a browser window.

Sample image 1 Sample image 2 Sample image 3

Release notes

Release notes can be found here.

License

This npm package is licensed under MIT. UI Avatars may be licensed separately.

Credits

UI Avatars developed by Lasse Rafn / GitHub.
This npm package is developed by Clyde D'Souza.