mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-08 10:45:04 +02:00
21 lines
691 B
Go
21 lines
691 B
Go
|
package processing
|
||
|
|
||
|
import (
|
||
|
"github.com/imgproxy/imgproxy/v2/imagedata"
|
||
|
"github.com/imgproxy/imgproxy/v2/imath"
|
||
|
"github.com/imgproxy/imgproxy/v2/options"
|
||
|
"github.com/imgproxy/imgproxy/v2/vips"
|
||
|
)
|
||
|
|
||
|
func extend(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
|
||
|
resultWidth := imath.Scale(po.Width, po.Dpr)
|
||
|
resultHeight := imath.Scale(po.Height, po.Dpr)
|
||
|
|
||
|
if !po.Extend.Enabled || (resultWidth <= img.Width() && resultHeight <= img.Height()) {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
offX, offY := calcPosition(resultWidth, resultHeight, img.Width(), img.Height(), &po.Extend.Gravity, false)
|
||
|
return img.Embed(resultWidth, resultHeight, offX, offY)
|
||
|
}
|