Files
imgproxy/processing/scale.go
Victor Sokolov 3d14c85de3 IMG-13: http.Header, *ImageData -> ImageData (#1473)
* ImageData.Headers()

* *ImageData -> ImageData

* withmatt -> httpheaders of our own

* .Clone() headers, nil

* NewFromBytesWithFormat -> nil

* svg.go -> do not Clone()
2025-08-01 15:44:21 +02:00

21 lines
497 B
Go

package processing
import (
"github.com/imgproxy/imgproxy/v3/imagedata"
"github.com/imgproxy/imgproxy/v3/options"
"github.com/imgproxy/imgproxy/v3/vips"
)
func scale(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata imagedata.ImageData) error {
if pctx.wscale == 1 && pctx.hscale == 1 {
return nil
}
wscale, hscale := pctx.wscale, pctx.hscale
if (pctx.angle+po.Rotate)%180 == 90 {
wscale, hscale = hscale, wscale
}
return img.Resize(wscale, hscale)
}