Exporting ResizeByNearest func
parent
93d6a8e184
commit
f053061208
2
icon.go
2
icon.go
|
@ -42,7 +42,7 @@ func IconNN(img image.Image) IconT {
|
|||
// Resizing to a large icon approximating average color
|
||||
// values of the source image. YCbCr space is used instead
|
||||
// of RGB for better results in image comparison.
|
||||
resImg, imgSize := resizeByNearest(
|
||||
resImg, imgSize := ResizeByNearest(
|
||||
img, image.Point{resizedImgSize, resizedImgSize})
|
||||
largeIcon := sizedIcon(largeIconSize)
|
||||
var r, g, b, sumR, sumG, sumB uint32
|
||||
|
|
4
image.go
4
image.go
|
@ -24,10 +24,10 @@ func Open(path string) (img image.Image, err error) {
|
|||
return img, err
|
||||
}
|
||||
|
||||
// resizeByNearest resizes an image to the destination size
|
||||
// ResizeByNearest resizes an image to the destination size
|
||||
// with the nearest neighbour method. It also returns the source
|
||||
// image size.
|
||||
func resizeByNearest(
|
||||
func ResizeByNearest(
|
||||
src image.Image, dstSize image.Point) (
|
||||
dst image.RGBA, srcSize image.Point) {
|
||||
// Original image size.
|
||||
|
|
|
@ -35,7 +35,7 @@ func TestResizeByNearest(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Error("Cannot decode", path.Join(testDir, table.outFile))
|
||||
}
|
||||
resampled, srcSize := resizeByNearest(inImg,
|
||||
resampled, srcSize := ResizeByNearest(inImg,
|
||||
image.Point{table.dstX, table.dstY})
|
||||
if !reflect.DeepEqual(
|
||||
outImg.(*image.RGBA), &resampled) ||
|
||||
|
|
Loading…
Reference in New Issue