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

165 lines
3.8 KiB
Go
Raw Normal View History

// 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.
package imageproxy
2013-12-05 02:42:59 -05:00
import (
"bytes"
"fmt"
2013-12-05 02:42:59 -05:00
"image"
_ "image/gif" // register gif format
2013-12-05 02:42:59 -05:00
"image/jpeg"
"image/png"
"github.com/disintegration/imaging"
_ "golang.org/x/image/webp" // register webp format
2015-05-29 10:02:30 -05:00
"willnorris.com/go/gifresize"
2013-12-05 02:42:59 -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
// 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.
func Transform(img []byte, opt Options) ([]byte, error) {
if !opt.transform() {
// bail if no transformation was requested
return img, nil
}
2013-12-05 02:42:59 -05:00
// decode image
m, format, err := image.Decode(bytes.NewReader(img))
2013-12-05 02:42:59 -05:00
if err != nil {
return nil, err
}
if opt.Format != "" {
format = opt.Format
}
// transform and encode image
buf := new(bytes.Buffer)
switch format {
case "gif":
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
}
case "jpeg", "webp": // default to encoding webp as jpeg
quality := opt.Quality
if quality == 0 {
quality = defaultQuality
}
m = transformImage(m, opt)
err = jpeg.Encode(buf, m, &jpeg.Options{Quality: quality})
if err != nil {
return nil, err
}
case "png":
m = transformImage(m, opt)
err = png.Encode(buf, m)
if err != nil {
return nil, err
}
default:
return nil, fmt.Errorf("unsupported format: %v", format)
}
return buf.Bytes(), nil
}
2015-11-26 15:05:13 -05:00
// resizeParams determines if the image needs to be resized, and if so, the
// dimensions to resize to.
func resizeParams(m image.Image, opt Options) (w, h int, resize bool) {
2013-12-06 21:03:16 -05:00
// convert percentage width and height values to absolute values
imgW := m.Bounds().Max.X - m.Bounds().Min.X
imgH := m.Bounds().Max.Y - m.Bounds().Min.Y
if 0 < opt.Width && opt.Width < 1 {
w = int(float64(imgW) * opt.Width)
} else if opt.Width < 0 {
w = 0
} else {
w = int(opt.Width)
}
if 0 < opt.Height && opt.Height < 1 {
h = int(float64(imgH) * opt.Height)
} else if opt.Height < 0 {
h = 0
} else {
h = int(opt.Height)
}
2015-11-26 15:05:13 -05:00
// never resize larger than the original image unless specifically allowed
2015-08-12 13:39:38 -05:00
if !opt.ScaleUp {
if w > imgW {
w = imgW
}
if h > imgH {
h = imgH
}
}
2015-11-26 15:05:13 -05:00
// if requested width and height match the original, skip resizing
if (w == imgW || w == 0) && (h == imgH || h == 0) {
return 0, 0, false
}
2015-11-26 15:05:13 -05:00
return w, h, true
2015-10-14 11:15:57 -05:00
}
2015-10-14 11:15:57 -05:00
// transformImage modifies the image m based on the transformations specified
// in opt.
func transformImage(m image.Image, opt Options) image.Image {
// resize if needed
2015-11-26 15:05:13 -05:00
if w, h, resize := resizeParams(m, opt); resize {
if opt.Fit {
2014-12-04 13:34:26 -05:00
m = imaging.Fit(m, w, h, resampleFilter)
} else {
if w == 0 || h == 0 {
2014-12-04 13:34:26 -05:00
m = imaging.Resize(m, w, h, resampleFilter)
} else {
2014-12-04 13:34:26 -05:00
m = imaging.Thumbnail(m, w, h, resampleFilter)
}
}
2013-12-05 02:42:59 -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)
}
return m
2013-12-05 02:42:59 -05:00
}