Merge pull request #2205 from AlexanderS/DS-3664-master

[DS-3664] ImageMagick: Only execute "identify" on first page
This commit is contained in:
Tim Donohue
2018-09-17 09:40:29 -05:00
committed by GitHub

View File

@@ -143,7 +143,7 @@ public abstract class ImageMagickThumbnailFilter extends MediaFilter {
// PDFs using the CMYK color system can be handled specially if
// profiles are defined
if (cmyk_profile != null && srgb_profile != null) {
Info imageInfo = new Info(f.getAbsolutePath(), true);
Info imageInfo = new Info(f.getAbsolutePath() + s, true);
String imageClass = imageInfo.getImageClass();
if (imageClass.contains("CMYK")) {
op.profile(cmyk_profile);