Explorar o código

Merge branch 'no-image-shift' of http://github.com/jsummers/nfnt.resize
Merge branch 'fix-canvas-size-issue'

jst %!s(int64=13) %!d(string=hai) anos
pai
achega
852f4a47e7
Modificáronse 2 ficheiros con 4 adicións e 2 borrados
  1. 3 1
      resize.go
  2. 1 1
      resize_test.go

+ 3 - 1
resize.go

@@ -66,6 +66,8 @@ func Resize(width, height uint, img image.Image, interp InterpolationFunction) i
 
 	resizedImg := image.NewRGBA64(image.Rect(0, 0, int(0.7+oldWidth/scaleX), int(0.7+oldHeight/scaleY)))
 	b := resizedImg.Bounds()
+	adjustX := 0.5 * ((oldWidth-1.0)/scaleX - float32(b.Dx()-1))
+	adjustY := 0.5 * ((oldHeight-1.0)/scaleY - float32(b.Dy()-1))
 
 	n := numJobs(b.Dy())
 	c := make(chan int, n)
@@ -76,7 +78,7 @@ func Resize(width, height uint, img image.Image, interp InterpolationFunction) i
 			var color color.RGBA64
 			for y := b.Min.Y; y < b.Max.Y; y++ {
 				for x := b.Min.X; x < b.Max.X; x++ {
-					u, v = t.Eval(float32(x), float32(y))
+					u, v = t.Eval(float32(x)+adjustX, float32(y)+adjustY)
 					color = filter.Interpolate(u, v)
 
 					i := resizedImg.PixOffset(x, y)

+ 1 - 1
resize_test.go

@@ -16,7 +16,7 @@ func init() {
 
 func Test_Nearest(t *testing.T) {
 	m := Resize(6, 0, img, NearestNeighbor)
-	if m.At(2, 2) == m.At(3, 3) {
+	if m.At(1, 1) == m.At(2, 2) {
 		t.Fail()
 	}
 }