2013-12-05 02:42:59 -05:00
|
|
|
// Package transform handles image transformation such as resizing.
|
|
|
|
package transform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"image"
|
|
|
|
"image/gif"
|
|
|
|
"image/jpeg"
|
|
|
|
"image/png"
|
2013-12-06 12:23:04 -05:00
|
|
|
"reflect"
|
2013-12-05 02:42:59 -05:00
|
|
|
|
2013-12-06 12:23:04 -05:00
|
|
|
"github.com/disintegration/imaging"
|
2013-12-05 02:42:59 -05:00
|
|
|
"github.com/willnorris/go-imageproxy/data"
|
|
|
|
)
|
|
|
|
|
2013-12-06 12:23:04 -05:00
|
|
|
var emptyOptions = new(data.Options)
|
|
|
|
|
2013-12-05 02:42:59 -05:00
|
|
|
// Transform the provided image.
|
|
|
|
func Transform(img data.Image, opt *data.Options) (*data.Image, error) {
|
2013-12-06 12:23:04 -05:00
|
|
|
if opt == nil || reflect.DeepEqual(opt, emptyOptions) {
|
2013-12-06 14:01:34 -05:00
|
|
|
// bail if no transformation was requested
|
|
|
|
return &img, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if opt.Width == 0 && opt.Height == 0 {
|
|
|
|
// TODO(willnorris): Currently, only resize related options are
|
|
|
|
// supported, so bail if no sizes are specified. Remove this
|
|
|
|
// check if we ever support non-resizing transformations.
|
2013-12-05 02:42:59 -05:00
|
|
|
return &img, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode image
|
|
|
|
m, format, err := image.Decode(bytes.NewReader(img.Bytes))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2013-12-06 18:03:17 -05:00
|
|
|
var h, w int
|
|
|
|
if opt.Width > 0 && opt.Width < 1 {
|
|
|
|
w = int(float64(m.Bounds().Max.X-m.Bounds().Min.X) * opt.Width)
|
|
|
|
} else {
|
|
|
|
w = int(opt.Width)
|
|
|
|
}
|
|
|
|
if opt.Height > 0 && opt.Height < 1 {
|
|
|
|
h = int(float64(m.Bounds().Max.Y-m.Bounds().Min.Y) * opt.Height)
|
|
|
|
} else {
|
|
|
|
h = int(opt.Height)
|
|
|
|
}
|
|
|
|
|
2013-12-05 02:42:59 -05:00
|
|
|
// resize
|
2013-12-06 14:01:34 -05:00
|
|
|
if opt.Fit {
|
2013-12-06 18:03:17 -05:00
|
|
|
m = imaging.Fit(m, w, h, imaging.Lanczos)
|
2013-12-06 14:01:34 -05:00
|
|
|
} else {
|
2013-12-06 15:06:01 -05:00
|
|
|
if opt.Width == 0 || opt.Height == 0 {
|
2013-12-06 18:03:17 -05:00
|
|
|
m = imaging.Resize(m, w, h, imaging.Lanczos)
|
2013-12-06 15:06:01 -05:00
|
|
|
} else {
|
2013-12-06 18:03:17 -05:00
|
|
|
m = imaging.Thumbnail(m, w, h, imaging.Lanczos)
|
2013-12-06 15:06:01 -05:00
|
|
|
}
|
2013-12-05 02:42:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// encode image
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
switch format {
|
|
|
|
case "gif":
|
|
|
|
gif.Encode(buf, m, nil)
|
|
|
|
break
|
|
|
|
case "jpeg":
|
|
|
|
jpeg.Encode(buf, m, nil)
|
|
|
|
break
|
|
|
|
case "png":
|
|
|
|
png.Encode(buf, m)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
img.Bytes = buf.Bytes()
|
|
|
|
return &img, nil
|
|
|
|
}
|