2021-03-10 15:24:13 -05:00
|
|
|
// Copyright 2013 The imageproxy authors.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2013-12-06 20:40:35 -05:00
|
|
|
|
2014-07-30 20:23:43 -05:00
|
|
|
package imageproxy
|
2013-12-05 02:42:59 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-06-01 09:51:14 -05:00
|
|
|
"fmt"
|
2013-12-05 02:42:59 -05:00
|
|
|
"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"
|
2017-09-09 00:35:11 -05:00
|
|
|
"io"
|
2017-09-26 19:54:15 -05:00
|
|
|
"log"
|
2017-05-15 12:55:49 -05:00
|
|
|
"math"
|
2013-12-05 02:42:59 -05:00
|
|
|
|
2013-12-06 12:23:04 -05:00
|
|
|
"github.com/disintegration/imaging"
|
2017-09-26 19:54:15 -05:00
|
|
|
"github.com/muesli/smartcrop"
|
2019-03-22 14:07:39 -05:00
|
|
|
"github.com/muesli/smartcrop/nfnt"
|
2017-11-10 17:07:07 -05:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2017-09-09 00:35:11 -05:00
|
|
|
"github.com/rwcarlsen/goexif/exif"
|
2019-06-10 23:20:46 -05:00
|
|
|
"golang.org/x/image/bmp" // register bmp format
|
2017-08-31 19:03:17 -05:00
|
|
|
"golang.org/x/image/tiff" // register tiff format
|
2017-06-01 10:10:34 -05:00
|
|
|
_ "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
|
|
|
)
|
|
|
|
|
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
|
|
|
|
2017-09-09 00:35:11 -05:00
|
|
|
// maximum distance into image to look for EXIF tags
|
|
|
|
const maxExifSize = 1 << 20
|
|
|
|
|
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) {
|
2016-05-02 21:23:00 -05:00
|
|
|
if !opt.transform() {
|
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
|
|
|
|
}
|
|
|
|
|
2017-09-09 00:35:11 -05:00
|
|
|
// apply EXIF orientation for jpeg and tiff source images. Read at most
|
|
|
|
// up to maxExifSize looking for EXIF tags.
|
|
|
|
if format == "jpeg" || format == "tiff" {
|
|
|
|
r := io.LimitReader(bytes.NewReader(img), maxExifSize)
|
|
|
|
if exifOpt := exifOrientation(r); exifOpt.transform() {
|
|
|
|
m = transformImage(m, exifOpt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 19:03:17 -05:00
|
|
|
// encode webp and tiff as jpeg by default
|
|
|
|
if format == "tiff" || format == "webp" {
|
|
|
|
format = "jpeg"
|
|
|
|
}
|
|
|
|
|
2017-06-01 09:51:14 -05:00
|
|
|
if opt.Format != "" {
|
|
|
|
format = opt.Format
|
|
|
|
}
|
|
|
|
|
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 {
|
2019-06-10 23:20:46 -05:00
|
|
|
case "bmp":
|
|
|
|
m = transformImage(m, opt)
|
|
|
|
err = bmp.Encode(buf, m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-04 12:02:25 -05:00
|
|
|
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
|
|
|
|
}
|
2017-08-31 19:03:17 -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)
|
2017-08-31 19:03:17 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
case "tiff":
|
|
|
|
m = transformImage(m, opt)
|
2019-03-22 03:05:59 -05:00
|
|
|
err = tiff.Encode(buf, m, &tiff.Options{Compression: tiff.Deflate, Predictor: true})
|
2015-05-29 09:31:10 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-06-01 09:51:14 -05:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported format: %v", format)
|
2014-12-04 12:02:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
2017-08-30 23:28:02 -05:00
|
|
|
// evaluateFloat interprets the option value f. If f is between 0 and 1, it is
|
|
|
|
// interpreted as a percentage of max, otherwise it is treated as an absolute
|
|
|
|
// value. If f is less than 0, 0 is returned.
|
|
|
|
func evaluateFloat(f float64, max int) int {
|
|
|
|
if 0 < f && f < 1 {
|
|
|
|
return int(float64(max) * f)
|
|
|
|
}
|
|
|
|
if f < 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return int(f)
|
|
|
|
}
|
|
|
|
|
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
|
2017-09-26 15:55:03 -05:00
|
|
|
imgW := m.Bounds().Dx()
|
|
|
|
imgH := m.Bounds().Dy()
|
2017-08-30 23:28:02 -05:00
|
|
|
w = evaluateFloat(opt.Width, imgW)
|
|
|
|
h = evaluateFloat(opt.Height, imgH)
|
2013-12-06 18:03:17 -05:00
|
|
|
|
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
|
|
|
|
}
|
2013-12-26 22:32:23 -05:00
|
|
|
}
|
2015-11-26 15:05:13 -05:00
|
|
|
|
2015-10-14 11:25:48 -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
|
|
|
|
2015-10-14 11:25:48 -05:00
|
|
|
return w, h, true
|
2015-10-14 11:15:57 -05:00
|
|
|
}
|
2013-12-26 22:32:23 -05:00
|
|
|
|
2019-03-22 14:07:39 -05:00
|
|
|
var smartcropAnalyzer = smartcrop.NewAnalyzer(nfnt.NewDefaultResizer())
|
|
|
|
|
2017-05-15 12:55:49 -05:00
|
|
|
// cropParams calculates crop rectangle parameters to keep it in image bounds
|
2017-09-26 15:55:03 -05:00
|
|
|
func cropParams(m image.Image, opt Options) image.Rectangle {
|
2017-09-26 19:54:15 -05:00
|
|
|
if !opt.SmartCrop && opt.CropX == 0 && opt.CropY == 0 && opt.CropWidth == 0 && opt.CropHeight == 0 {
|
2017-09-26 15:55:03 -05:00
|
|
|
return m.Bounds()
|
2017-05-15 12:55:49 -05:00
|
|
|
}
|
|
|
|
|
2017-08-31 02:27:35 -05:00
|
|
|
// width and height of image
|
2017-09-26 15:55:03 -05:00
|
|
|
imgW := m.Bounds().Dx()
|
|
|
|
imgH := m.Bounds().Dy()
|
2017-05-15 12:55:49 -05:00
|
|
|
|
2017-09-26 19:54:15 -05:00
|
|
|
if opt.SmartCrop {
|
|
|
|
w := evaluateFloat(opt.Width, imgW)
|
|
|
|
h := evaluateFloat(opt.Height, imgH)
|
2019-03-22 14:07:39 -05:00
|
|
|
r, err := smartcropAnalyzer.FindBestCrop(m, w, h)
|
2017-09-26 19:54:15 -05:00
|
|
|
if err != nil {
|
2019-03-22 14:07:39 -05:00
|
|
|
log.Printf("smartcrop error finding best crop: %v", err)
|
2017-09-26 19:54:15 -05:00
|
|
|
} else {
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 02:27:35 -05:00
|
|
|
// top left coordinate of crop
|
2017-09-26 15:55:03 -05:00
|
|
|
x0 := evaluateFloat(math.Abs(opt.CropX), imgW)
|
2017-08-31 02:27:35 -05:00
|
|
|
if opt.CropX < 0 {
|
2017-09-26 15:55:03 -05:00
|
|
|
x0 = imgW - x0 // measure from right
|
2017-08-31 02:27:35 -05:00
|
|
|
}
|
2017-09-26 15:55:03 -05:00
|
|
|
y0 := evaluateFloat(math.Abs(opt.CropY), imgH)
|
2017-08-31 02:27:35 -05:00
|
|
|
if opt.CropY < 0 {
|
2017-09-26 15:55:03 -05:00
|
|
|
y0 = imgH - y0 // measure from bottom
|
2017-08-31 02:27:35 -05:00
|
|
|
}
|
2017-05-15 12:55:49 -05:00
|
|
|
|
2017-08-31 02:27:35 -05:00
|
|
|
// width and height of crop
|
|
|
|
w := evaluateFloat(opt.CropWidth, imgW)
|
|
|
|
if w == 0 {
|
|
|
|
w = imgW
|
2017-05-15 12:55:49 -05:00
|
|
|
}
|
2017-08-31 02:27:35 -05:00
|
|
|
h := evaluateFloat(opt.CropHeight, imgH)
|
|
|
|
if h == 0 {
|
|
|
|
h = imgH
|
2017-05-15 12:55:49 -05:00
|
|
|
}
|
|
|
|
|
2017-08-31 02:27:35 -05:00
|
|
|
// bottom right coordinate of crop
|
2017-09-26 15:55:03 -05:00
|
|
|
x1 := x0 + w
|
2017-08-31 02:27:35 -05:00
|
|
|
if x1 > imgW {
|
|
|
|
x1 = imgW
|
|
|
|
}
|
2017-09-26 15:55:03 -05:00
|
|
|
y1 := y0 + h
|
2017-08-31 02:27:35 -05:00
|
|
|
if y1 > imgH {
|
|
|
|
y1 = imgH
|
|
|
|
}
|
2017-05-15 12:55:49 -05:00
|
|
|
|
2017-09-26 15:55:03 -05:00
|
|
|
return image.Rect(x0, y0, x1, y1)
|
2017-05-15 12:55:49 -05:00
|
|
|
}
|
|
|
|
|
2017-09-09 00:35:11 -05:00
|
|
|
// read EXIF orientation tag from r and adjust opt to orient image correctly.
|
|
|
|
func exifOrientation(r io.Reader) (opt Options) {
|
|
|
|
// Exif Orientation Tag values
|
|
|
|
// http://sylvana.net/jpegcrop/exif_orientation.html
|
|
|
|
const (
|
|
|
|
topLeftSide = 1
|
|
|
|
topRightSide = 2
|
|
|
|
bottomRightSide = 3
|
|
|
|
bottomLeftSide = 4
|
|
|
|
leftSideTop = 5
|
|
|
|
rightSideTop = 6
|
|
|
|
rightSideBottom = 7
|
|
|
|
leftSideBottom = 8
|
|
|
|
)
|
|
|
|
|
|
|
|
ex, err := exif.Decode(r)
|
|
|
|
if err != nil {
|
|
|
|
return opt
|
|
|
|
}
|
|
|
|
tag, err := ex.Get(exif.Orientation)
|
|
|
|
if err != nil {
|
|
|
|
return opt
|
|
|
|
}
|
|
|
|
orient, err := tag.Int(0)
|
|
|
|
if err != nil {
|
|
|
|
return opt
|
|
|
|
}
|
|
|
|
|
|
|
|
switch orient {
|
|
|
|
case topLeftSide:
|
|
|
|
// do nothing
|
|
|
|
case topRightSide:
|
|
|
|
opt.FlipHorizontal = true
|
|
|
|
case bottomRightSide:
|
|
|
|
opt.Rotate = 180
|
|
|
|
case bottomLeftSide:
|
|
|
|
opt.FlipVertical = true
|
|
|
|
case leftSideTop:
|
|
|
|
opt.Rotate = 90
|
|
|
|
opt.FlipVertical = true
|
|
|
|
case rightSideTop:
|
|
|
|
opt.Rotate = -90
|
|
|
|
case rightSideBottom:
|
|
|
|
opt.Rotate = 90
|
|
|
|
opt.FlipHorizontal = true
|
|
|
|
case leftSideBottom:
|
|
|
|
opt.Rotate = 90
|
|
|
|
}
|
|
|
|
return opt
|
|
|
|
}
|
|
|
|
|
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 {
|
2020-02-24 11:16:36 -05:00
|
|
|
timer := prometheus.NewTimer(metricTransformationDuration)
|
2017-11-10 17:07:07 -05:00
|
|
|
defer timer.ObserveDuration()
|
|
|
|
|
2017-09-26 19:04:04 -05:00
|
|
|
// Parse crop and resize parameters before applying any transforms.
|
|
|
|
// This is to ensure that any percentage-based values are based off the
|
|
|
|
// size of the original image.
|
|
|
|
rect := cropParams(m, opt)
|
|
|
|
w, h, resize := resizeParams(m, opt)
|
|
|
|
|
2017-05-15 12:55:49 -05:00
|
|
|
// crop if needed
|
2017-09-26 19:04:04 -05:00
|
|
|
if !m.Bounds().Eq(rect) {
|
|
|
|
m = imaging.Crop(m, rect)
|
2017-05-15 12:55:49 -05:00
|
|
|
}
|
2015-10-14 11:15:57 -05:00
|
|
|
// resize if needed
|
2017-09-26 19:04:04 -05:00
|
|
|
if resize {
|
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-06 21:03:16 -05:00
|
|
|
// rotate
|
2017-09-06 16:06:52 -05:00
|
|
|
rotate := float64(opt.Rotate) - math.Floor(float64(opt.Rotate)/360)*360
|
|
|
|
switch rotate {
|
2013-12-06 21:03:16 -05:00
|
|
|
case 90:
|
|
|
|
m = imaging.Rotate90(m)
|
|
|
|
case 180:
|
|
|
|
m = imaging.Rotate180(m)
|
|
|
|
case 270:
|
|
|
|
m = imaging.Rotate270(m)
|
|
|
|
}
|
|
|
|
|
2017-09-06 17:01:13 -05:00
|
|
|
// flip
|
|
|
|
if opt.FlipVertical {
|
|
|
|
m = imaging.FlipV(m)
|
|
|
|
}
|
|
|
|
if opt.FlipHorizontal {
|
|
|
|
m = imaging.FlipH(m)
|
|
|
|
}
|
|
|
|
|
2014-12-04 12:02:25 -05:00
|
|
|
return m
|
2013-12-05 02:42:59 -05:00
|
|
|
}
|