2013-12-06 20:40:35 -05:00
|
|
|
// Copyright 2013 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2014-07-30 20:23:43 -05:00
|
|
|
package imageproxy
|
2013-12-05 02:42:59 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"image"
|
2015-05-15 18:07:00 -05:00
|
|
|
_ "image/gif" // register gif format
|
2013-12-05 02:42:59 -05:00
|
|
|
"image/jpeg"
|
|
|
|
"image/png"
|
|
|
|
|
2013-12-06 12:23:04 -05:00
|
|
|
"github.com/disintegration/imaging"
|
2015-05-29 10:02:30 -05:00
|
|
|
"willnorris.com/go/gifresize"
|
2013-12-05 02:42:59 -05:00
|
|
|
)
|
|
|
|
|
2015-02-12 17:21:26 -05:00
|
|
|
// default compression quality of resized jpegs
|
|
|
|
const defaultQuality = 95
|
2014-11-20 00:59:12 -05:00
|
|
|
|
2014-12-04 13:34:26 -05:00
|
|
|
// resample filter used when resizing images
|
|
|
|
var resampleFilter = imaging.Lanczos
|
|
|
|
|
2014-12-04 12:02:25 -05:00
|
|
|
// Transform the provided image. img should contain the raw bytes of an
|
|
|
|
// encoded image in one of the supported formats (gif, jpeg, or png). The
|
|
|
|
// bytes of a similarly encoded image is returned.
|
2014-11-20 00:59:52 -05:00
|
|
|
func Transform(img []byte, opt Options) ([]byte, error) {
|
|
|
|
if opt == emptyOptions {
|
2013-12-06 14:01:34 -05:00
|
|
|
// bail if no transformation was requested
|
2013-12-26 11:27:07 -05:00
|
|
|
return img, nil
|
2013-12-06 14:01:34 -05:00
|
|
|
}
|
|
|
|
|
2013-12-05 02:42:59 -05:00
|
|
|
// decode image
|
2013-12-26 11:27:07 -05:00
|
|
|
m, format, err := image.Decode(bytes.NewReader(img))
|
2013-12-05 02:42:59 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-15 18:07:00 -05:00
|
|
|
// transform and encode image
|
2014-12-04 12:02:25 -05:00
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
switch format {
|
|
|
|
case "gif":
|
2015-05-15 18:07:00 -05:00
|
|
|
fn := func(img image.Image) image.Image {
|
|
|
|
return transformImage(img, opt)
|
|
|
|
}
|
|
|
|
err = gifresize.Process(buf, bytes.NewReader(img), fn)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-04 12:02:25 -05:00
|
|
|
case "jpeg":
|
2015-01-12 12:32:00 -05:00
|
|
|
quality := opt.Quality
|
|
|
|
if quality == 0 {
|
2015-02-12 17:21:26 -05:00
|
|
|
quality = defaultQuality
|
2015-01-12 12:32:00 -05:00
|
|
|
}
|
|
|
|
|
2015-05-15 18:07:00 -05:00
|
|
|
m = transformImage(m, opt)
|
2015-05-29 09:31:10 -05:00
|
|
|
err = jpeg.Encode(buf, m, &jpeg.Options{Quality: quality})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-04 12:02:25 -05:00
|
|
|
case "png":
|
2015-05-15 18:07:00 -05:00
|
|
|
m = transformImage(m, opt)
|
2015-05-29 09:31:10 -05:00
|
|
|
err = png.Encode(buf, m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-04 12:02:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// transformImage modifies the image m based on the transformations specified
|
|
|
|
// in opt.
|
|
|
|
func transformImage(m image.Image, opt Options) image.Image {
|
2013-12-06 21:03:16 -05:00
|
|
|
// convert percentage width and height values to absolute values
|
2013-12-26 22:32:23 -05:00
|
|
|
imgW := m.Bounds().Max.X - m.Bounds().Min.X
|
|
|
|
imgH := m.Bounds().Max.Y - m.Bounds().Min.Y
|
2014-11-23 17:01:50 -05:00
|
|
|
var w, h int
|
|
|
|
if 0 < opt.Width && opt.Width < 1 {
|
2013-12-26 22:32:23 -05:00
|
|
|
w = int(float64(imgW) * opt.Width)
|
2014-11-23 17:01:50 -05:00
|
|
|
} else if opt.Width < 0 {
|
|
|
|
w = 0
|
2013-12-06 18:03:17 -05:00
|
|
|
} else {
|
|
|
|
w = int(opt.Width)
|
|
|
|
}
|
2014-11-23 17:01:50 -05:00
|
|
|
if 0 < opt.Height && opt.Height < 1 {
|
2013-12-26 22:32:23 -05:00
|
|
|
h = int(float64(imgH) * opt.Height)
|
2014-11-23 17:01:50 -05:00
|
|
|
} else if opt.Height < 0 {
|
|
|
|
h = 0
|
2013-12-06 18:03:17 -05:00
|
|
|
} else {
|
|
|
|
h = int(opt.Height)
|
|
|
|
}
|
|
|
|
|
2013-12-26 22:32:23 -05:00
|
|
|
// never resize larger than the original image
|
2015-08-12 13:39:38 -05:00
|
|
|
if !opt.ScaleUp {
|
|
|
|
if w > imgW {
|
|
|
|
w = imgW
|
|
|
|
}
|
|
|
|
if h > imgH {
|
|
|
|
h = imgH
|
|
|
|
}
|
2013-12-26 22:32:23 -05:00
|
|
|
}
|
|
|
|
|
2013-12-05 02:42:59 -05:00
|
|
|
// resize
|
2013-12-26 11:23:27 -05:00
|
|
|
if w != 0 || h != 0 {
|
2013-12-07 01:28:53 -05:00
|
|
|
if opt.Fit {
|
2014-12-04 13:34:26 -05:00
|
|
|
m = imaging.Fit(m, w, h, resampleFilter)
|
2013-12-06 15:06:01 -05:00
|
|
|
} else {
|
2013-12-26 11:23:27 -05:00
|
|
|
if w == 0 || h == 0 {
|
2014-12-04 13:34:26 -05:00
|
|
|
m = imaging.Resize(m, w, h, resampleFilter)
|
2013-12-07 01:28:53 -05:00
|
|
|
} else {
|
2014-12-04 13:34:26 -05:00
|
|
|
m = imaging.Thumbnail(m, w, h, resampleFilter)
|
2013-12-07 01:28:53 -05:00
|
|
|
}
|
2013-12-06 15:06:01 -05:00
|
|
|
}
|
2013-12-05 02:42:59 -05:00
|
|
|
}
|
|
|
|
|
2013-12-07 01:18:44 -05:00
|
|
|
// flip
|
|
|
|
if opt.FlipVertical {
|
|
|
|
m = imaging.FlipV(m)
|
|
|
|
}
|
|
|
|
if opt.FlipHorizontal {
|
|
|
|
m = imaging.FlipH(m)
|
|
|
|
}
|
|
|
|
|
2013-12-06 21:03:16 -05:00
|
|
|
// rotate
|
|
|
|
switch opt.Rotate {
|
|
|
|
case 90:
|
|
|
|
m = imaging.Rotate90(m)
|
|
|
|
case 180:
|
|
|
|
m = imaging.Rotate180(m)
|
|
|
|
case 270:
|
|
|
|
m = imaging.Rotate270(m)
|
|
|
|
}
|
|
|
|
|
2014-12-04 12:02:25 -05:00
|
|
|
return m
|
2013-12-05 02:42:59 -05:00
|
|
|
}
|