14 lines
506 B
Go
14 lines
506 B
Go
// Package jdenticon provides highly recognizable identicon generation.
|
|
//
|
|
// This package is a Go port of the JavaScript library Jdenticon,
|
|
// offering the same visual quality and recognizability in Go applications.
|
|
//
|
|
// Basic usage:
|
|
//
|
|
// icon := jdenticon.Generate("user@example.com", 200)
|
|
// svg := icon.ToSVG()
|
|
// png := icon.ToPNG()
|
|
//
|
|
// The library supports both SVG and PNG output formats, with configurable
|
|
// styling options including color themes, saturation, and brightness.
|
|
package jdenticon |