1
0
Fork 0
forked from forgejo/forgejo

Better builtin avatar generator (#17707)

This PR fixes the builtin avatar generator.

1. The random background color makes some images very dirty. So now we only use white background for avatars.
2. We use left-right mirror avatars to satisfy #14799
3. Fix a small padding error in the algorithm
This commit is contained in:
wxiaoguang 2021-11-20 01:10:41 +08:00 committed by GitHub
parent 38347aa16f
commit a8fd76557b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 417 additions and 376 deletions

View file

@ -50,7 +50,7 @@ import (
"bytes"
"fmt"
"image"
"image/color/palette"
"image/color"
_ "image/gif" // for processing gif images
_ "image/jpeg" // for processing jpeg images
@ -76,7 +76,7 @@ import (
"bytes"
"fmt"
"image"
"image/color/palette"
"image/color"
_ "image/gif" // for processing gif images
_ "image/jpeg" // for processing jpeg images