From a05d735e3124fc6186c764bb22c46cab6dbb4caf Mon Sep 17 00:00:00 2001 From: Jerome Vouillon Date: Mon, 15 Jun 2020 14:01:53 +0200 Subject: [PATCH] Allow multi-page input via ImageMagic (#2259) --- src/common.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.cc b/src/common.cc index bad34616..0a6ddbd7 100644 --- a/src/common.cc +++ b/src/common.cc @@ -255,6 +255,7 @@ namespace sharp { */ bool ImageTypeSupportsPage(ImageType imageType) { return + imageType == ImageType::MAGICK || imageType == ImageType::GIF || imageType == ImageType::TIFF || imageType == ImageType::HEIF ||