mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-24 08:12:38 +02:00
18 lines
417 B
Go
18 lines
417 B
Go
package processing
|
|
|
|
import (
|
|
"github.com/imgproxy/imgproxy/v3/imagedata"
|
|
"github.com/imgproxy/imgproxy/v3/options"
|
|
"github.com/imgproxy/imgproxy/v3/vips"
|
|
)
|
|
|
|
func finalize(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
|
|
if po.StripMetadata {
|
|
if err := img.Strip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return copyMemoryAndCheckTimeout(pctx.ctx, img)
|
|
}
|