0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00
imageproxy/transform/transform.go

62 lines
1.3 KiB
Go
Raw Normal View History

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"
"reflect"
2013-12-05 02:42:59 -05:00
"github.com/disintegration/imaging"
2013-12-05 02:42:59 -05:00
"github.com/willnorris/go-imageproxy/data"
)
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) {
if opt == nil || reflect.DeepEqual(opt, emptyOptions) {
// 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
}
// resize
if opt.Fit {
m = imaging.Fit(m, opt.Width, opt.Height, imaging.Lanczos)
} else {
m = imaging.Resize(m, opt.Width, opt.Height, imaging.Lanczos)
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
}