diff --git a/src/Imagick/Image.php b/src/Imagick/Image.php index 98435ceb0..15786cfec 100644 --- a/src/Imagick/Image.php +++ b/src/Imagick/Image.php @@ -292,6 +292,7 @@ public function resize(BoxInterface $size, $filter = ImageInterface::FILTER_UNDE $this->imagick = $this->imagick->deconstructImages(); } else { $this->imagick->resizeImage($size->getWidth(), $size->getHeight(), $this->getFilter($filter), 1); + $this->imagick->setImagePage(0, 0, 0, 0); } } catch (\ImagickException $e) { throw new RuntimeException('Resize operation failed', $e->getCode(), $e);