Files
Gogs/internal/avatar/avatar.go
2026-01-22 08:20:53 -05:00

40 lines
1.0 KiB
Go

package avatar
import (
"image"
"image/color/palette"
"math/rand"
"time"
"github.com/cockroachdb/errors"
"github.com/issue9/identicon"
)
const DefaultSize = 290
// RandomImageWithSize generates and returns a random avatar image unique to
// input data in custom size (height and width).
func RandomImageWithSize(size int, data []byte) (image.Image, error) {
randExtent := len(palette.WebSafe) - 32
rand.Seed(time.Now().UnixNano())
colorIndex := rand.Intn(randExtent)
backColorIndex := colorIndex - 1
if backColorIndex < 0 {
backColorIndex = randExtent - 1
}
// Define size, background, and forecolor
imgMaker, err := identicon.New(size,
palette.WebSafe[backColorIndex], palette.WebSafe[colorIndex:colorIndex+32]...)
if err != nil {
return nil, errors.Newf("identicon.New: %v", err)
}
return imgMaker.Make(data), nil
}
// RandomImage generates and returns a random avatar image unique to input data
// in DefaultSize (height and width).
func RandomImage(data []byte) (image.Image, error) {
return RandomImageWithSize(DefaultSize, data)
}