All Projects → issue9 → Identicon

issue9 / Identicon

Licence: mit
Go 语言版 identicon 头像产生工具

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Identicon

Android Circular Progress
Android custom view that loads a circular progress indicator using ImageView or FrameLayout
Stars: ✭ 75 (-62.69%)
Mutual labels:  avatar
Avataaars Generator
Simple generator React app for avataaars
Stars: ✭ 2,078 (+933.83%)
Mutual labels:  avatar
Knead proj
游戏中捏脸的实现
Stars: ✭ 169 (-15.92%)
Mutual labels:  avatar
Thispersondoesnotexist Js
Api for https://thispersondoesnotexist.com Generates an image of a person that does not exist in real life
Stars: ✭ 101 (-49.75%)
Mutual labels:  avatar
Avatar
Plug n play avatar, turn name, email, and any other string into beautiful avatar (or gravatar), effortless.
Stars: ✭ 1,525 (+658.71%)
Mutual labels:  avatar
Vue Image Crop Upload
A beautiful vue component for image cropping and uploading. (vue图片剪裁上传组件)
Stars: ✭ 1,892 (+841.29%)
Mutual labels:  avatar
Docker
Docker containers for OpenCog - Robot Operating System (ROS)
Stars: ✭ 72 (-64.18%)
Mutual labels:  avatar
Avatar
Library for showing Gravatars or generating user avatars.
Stars: ✭ 191 (-4.98%)
Mutual labels:  avatar
Materialabout
It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate. 🔖
Stars: ✭ 1,511 (+651.74%)
Mutual labels:  avatar
Facemoji Kit
Face tracker with blend shapes coefficients, 3D head pose and dense mesh in real-time on iOS, Android, Mac, PC and Linux.
Stars: ✭ 158 (-21.39%)
Mutual labels:  avatar
Ts3admin.class
The ts3admin.class is a powerful api for communication with Teamspeak 3 Servers from your website! Your creativity knows no bounds!
Stars: ✭ 103 (-48.76%)
Mutual labels:  avatar
Letteravatar
Letter avatar generation for Go
Stars: ✭ 109 (-45.77%)
Mutual labels:  avatar
React Avatar Editor
Small avatar & profile picture component. Resize and crop uploaded images using a intuitive user interface.
Stars: ✭ 1,846 (+818.41%)
Mutual labels:  avatar
Icotar
A free colorful icon avatar generator.
Stars: ✭ 94 (-53.23%)
Mutual labels:  avatar
Letteravatarkit
📦 An extension that generates letter-based avatars/placeholders
Stars: ✭ 180 (-10.45%)
Mutual labels:  avatar
Network Avatar Picker
A npm module that returns user's social network avatar. Supported providers: facebook, instagram, twitter, tumblr, vimeo, github, youtube and gmail
Stars: ✭ 74 (-63.18%)
Mutual labels:  avatar
Laravel Scaffold
The base for developing awesome projects
Stars: ✭ 142 (-29.35%)
Mutual labels:  avatar
Pumkinsavatartools
A toolbox for easily setting up VRChat avatars in Unity. Adds functionality to the editor and automates some of the tedious tasks.
Stars: ✭ 192 (-4.48%)
Mutual labels:  avatar
Amazingavatar
An android amazing avatar anim in CollapsingToolbarLayout.
Stars: ✭ 186 (-7.46%)
Mutual labels:  avatar
Makehuman Js
A library to build 3D human characters in the browser
Stars: ✭ 147 (-26.87%)
Mutual labels:  avatar

identicon Build Status license codecov Go Reference

根据用户的 IP 、邮箱名等任意数据为用户产生漂亮的随机头像。

screenshot.1 screenshot.4 screenshot.5 screenshot.6 screenshot.7

// 根据用户访问的IP,为其生成一张头像
img, _ := identicon.Make(128, color.NRGBA{},color.NRGBA{}, []byte("192.168.1.1"))
fi, _ := os.Create("/tmp/u1.png")
png.Encode(fi, img)
fi.Close()

// 或者
ii, _ := identicon.New(128, color.NRGBA{}, color.NRGBA{}, color.NRGBA{}, color.NRGBA{})
img := ii.Make([]byte("192.168.1.1"))
img = ii.Make([]byte("192.168.1.2"))

安装

go get github.com/issue9/identicon

版权

本项目采用 MIT 开源授权许可证,完整的授权说明可在 LICENSE 文件中找到。

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].