mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-10-09 19:52:30 +02:00
* ImageData.Headers() * *ImageData -> ImageData * withmatt -> httpheaders of our own * .Clone() headers, nil * NewFromBytesWithFormat -> nil * svg.go -> do not Clone()
30 lines
597 B
Go
30 lines
597 B
Go
package processing
|
|
|
|
import (
|
|
"github.com/imgproxy/imgproxy/v3/imagedata"
|
|
"github.com/imgproxy/imgproxy/v3/options"
|
|
"github.com/imgproxy/imgproxy/v3/vips"
|
|
)
|
|
|
|
func rotateAndFlip(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata imagedata.ImageData) error {
|
|
if pctx.angle%360 == 0 && po.Rotate%360 == 0 && !pctx.flip {
|
|
return nil
|
|
}
|
|
|
|
if err := img.CopyMemory(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := img.Rotate(pctx.angle); err != nil {
|
|
return err
|
|
}
|
|
|
|
if pctx.flip {
|
|
if err := img.Flip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return img.Rotate(po.Rotate)
|
|
}
|