diff options
-rw-r--r-- | lib/cximage-6.0/CxImage/DllInterface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/cximage-6.0/CxImage/DllInterface.cpp b/lib/cximage-6.0/CxImage/DllInterface.cpp index d6f8ac8f9a..8e139531cb 100644 --- a/lib/cximage-6.0/CxImage/DllInterface.cpp +++ b/lib/cximage-6.0/CxImage/DllInterface.cpp @@ -94,6 +94,8 @@ int DetectFileType(const BYTE* pBuffer, int nBufSize) // don't include the last APP0 byte (0xE0), as some (non-conforming) JPEG/JFIF files might have some other // APPn-specific data here, and we should skip over this. return CXIMAGE_FORMAT_JPG; + if (pBuffer[0] == 'G' && pBuffer[1] == 'I' && pBuffer[2] == 'F') + return CXIMAGE_FORMAT_GIF; return CXIMAGE_FORMAT_UNKNOWN; } |