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

18 lines
459 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 {
if err := img.Resize(pctx.wscale, pctx.hscale); err != nil {
return err
}
}
return copyMemoryAndCheckTimeout(pctx.ctx, img)
}