From d93c30e3c16d1e3fb2943c19ac50d37ce5c7582e Mon Sep 17 00:00:00 2001 From: cristy Date: Mon, 9 Jan 2012 17:16:52 +0000 Subject: [PATCH] --- coders/tiff.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/coders/tiff.c b/coders/tiff.c index 10b76febc..2fd26e357 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -1102,7 +1102,10 @@ static Image *ReadTIFFImage(const ImageInfo *image_info, } TIFFGetProfiles(tiff,image,exception); TIFFGetProperties(tiff,image,exception); - TIFFGetEXIFProperties(tiff,image,exception); + option=GetImageOption(image_info,"tiff:exif-properties"); + if ((option == (const char *) NULL) || + (IsMagickTrue(option) == MagickFalse)) + TIFFGetEXIFProperties(tiff,image,exception); /* Allocate memory for the image and pixel buffer. */ -- 2.40.0