1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-08 10:45:04 +02:00
imgproxy/processing/scale.go

23 lines
550 B
Go
Raw Normal View History

2021-04-26 13:52:50 +02:00
package processing
import (
2021-09-30 16:23:30 +02:00
"github.com/imgproxy/imgproxy/v3/imagedata"
"github.com/imgproxy/imgproxy/v3/options"
"github.com/imgproxy/imgproxy/v3/vips"
2021-04-26 13:52:50 +02:00
)
func scale(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
if pctx.wscale != 1 || pctx.hscale != 1 {
2022-01-17 14:41:53 +02:00
wscale, hscale := pctx.wscale, pctx.hscale
if (pctx.angle+po.Rotate)%180 == 90 {
wscale, hscale = hscale, wscale
}
if err := img.Resize(wscale, hscale); err != nil {
2021-04-26 13:52:50 +02:00
return err
}
}
2022-06-23 13:23:04 +02:00
return img.CopyMemory()
2021-04-26 13:52:50 +02:00
}