mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-10-10 12:12:40 +02:00
49 lines
974 B
Go
49 lines
974 B
Go
package processing
|
|
|
|
import (
|
|
"github.com/imgproxy/imgproxy/v2/imagedata"
|
|
"github.com/imgproxy/imgproxy/v2/options"
|
|
"github.com/imgproxy/imgproxy/v2/vips"
|
|
)
|
|
|
|
func applyFilters(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
|
|
if po.Blur == 0 && po.Sharpen == 0 {
|
|
return nil
|
|
}
|
|
|
|
if err := copyMemoryAndCheckTimeout(pctx.ctx, img); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := img.RgbColourspace(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// When image has alpha, we need to premultiply it to get rid of black edges
|
|
if err := img.Premultiply(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if po.Blur > 0 {
|
|
if err := img.Blur(po.Blur); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if po.Sharpen > 0 {
|
|
if err := img.Sharpen(po.Sharpen); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if err := img.Unpremultiply(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := img.CastUchar(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return copyMemoryAndCheckTimeout(pctx.ctx, img)
|
|
}
|