2014-03-23 04:13:23 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-03-22 22:24:09 -06:00
|
|
|
package avatar
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-03-23 01:55:27 -06:00
|
|
|
"image"
|
2015-08-08 21:46:10 -06:00
|
|
|
"image/color/palette"
|
|
|
|
"math/rand"
|
2014-03-22 22:24:09 -06:00
|
|
|
"time"
|
2014-03-23 01:55:27 -06:00
|
|
|
|
2015-09-26 15:54:02 -06:00
|
|
|
"github.com/issue9/identicon"
|
2014-03-22 22:24:09 -06:00
|
|
|
)
|
|
|
|
|
2016-11-25 01:37:04 -07:00
|
|
|
// AvatarSize returns avatar's size
|
|
|
|
const AvatarSize = 290
|
2015-08-08 21:46:10 -06:00
|
|
|
|
2016-11-25 01:37:04 -07:00
|
|
|
// RandomImageSize generates and returns a random avatar image unique to input data
|
2016-02-20 15:10:05 -07:00
|
|
|
// in custom size (height and width).
|
2016-02-14 21:14:55 -07:00
|
|
|
func RandomImageSize(size int, data []byte) (image.Image, error) {
|
2015-08-08 21:46:10 -06:00
|
|
|
randExtent := len(palette.WebSafe) - 32
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
colorIndex := rand.Intn(randExtent)
|
|
|
|
backColorIndex := colorIndex - 1
|
|
|
|
if backColorIndex < 0 {
|
|
|
|
backColorIndex = randExtent - 1
|
|
|
|
}
|
|
|
|
|
2016-02-14 21:14:55 -07:00
|
|
|
// Define size, background, and forecolor
|
|
|
|
imgMaker, err := identicon.New(size,
|
2015-08-08 21:46:10 -06:00
|
|
|
palette.WebSafe[backColorIndex], palette.WebSafe[colorIndex:colorIndex+32]...)
|
|
|
|
if err != nil {
|
2016-02-14 21:14:55 -07:00
|
|
|
return nil, fmt.Errorf("identicon.New: %v", err)
|
2015-08-08 21:46:10 -06:00
|
|
|
}
|
|
|
|
return imgMaker.Make(data), nil
|
|
|
|
}
|
|
|
|
|
2016-02-20 15:10:05 -07:00
|
|
|
// RandomImage generates and returns a random avatar image unique to input data
|
|
|
|
// in default size (height and width).
|
2016-02-14 21:14:55 -07:00
|
|
|
func RandomImage(data []byte) (image.Image, error) {
|
2016-11-25 01:37:04 -07:00
|
|
|
return RandomImageSize(AvatarSize, data)
|
2014-03-22 22:24:09 -06:00
|
|
|
}
|