This commit is contained in:
Kevin McIntyre
2025-06-18 01:00:00 -04:00
commit f84b511895
228 changed files with 42509 additions and 0 deletions

14
jdenticon/doc.go Normal file
View File

@@ -0,0 +1,14 @@
// 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