From 79c841a260626cee2aed935f22f29efb7a80c16d Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 8 Dec 2017 05:44:43 +0000 Subject: [PATCH] Bugfix to PR 4036 --- src/Object/Image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Object/Image.php b/src/Object/Image.php index 79fbf3a990..f5ba1537af 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -350,7 +350,7 @@ class Image // FIXME - implement horizantal bias for scaling as in followin GD functions // to allow very tall images to be constrained only horizontally. - $this->image->scaleDown($dest_width, $dest_height); + $this->image->scaleImage($dest_width, $dest_height); } while ($this->image->nextImage()); // These may not be necessary any more