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

30 lines
682 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 trim(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
if !po.Trim.Enabled {
return nil
}
2022-06-23 13:59:04 +02:00
// We need to import color profile before trim
if err := importColorProfile(pctx, img, po, imgdata); err != nil {
return err
}
2021-04-26 13:52:50 +02:00
if err := img.Trim(po.Trim.Threshold, po.Trim.Smart, po.Trim.Color, po.Trim.EqualHor, po.Trim.EqualVer); err != nil {
return err
}
2022-06-23 13:23:04 +02:00
if err := img.CopyMemory(); err != nil {
2021-04-26 13:52:50 +02:00
return err
}
pctx.trimmed = true
return nil
}