1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package processing
- import (
- "github.com/imgproxy/imgproxy/v3/imagedata"
- "github.com/imgproxy/imgproxy/v3/imath"
- "github.com/imgproxy/imgproxy/v3/options"
- "github.com/imgproxy/imgproxy/v3/vips"
- )
- func applyFilters(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
- if po.Blur == 0 && po.Sharpen == 0 && po.Pixelate <= 1 {
- 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 po.Pixelate > 1 {
- pixels := imath.Min(po.Pixelate, imath.Min(img.Width(), img.Height()))
- if err := img.Pixelate(pixels); 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)
- }
|