2 * Copyright 2012 Dmitry Timoshkov
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/test.h"
28 HRESULT WINAPI
WICCreateImagingFactory_Proxy(UINT
, IWICImagingFactory
**);
30 static const char gif_global_palette
[] = {
31 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0xa1,0x02,0x00,
32 /* palette */0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,
33 /* GCE */0x21,0xf9,0x04,0x01,0x05,0x00,0x01,0x00, /* index 1 */
34 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
35 0x02,0x02,0x44,0x01,0x00,0x3b
38 /* frame 0, GCE transparent index 1
39 * frame 1, GCE transparent index 2
41 static const char gif_global_palette_2frames
[] = {
42 /* LSD */'G','I','F','8','9','a',0x01,0x00,0x01,0x00,0xa1,0x02,0x00,
43 /* palette */0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,
44 /* GCE */0x21,0xf9,0x04,0x01,0x05,0x00,0x01,0x00, /* index 1 */
45 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
46 0x02,0x02,0x44,0x01,0x00,
47 /* GCE */0x21,0xf9,0x04,0x01,0x05,0x00,0x02,0x00, /* index 2 */
48 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
49 0x02,0x02,0x44,0x01,0x00,0x3b
52 static const char gif_local_palette
[] = {
53 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0x27,0x02,0x00,
54 /* GCE */0x21,0xf9,0x04,0x01,0x05,0x00,0x01,0x00, /* index 1 */
55 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x81,
56 /* palette */0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,
57 0x02,0x02,0x44,0x01,0x00,0x3b
60 /* Generated with ImageMagick:
61 * convert -delay 100 -size 2x2 xc:red \
62 * -dispose none -page +0+0 -size 2x1 xc:white \
65 static const char gif_frame_sizes
[] = {
66 0x47, 0x49, 0x46, 0x38, 0x39, 0x61, 0x02, 0x00,
67 0x02, 0x00, 0xf1, 0x00, 0x00, 0xff, 0x00, 0x00,
68 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0xff, 0x00,
69 0x00, 0x21, 0xf9, 0x04, 0x00, 0x64, 0x00, 0x00,
70 0x00, 0x21, 0xff, 0x0b, 0x4e, 0x45, 0x54, 0x53,
71 0x43, 0x41, 0x50, 0x45, 0x32, 0x2e, 0x30, 0x03,
72 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00,
73 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x03,
74 0x44, 0x34, 0x05, 0x00, 0x21, 0xf9, 0x04, 0x04,
75 0x64, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00,
76 0x00, 0x02, 0x00, 0x01, 0x00, 0x80, 0xff, 0xff,
77 0xff, 0x00, 0x00, 0x00, 0x02, 0x02, 0x04, 0x0a,
81 static IWICImagingFactory
*factory
;
83 static IStream
*create_stream(const void *image_data
, UINT image_size
)
90 hmem
= GlobalAlloc(0, image_size
);
91 data
= GlobalLock(hmem
);
92 memcpy(data
, image_data
, image_size
);
95 hr
= CreateStreamOnHGlobal(hmem
, TRUE
, &stream
);
96 ok(hr
== S_OK
, "CreateStreamOnHGlobal error %#lx\n", hr
);
101 static IWICBitmapDecoder
*create_decoder(const void *image_data
, UINT image_size
)
104 IWICBitmapDecoder
*decoder
;
109 stream
= create_stream(image_data
, image_size
);
110 if (!stream
) return NULL
;
112 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, stream
, NULL
, 0, &decoder
);
113 ok(hr
== S_OK
, "CreateDecoderFromStream error %#lx\n", hr
);
115 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &format
);
116 ok(hr
== S_OK
, "GetContainerFormat error %#lx\n", hr
);
117 ok(IsEqualGUID(&format
, &GUID_ContainerFormatGif
),
118 "wrong container format %s\n", wine_dbgstr_guid(&format
));
120 refcount
= IStream_Release(stream
);
121 ok(refcount
> 0, "expected stream refcount > 0\n");
126 static void test_global_gif_palette(void)
129 IWICBitmapDecoder
*decoder
;
130 IWICBitmapFrameDecode
*frame
;
131 IWICPalette
*palette
;
136 decoder
= create_decoder(gif_global_palette
, sizeof(gif_global_palette
));
137 ok(decoder
!= 0, "Failed to load GIF image data\n");
139 hr
= IWICImagingFactory_CreatePalette(factory
, &palette
);
140 ok(hr
== S_OK
, "CreatePalette error %#lx\n", hr
);
143 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
144 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
146 hr
= IWICPalette_GetColorCount(palette
, &count
);
147 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
148 ok(count
== 4, "expected 4, got %u\n", count
);
150 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
151 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
152 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
153 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
154 ok(color
[1] == 0x00040506, "expected 0x00040506, got %#x\n", color
[1]);
155 ok(color
[2] == 0xff070809, "expected 0xff070809, got %#x\n", color
[2]);
156 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
159 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
160 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
162 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &format
);
163 ok(hr
== S_OK
, "GetPixelFormat error %#lx\n", hr
);
164 ok(IsEqualGUID(&format
, &GUID_WICPixelFormat8bppIndexed
),
165 "wrong pixel format %s\n", wine_dbgstr_guid(&format
));
167 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, palette
);
168 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
170 hr
= IWICPalette_GetColorCount(palette
, &count
);
171 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
172 ok(count
== 4, "expected 4, got %u\n", count
);
174 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
175 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
176 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
177 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
178 ok(color
[1] == 0x00040506, "expected 0x00040506, got %#x\n", color
[1]);
179 ok(color
[2] == 0xff070809, "expected 0xff070809, got %#x\n", color
[2]);
180 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
182 IWICPalette_Release(palette
);
183 IWICBitmapFrameDecode_Release(frame
);
184 IWICBitmapDecoder_Release(decoder
);
187 static void test_global_gif_palette_2frames(void)
190 IWICBitmapDecoder
*decoder
;
191 IWICBitmapFrameDecode
*frame
;
192 IWICPalette
*palette
;
197 decoder
= create_decoder(gif_global_palette_2frames
, sizeof(gif_global_palette_2frames
));
198 ok(decoder
!= 0, "Failed to load GIF image data\n");
200 /* active frame 0, GCE transparent index 1 */
201 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
202 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
204 hr
= IWICImagingFactory_CreatePalette(factory
, &palette
);
205 ok(hr
== S_OK
, "CreatePalette error %#lx\n", hr
);
208 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
209 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
211 hr
= IWICPalette_GetColorCount(palette
, &count
);
212 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
213 ok(count
== 4, "expected 4, got %u\n", count
);
215 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
216 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
217 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
218 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
219 ok(color
[1] == 0x00040506, "expected 0x00040506, got %#x\n", color
[1]);
220 ok(color
[2] == 0xff070809, "expected 0xff070809, got %#x\n", color
[2]);
221 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
223 /* frame 0 palette */
224 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &format
);
225 ok(hr
== S_OK
, "GetPixelFormat error %#lx\n", hr
);
226 ok(IsEqualGUID(&format
, &GUID_WICPixelFormat8bppIndexed
),
227 "wrong pixel format %s\n", wine_dbgstr_guid(&format
));
229 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, palette
);
230 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
232 hr
= IWICPalette_GetColorCount(palette
, &count
);
233 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
234 ok(count
== 4, "expected 4, got %u\n", count
);
236 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
237 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
238 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
239 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
240 ok(color
[1] == 0x00040506, "expected 0x00040506, got %#x\n", color
[1]);
241 ok(color
[2] == 0xff070809, "expected 0xff070809, got %#x\n", color
[2]);
242 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
244 IWICBitmapFrameDecode_Release(frame
);
246 /* active frame 1, GCE transparent index 2 */
247 hr
= IWICBitmapDecoder_GetFrame(decoder
, 1, &frame
);
248 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
251 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
252 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
254 hr
= IWICPalette_GetColorCount(palette
, &count
);
255 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
256 ok(count
== 4, "expected 4, got %u\n", count
);
258 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
259 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
260 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
261 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
262 ok(color
[1] == 0xff040506 || broken(color
[1] == 0x00040506) /* XP */, "expected 0xff040506, got %#x\n", color
[1]);
263 ok(color
[2] == 0x00070809 || broken(color
[2] == 0xff070809) /* XP */, "expected 0x00070809, got %#x\n", color
[2]);
264 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
266 /* frame 1 palette */
267 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &format
);
268 ok(hr
== S_OK
, "GetPixelFormat error %#lx\n", hr
);
269 ok(IsEqualGUID(&format
, &GUID_WICPixelFormat8bppIndexed
),
270 "wrong pixel format %s\n", wine_dbgstr_guid(&format
));
272 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, palette
);
273 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
275 hr
= IWICPalette_GetColorCount(palette
, &count
);
276 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
277 ok(count
== 4, "expected 4, got %u\n", count
);
279 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
280 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
281 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
282 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
283 ok(color
[1] == 0xff040506, "expected 0xff040506, got %#x\n", color
[1]);
284 ok(color
[2] == 0x00070809, "expected 0x00070809, got %#x\n", color
[2]);
285 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
287 IWICPalette_Release(palette
);
288 IWICBitmapFrameDecode_Release(frame
);
289 IWICBitmapDecoder_Release(decoder
);
292 static void test_local_gif_palette(void)
295 IWICBitmapDecoder
*decoder
;
296 IWICBitmapFrameDecode
*frame
;
297 IWICPalette
*palette
;
298 WICBitmapPaletteType type
;
303 decoder
= create_decoder(gif_local_palette
, sizeof(gif_local_palette
));
304 ok(decoder
!= 0, "Failed to load GIF image data\n");
306 hr
= IWICImagingFactory_CreatePalette(factory
, &palette
);
307 ok(hr
== S_OK
, "CreatePalette error %#lx\n", hr
);
310 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
311 ok(hr
== S_OK
|| broken(hr
== WINCODEC_ERR_FRAMEMISSING
), "CopyPalette %#lx\n", hr
);
315 hr
= IWICPalette_GetType(palette
, &type
);
316 ok(hr
== S_OK
, "GetType error %#lx\n", hr
);
317 ok(type
== WICBitmapPaletteTypeCustom
, "expected WICBitmapPaletteTypeCustom, got %#x\n", type
);
319 hr
= IWICPalette_GetColorCount(palette
, &count
);
320 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
321 ok(count
== 256, "expected 256, got %u\n", count
);
323 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
324 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
325 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
326 ok(color
[0] == 0xff000000, "expected 0xff000000, got %#x\n", color
[0]);
327 ok(color
[1] == 0x00ffffff, "expected 0x00ffffff, got %#x\n", color
[1]);
329 for (i
= 2; i
< 256; i
++)
330 ok(color
[i
] == 0xff000000, "expected 0xff000000, got %#x\n", color
[i
]);
334 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
335 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
337 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &format
);
338 ok(hr
== S_OK
, "GetPixelFormat error %#lx\n", hr
);
339 ok(IsEqualGUID(&format
, &GUID_WICPixelFormat8bppIndexed
),
340 "wrong pixel format %s\n", wine_dbgstr_guid(&format
));
342 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, palette
);
343 ok(hr
== S_OK
, "CopyPalette error %#lx\n", hr
);
345 hr
= IWICPalette_GetColorCount(palette
, &count
);
346 ok(hr
== S_OK
, "GetColorCount error %#lx\n", hr
);
347 ok(count
== 4, "expected 4, got %u\n", count
);
350 hr
= IWICPalette_GetType(palette
, &type
);
351 ok(hr
== S_OK
, "GetType error %#lx\n", hr
);
352 ok(type
== WICBitmapPaletteTypeCustom
, "expected WICBitmapPaletteTypeCustom, got %#x\n", type
);
354 hr
= IWICPalette_GetColors(palette
, count
, color
, &ret
);
355 ok(hr
== S_OK
, "GetColors error %#lx\n", hr
);
356 ok(ret
== count
, "expected %u, got %u\n", count
, ret
);
357 ok(color
[0] == 0xff010203, "expected 0xff010203, got %#x\n", color
[0]);
358 ok(color
[1] == 0x00040506, "expected 0x00040506, got %#x\n", color
[1]);
359 ok(color
[2] == 0xff070809, "expected 0xff070809, got %#x\n", color
[2]);
360 ok(color
[3] == 0xff0a0b0c, "expected 0xff0a0b0c, got %#x\n", color
[3]);
362 IWICPalette_Release(palette
);
363 IWICBitmapFrameDecode_Release(frame
);
364 IWICBitmapDecoder_Release(decoder
);
367 static void test_gif_frame_sizes(void)
369 static const BYTE frame0
[] = {0, 1, 0xfe, 0xfe, 2, 3, 0xfe, 0xfe};
370 static const BYTE frame1
[] = {0, 0, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe};
372 IWICBitmapDecoder
*decoder
;
373 IWICBitmapFrameDecode
*frame
;
378 decoder
= create_decoder(gif_frame_sizes
, sizeof(gif_frame_sizes
));
379 ok(decoder
!= 0, "Failed to load GIF image data\n");
381 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
382 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
384 hr
= IWICBitmapFrameDecode_GetSize(frame
, &width
, &height
);
385 ok(hr
== S_OK
, "GetSize error %lx\n", hr
);
386 ok(width
== 2, "width = %d\n", width
);
387 ok(height
== 2, "height = %d\n", height
);
389 memset(buf
, 0xfe, sizeof(buf
));
390 hr
= IWICBitmapFrameDecode_CopyPixels(frame
, NULL
, 4, sizeof(buf
), buf
);
391 ok(hr
== S_OK
, "CopyPixels error %lx\n", hr
);
392 ok(!memcmp(buf
, frame0
, sizeof(buf
)), "buf = %x %x %x %x %x %x %x %x\n",
393 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4], buf
[5], buf
[6], buf
[7]);
395 IWICBitmapFrameDecode_Release(frame
);
397 hr
= IWICBitmapDecoder_GetFrame(decoder
, 1, &frame
);
398 ok(hr
== S_OK
, "GetFrame error %#lx\n", hr
);
400 hr
= IWICBitmapFrameDecode_GetSize(frame
, &width
, &height
);
401 ok(hr
== S_OK
, "GetSize error %lx\n", hr
);
402 ok(width
== 2, "width = %d\n", width
);
403 ok(height
== 1, "height = %d\n", height
);
405 memset(buf
, 0xfe, sizeof(buf
));
406 hr
= IWICBitmapFrameDecode_CopyPixels(frame
, NULL
, 4, sizeof(buf
), buf
);
407 ok(hr
== S_OK
, "CopyPixels error %lx\n", hr
);
408 ok(!memcmp(buf
, frame1
, sizeof(buf
)), "buf = %x %x %x %x %x %x %x %x\n",
409 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4], buf
[5], buf
[6], buf
[7]);
411 IWICBitmapFrameDecode_Release(frame
);
413 IWICBitmapDecoder_Release(decoder
);
416 static const char gif_with_trailer_1
[] = {
417 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0x80,0x00,0x00,
418 /* palette */0xff,0xff,0xff,0xff,0xff,0xff,
419 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
420 /* image data */0x02,0x02,0x44,0x01,0x00,0x3b
422 static const char gif_with_trailer_2
[] = {
423 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0x00,0x00,0x00,
424 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
425 /* image data */0x02,0x02,0x44,0x3b
427 static const char gif_without_trailer_1
[] = {
428 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0x80,0x00,0x00,
429 /* palette */0xff,0xff,0xff,0xff,0xff,0xff,
430 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
431 /* image data */0x02,0x02,0x44,0xde,0xad,0xbe,0xef,0xde,0xad,0xbe,0xef
434 static const char gif_without_trailer_2
[] = {
435 /* LSD */'G','I','F','8','7','a',0x01,0x00,0x01,0x00,0x00,0x00,0x00,
436 /* IMD */0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
437 /* image data */0x02,0x02,0x44,0xde,0xad,0xbe,0xef,0xde,0xad,0xbe,0xef
440 static void test_truncated_gif(void)
444 IWICBitmapDecoder
*decoder
;
447 stream
= create_stream(gif_with_trailer_1
, sizeof(gif_with_trailer_1
));
450 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, stream
, NULL
, 0, &decoder
);
451 ok(hr
== S_OK
, "CreateDecoderFromStream error %#lx\n", hr
);
452 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &format
);
453 ok(hr
== S_OK
, "GetContainerFormat error %#lx\n", hr
);
454 ok(IsEqualGUID(&format
, &GUID_ContainerFormatGif
),
455 "wrong container format %s\n", wine_dbgstr_guid(&format
));
456 IWICBitmapDecoder_Release(decoder
);
457 IStream_Release(stream
);
459 stream
= create_stream(gif_with_trailer_2
, sizeof(gif_with_trailer_2
));
461 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, stream
, NULL
, 0, &decoder
);
462 ok(hr
== S_OK
, "CreateDecoderFromStream error %#lx\n", hr
);
463 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &format
);
464 ok(hr
== S_OK
, "GetContainerFormat error %#lx\n", hr
);
465 ok(IsEqualGUID(&format
, &GUID_ContainerFormatGif
),
466 "wrong container format %s\n", wine_dbgstr_guid(&format
));
467 IWICBitmapDecoder_Release(decoder
);
468 IStream_Release(stream
);
470 stream
= create_stream(gif_without_trailer_1
, sizeof(gif_without_trailer_1
));
472 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, stream
, NULL
, 0, &decoder
);
473 ok(hr
== S_OK
, "CreateDecoderFromStream error %#lx\n", hr
);
474 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &format
);
475 ok(hr
== S_OK
, "GetContainerFormat error %#lx\n", hr
);
476 ok(IsEqualGUID(&format
, &GUID_ContainerFormatGif
),
477 "wrong container format %s\n", wine_dbgstr_guid(&format
));
478 IWICBitmapDecoder_Release(decoder
);
479 IStream_Release(stream
);
481 stream
= create_stream(gif_without_trailer_2
, sizeof(gif_without_trailer_2
));
483 hr
= IWICImagingFactory_CreateDecoderFromStream(factory
, stream
, NULL
, 0, &decoder
);
484 ok(hr
== S_OK
, "CreateDecoderFromStream error %#lx\n", hr
);
485 hr
= IWICBitmapDecoder_GetContainerFormat(decoder
, &format
);
486 ok(hr
== S_OK
, "GetContainerFormat error %#lx\n", hr
);
487 ok(IsEqualGUID(&format
, &GUID_ContainerFormatGif
),
488 "wrong container format %s\n", wine_dbgstr_guid(&format
));
489 IWICBitmapDecoder_Release(decoder
);
490 IStream_Release(stream
);
493 /* 1x1 pixel gif, missing trailer */
494 static unsigned char gifimage_notrailer
[] = {
495 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x71,0xff,0xff,0xff,
496 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44,
500 static void test_gif_notrailer(void)
502 IWICBitmapDecoder
*decoder
;
503 IWICImagingFactory
*factory
;
505 IWICStream
*gifstream
;
506 IWICBitmapFrameDecode
*framedecode
;
507 double dpiX
= 0.0, dpiY
= 0.0;
510 hr
= CoCreateInstance(&CLSID_WICImagingFactory
, NULL
, CLSCTX_INPROC_SERVER
,
511 &IID_IWICImagingFactory
, (void**)&factory
);
512 ok(hr
== S_OK
, "CoCreateInstance failed, hr=%lx\n", hr
);
513 if (FAILED(hr
)) return;
515 hr
= IWICImagingFactory_CreateStream(factory
, &gifstream
);
516 ok(hr
== S_OK
, "CreateStream failed, hr=%lx\n", hr
);
519 hr
= IWICStream_InitializeFromMemory(gifstream
, gifimage_notrailer
,
520 sizeof(gifimage_notrailer
));
521 ok(hr
== S_OK
, "InitializeFromMemory failed, hr=%lx\n", hr
);
525 hr
= CoCreateInstance(&CLSID_WICGifDecoder
, NULL
, CLSCTX_INPROC_SERVER
,
526 &IID_IWICBitmapDecoder
, (void**)&decoder
);
527 ok(hr
== S_OK
, "CoCreateInstance failed, hr=%lx\n", hr
);
532 hr
= IWICBitmapDecoder_Initialize(decoder
, (IStream
*)gifstream
,
533 WICDecodeMetadataCacheOnDemand
);
534 ok(hr
== S_OK
, "Initialize failed, hr=%lx\n", hr
);
538 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &framedecode
);
539 ok(hr
== S_OK
, "GetFrame failed, hr=%lx\n", hr
);
542 hr
= IWICBitmapFrameDecode_GetResolution(framedecode
, &dpiX
, &dpiY
);
543 ok(SUCCEEDED(hr
), "GetResolution failed, hr=%lx\n", hr
);
544 ok(dpiX
== 48.0, "expected dpiX=48.0, got %f\n", dpiX
);
545 ok(dpiY
== 96.0, "expected dpiY=96.0, got %f\n", dpiY
);
547 IWICBitmapFrameDecode_Release(framedecode
);
553 hr
= IWICBitmapDecoder_GetFrameCount(decoder
, &framecount
);
554 ok(hr
== S_OK
, "GetFrameCount failed, hr=%lx\n", hr
);
555 ok(framecount
== 1, "framecount=%u\n", framecount
);
558 IWICBitmapDecoder_Release(decoder
);
561 IWICStream_Release(gifstream
);
564 IWICImagingFactory_Release(factory
);
567 START_TEST(gifformat
)
571 CoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
572 hr
= CoCreateInstance(&CLSID_WICImagingFactory
, NULL
, CLSCTX_INPROC_SERVER
,
573 &IID_IWICImagingFactory
, (void **)&factory
);
574 ok(hr
== S_OK
, "CoCreateInstance error %#lx\n", hr
);
575 if (FAILED(hr
)) return;
577 test_global_gif_palette();
578 test_global_gif_palette_2frames();
579 test_local_gif_palette();
580 test_gif_frame_sizes();
581 test_gif_notrailer();
583 IWICImagingFactory_Release(factory
);
586 /* run the same tests with no COM initialization */
587 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
588 ok(hr
== S_OK
, "WICCreateImagingFactory_Proxy error %#lx\n", hr
);
590 test_global_gif_palette();
591 test_global_gif_palette_2frames();
592 test_local_gif_palette();
593 test_gif_frame_sizes();
594 test_truncated_gif();
596 IWICImagingFactory_Release(factory
);