identicon 随机头像产生工具 identicon

xnotepad2015-05-24 08:20:26 • 4712 次点击    
这是一个分享于 2015-05-24 08:20:26 的项目,其中的信息可能已经有所发展或是发生改变。

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

screenhost.1 screenhost.4 screenhost.7

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

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

Go 语言版 identicon 头像产生工具Read More

Latest commit to the master branch on 2-28-2024
Download as zip
授权协议:
MIT
开发语言:
go 查看源码»
4712 次点击  ∙  1 赞  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传