Merge pull request #3 from yosg/fix-floating-point-calculation-error

Thanks!
master v1.2.2
Vitali Fedulov 2023-08-08 22:02:00 +02:00 committed by GitHub
commit 8ce8881dc3
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),