mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-03-22 20:21:28 +02:00
Fix force scale + rotation
This commit is contained in:
parent
7a968d5fed
commit
9756dc8ba8
@ -10,6 +10,7 @@
|
||||
|
||||
### Fix
|
||||
- Fix Datadog support.
|
||||
- Fix `force` resizing + rotation.
|
||||
|
||||
## [3.1.3] - 2021-12-17
|
||||
### Fix
|
||||
|
@ -8,7 +8,12 @@ import (
|
||||
|
||||
func scale(pctx *pipelineContext, img *vips.Image, po *options.ProcessingOptions, imgdata *imagedata.ImageData) error {
|
||||
if pctx.wscale != 1 || pctx.hscale != 1 {
|
||||
if err := img.Resize(pctx.wscale, pctx.hscale); err != nil {
|
||||
wscale, hscale := pctx.wscale, pctx.hscale
|
||||
if (pctx.angle+po.Rotate)%180 == 90 {
|
||||
wscale, hscale = hscale, wscale
|
||||
}
|
||||
|
||||
if err := img.Resize(wscale, hscale); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user