mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-29 08:22:11 +02:00
22 lines
460 B
Go
22 lines
460 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 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)
|
|
}
|