Update image.go

Fix floating point calculation error.
pull/3/head
yosg 2023-08-06 22:10:43 +08:00 committed by GitHub
parent b2158637eb
commit 2508efb096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ func resizeByNearest(
for y := 0; y < dstSize.Y; y++ {
for x := 0; x < dstSize.X; x++ {
r, g, b, a = src.At(
int(float64(x)*xScale+float64(xMin)),
int(float64(y)*yScale+float64(yMin))).RGBA()
int(float64(x)*xScale)+xMin,
int(float64(y)*yScale)+yMin).RGBA()
dst.Set(x, y, color.RGBA{
uint8(r >> 8),
uint8(g >> 8),