From 99ae381137d03461a2be649041b5fc04777140e5 Mon Sep 17 00:00:00 2001 From: WiSo Date: Thu, 2 Jan 2014 18:52:22 +0100 Subject: fixed: add GIF as known header to cximage. --- lib/cximage-6.0/CxImage/DllInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') 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; } -- cgit v1.2.3