mirror of
https://github.com/gogs/gogs.git
synced 2026-03-02 10:11:04 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: unknwon <2946214+unknwon@users.noreply.github.com>
40 lines
1.0 KiB
Go
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)
|
|
}
|