diff --git a/coders/tiff.c b/coders/tiff.c
index b98c470..dfed3f4 100644
--- a/coders/tiff.c
+++ b/coders/tiff.c
@@ -1098,9 +1098,9 @@
       case COMPRESSION_ADOBE_DEFLATE: image->compression=ZipCompression; break;
       default: image->compression=RLECompression; break;
     }
-    TIFFGetEXIFProperties(tiff,image,exception);
     TIFFGetProfiles(tiff,image,exception);
     TIFFGetProperties(tiff,image,exception);
+    TIFFGetEXIFProperties(tiff,image,exception);
     /*
       Allocate memory for the image and pixel buffer.
     */