Fix undefined Imagick::scaleDown error

This commit is contained in:
Hypolite Petovan 2017-12-07 23:32:49 -05:00
parent cd84bf8963
commit 3810b483cf
1 changed files with 1 additions and 1 deletions

View File

@ -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