wined3d: Merge the various resource desc structures.
[wine] / dlls / gdiplus / tests / image.c
1 /*
2  * Unit test suite for images
3  *
4  * Copyright (C) 2007 Google (Evan Stade)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #define COBJMACROS
22
23 #include <math.h>
24
25 #include "initguid.h"
26 #include "windows.h"
27 #include "gdiplus.h"
28 #include "wine/test.h"
29
30 #define expect(expected, got) ok((UINT)(got) == (UINT)(expected), "Expected %.8x, got %.8x\n", (UINT)(expected), (UINT)(got))
31 #define expectf(expected, got) ok(fabs(expected - got) < 0.0001, "Expected %.2f, got %.2f\n", expected, got)
32
33 static BOOL color_match(ARGB c1, ARGB c2, BYTE max_diff)
34 {
35     if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
36     c1 >>= 8; c2 >>= 8;
37     if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
38     c1 >>= 8; c2 >>= 8;
39     if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
40     c1 >>= 8; c2 >>= 8;
41     if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
42     return TRUE;
43 }
44
45 static void expect_guid(REFGUID expected, REFGUID got, int line, BOOL todo)
46 {
47     WCHAR bufferW[39];
48     char buffer[39];
49     char buffer2[39];
50
51     StringFromGUID2(got, bufferW, sizeof(bufferW)/sizeof(bufferW[0]));
52     WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer, sizeof(buffer), NULL, NULL);
53     StringFromGUID2(expected, bufferW, sizeof(bufferW)/sizeof(bufferW[0]));
54     WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer2, sizeof(buffer2), NULL, NULL);
55     if(todo)
56         todo_wine ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer);
57     else
58         ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer);
59 }
60
61 static void expect_rawformat(REFGUID expected, GpImage *img, int line, BOOL todo)
62 {
63     GUID raw;
64     GpStatus stat;
65
66     stat = GdipGetImageRawFormat(img, &raw);
67     ok_(__FILE__, line)(stat == Ok, "GdipGetImageRawFormat failed with %d\n", stat);
68     if(stat != Ok) return;
69     expect_guid(expected, &raw, line, todo);
70 }
71
72 static void test_bufferrawformat(void* buff, int size, REFGUID expected, int line, BOOL todo)
73 {
74     LPSTREAM stream;
75     HGLOBAL  hglob;
76     LPBYTE   data;
77     HRESULT  hres;
78     GpStatus stat;
79     GpImage *img;
80
81     hglob = GlobalAlloc (0, size);
82     data = GlobalLock (hglob);
83     memcpy(data, buff, size);
84     GlobalUnlock(hglob); data = NULL;
85
86     hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
87     ok_(__FILE__, line)(hres == S_OK, "Failed to create a stream\n");
88     if(hres != S_OK) return;
89
90     stat = GdipLoadImageFromStream(stream, &img);
91     ok_(__FILE__, line)(stat == Ok, "Failed to create a Bitmap\n");
92     if(stat != Ok){
93         IStream_Release(stream);
94         return;
95     }
96
97     expect_rawformat(expected, img, line, todo);
98
99     GdipDisposeImage(img);
100     IStream_Release(stream);
101 }
102
103 static void test_Scan0(void)
104 {
105     GpBitmap *bm;
106     GpStatus stat;
107     BYTE buff[360];
108
109     bm = NULL;
110     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, &bm);
111     expect(Ok, stat);
112     ok(NULL != bm, "Expected bitmap to be initialized\n");
113     if (stat == Ok)
114         GdipDisposeImage((GpImage*)bm);
115
116     bm = (GpBitmap*)0xdeadbeef;
117     stat = GdipCreateBitmapFromScan0(10, -10, 10, PixelFormat24bppRGB, NULL, &bm);
118     expect(InvalidParameter, stat);
119     ok( !bm, "expected null bitmap\n" );
120
121     bm = (GpBitmap*)0xdeadbeef;
122     stat = GdipCreateBitmapFromScan0(-10, 10, 10, PixelFormat24bppRGB, NULL, &bm);
123     expect(InvalidParameter, stat);
124     ok( !bm, "expected null bitmap\n" );
125
126     bm = (GpBitmap*)0xdeadbeef;
127     stat = GdipCreateBitmapFromScan0(10, 0, 10, PixelFormat24bppRGB, NULL, &bm);
128     expect(InvalidParameter, stat);
129     ok( !bm, "expected null bitmap\n" );
130
131     bm = NULL;
132     stat = GdipCreateBitmapFromScan0(10, 10, 12, PixelFormat24bppRGB, buff, &bm);
133     expect(Ok, stat);
134     ok(NULL != bm, "Expected bitmap to be initialized\n");
135     if (stat == Ok)
136         GdipDisposeImage((GpImage*)bm);
137
138     bm = (GpBitmap*) 0xdeadbeef;
139     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, buff, &bm);
140     expect(InvalidParameter, stat);
141     ok( !bm, "expected null bitmap\n" );
142
143     bm = (GpBitmap*)0xdeadbeef;
144     stat = GdipCreateBitmapFromScan0(10, 10, 0, PixelFormat24bppRGB, buff, &bm);
145     expect(InvalidParameter, stat);
146     ok( bm == (GpBitmap*)0xdeadbeef, "expected deadbeef bitmap\n" );
147
148     bm = NULL;
149     stat = GdipCreateBitmapFromScan0(10, 10, -8, PixelFormat24bppRGB, buff, &bm);
150     expect(Ok, stat);
151     ok(NULL != bm, "Expected bitmap to be initialized\n");
152     if (stat == Ok)
153         GdipDisposeImage((GpImage*)bm);
154
155     bm = (GpBitmap*)0xdeadbeef;
156     stat = GdipCreateBitmapFromScan0(10, 10, -10, PixelFormat24bppRGB, buff, &bm);
157     expect(InvalidParameter, stat);
158     ok( !bm, "expected null bitmap\n" );
159 }
160
161 static void test_FromGdiDib(void)
162 {
163     GpBitmap *bm;
164     GpStatus stat;
165     BYTE buff[400];
166     BYTE rbmi[sizeof(BITMAPINFOHEADER)+256*sizeof(RGBQUAD)];
167     BITMAPINFO *bmi = (BITMAPINFO*)rbmi;
168     PixelFormat format;
169
170     bm = NULL;
171
172     memset(rbmi, 0, sizeof(rbmi));
173
174     bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
175     bmi->bmiHeader.biWidth = 10;
176     bmi->bmiHeader.biHeight = 10;
177     bmi->bmiHeader.biPlanes = 1;
178     bmi->bmiHeader.biBitCount = 32;
179     bmi->bmiHeader.biCompression = BI_RGB;
180
181     stat = GdipCreateBitmapFromGdiDib(NULL, buff, &bm);
182     expect(InvalidParameter, stat);
183
184     stat = GdipCreateBitmapFromGdiDib(bmi, NULL, &bm);
185     expect(InvalidParameter, stat);
186
187     stat = GdipCreateBitmapFromGdiDib(bmi, buff, NULL);
188     expect(InvalidParameter, stat);
189
190     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
191     expect(Ok, stat);
192     ok(NULL != bm, "Expected bitmap to be initialized\n");
193     if (stat == Ok)
194     {
195         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
196         expect(Ok, stat);
197         expect(PixelFormat32bppRGB, format);
198
199         GdipDisposeImage((GpImage*)bm);
200     }
201
202     bmi->bmiHeader.biBitCount = 24;
203     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
204     expect(Ok, stat);
205     ok(NULL != bm, "Expected bitmap to be initialized\n");
206     if (stat == Ok)
207     {
208         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
209         expect(Ok, stat);
210         expect(PixelFormat24bppRGB, format);
211
212         GdipDisposeImage((GpImage*)bm);
213     }
214
215     bmi->bmiHeader.biBitCount = 16;
216     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
217     expect(Ok, stat);
218     ok(NULL != bm, "Expected bitmap to be initialized\n");
219     if (stat == Ok)
220     {
221         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
222         expect(Ok, stat);
223         expect(PixelFormat16bppRGB555, format);
224
225         GdipDisposeImage((GpImage*)bm);
226     }
227
228     bmi->bmiHeader.biBitCount = 8;
229     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
230     expect(Ok, stat);
231     ok(NULL != bm, "Expected bitmap to be initialized\n");
232     if (stat == Ok)
233     {
234         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
235         expect(Ok, stat);
236         expect(PixelFormat8bppIndexed, format);
237
238         GdipDisposeImage((GpImage*)bm);
239     }
240
241     bmi->bmiHeader.biBitCount = 4;
242     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
243     expect(Ok, stat);
244     ok(NULL != bm, "Expected bitmap to be initialized\n");
245     if (stat == Ok)
246     {
247         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
248         expect(Ok, stat);
249         expect(PixelFormat4bppIndexed, format);
250
251         GdipDisposeImage((GpImage*)bm);
252     }
253
254     bmi->bmiHeader.biBitCount = 1;
255     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
256     expect(Ok, stat);
257     ok(NULL != bm, "Expected bitmap to be initialized\n");
258     if (stat == Ok)
259     {
260         stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
261         expect(Ok, stat);
262         expect(PixelFormat1bppIndexed, format);
263
264         GdipDisposeImage((GpImage*)bm);
265     }
266
267     bmi->bmiHeader.biBitCount = 0;
268     stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
269     expect(InvalidParameter, stat);
270 }
271
272 static void test_GetImageDimension(void)
273 {
274     GpBitmap *bm;
275     GpStatus stat;
276     const REAL WIDTH = 10.0, HEIGHT = 20.0;
277     REAL w,h;
278
279     bm = (GpBitmap*)0xdeadbeef;
280     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm);
281     expect(Ok,stat);
282     ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n");
283     ok(NULL != bm, "Expected bitmap to not be NULL\n");
284
285     stat = GdipGetImageDimension(NULL,&w,&h);
286     expect(InvalidParameter, stat);
287
288     stat = GdipGetImageDimension((GpImage*)bm,NULL,&h);
289     expect(InvalidParameter, stat);
290
291     stat = GdipGetImageDimension((GpImage*)bm,&w,NULL);
292     expect(InvalidParameter, stat);
293
294     w = -1;
295     h = -1;
296     stat = GdipGetImageDimension((GpImage*)bm,&w,&h);
297     expect(Ok, stat);
298     expectf(WIDTH,  w);
299     expectf(HEIGHT, h);
300     GdipDisposeImage((GpImage*)bm);
301 }
302
303 static void test_GdipImageGetFrameDimensionsCount(void)
304 {
305     GpBitmap *bm;
306     GpStatus stat;
307     const REAL WIDTH = 10.0, HEIGHT = 20.0;
308     UINT w;
309     GUID dimension = {0};
310     UINT count;
311     ARGB color;
312
313     bm = (GpBitmap*)0xdeadbeef;
314     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm);
315     expect(Ok,stat);
316     ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n");
317     ok(NULL != bm, "Expected bitmap to not be NULL\n");
318
319     stat = GdipImageGetFrameDimensionsCount(NULL,&w);
320     expect(InvalidParameter, stat);
321
322     stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,NULL);
323     expect(InvalidParameter, stat);
324
325     w = -1;
326     stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,&w);
327     expect(Ok, stat);
328     expect(1, w);
329
330     stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 1);
331     expect(Ok, stat);
332     expect_guid(&FrameDimensionPage, &dimension, __LINE__, FALSE);
333
334     stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 2);
335     expect(InvalidParameter, stat);
336
337     stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 0);
338     expect(InvalidParameter, stat);
339
340     stat = GdipImageGetFrameCount(NULL, &dimension, &count);
341     expect(InvalidParameter, stat);
342
343     /* WinXP crashes on this test */
344     if(0)
345     {
346         stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, NULL);
347         expect(InvalidParameter, stat);
348     }
349
350     stat = GdipImageGetFrameCount((GpImage*)bm, NULL, &count);
351     expect(Ok, stat);
352
353     count = 12345;
354     stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, &count);
355     expect(Ok, stat);
356     expect(1, count);
357
358     GdipBitmapSetPixel(bm, 0, 0, 0xffffffff);
359
360     stat = GdipImageSelectActiveFrame((GpImage*)bm, &dimension, 0);
361     expect(Ok, stat);
362
363     /* SelectActiveFrame has no effect on image data of memory bitmaps */
364     color = 0xdeadbeef;
365     GdipBitmapGetPixel(bm, 0, 0, &color);
366     expect(0xffffffff, color);
367
368     GdipDisposeImage((GpImage*)bm);
369 }
370
371 static void test_LoadingImages(void)
372 {
373     GpStatus stat;
374
375     stat = GdipCreateBitmapFromFile(0, 0);
376     expect(InvalidParameter, stat);
377
378     stat = GdipCreateBitmapFromFile(0, (GpBitmap**)0xdeadbeef);
379     expect(InvalidParameter, stat);
380
381     stat = GdipLoadImageFromFile(0, 0);
382     expect(InvalidParameter, stat);
383
384     stat = GdipLoadImageFromFile(0, (GpImage**)0xdeadbeef);
385     expect(InvalidParameter, stat);
386
387     stat = GdipLoadImageFromFileICM(0, 0);
388     expect(InvalidParameter, stat);
389
390     stat = GdipLoadImageFromFileICM(0, (GpImage**)0xdeadbeef);
391     expect(InvalidParameter, stat);
392 }
393
394 static void test_SavingImages(void)
395 {
396     GpStatus stat;
397     GpBitmap *bm;
398     UINT n;
399     UINT s;
400     const REAL WIDTH = 10.0, HEIGHT = 20.0;
401     REAL w, h;
402     ImageCodecInfo *codecs;
403     static const CHAR filenameA[] = "a.bmp";
404     static const WCHAR filename[] = { 'a','.','b','m','p',0 };
405
406     codecs = NULL;
407
408     stat = GdipSaveImageToFile(0, 0, 0, 0);
409     expect(InvalidParameter, stat);
410
411     bm = NULL;
412     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
413     expect(Ok, stat);
414     if (!bm)
415         return;
416
417     /* invalid params */
418     stat = GdipSaveImageToFile((GpImage*)bm, 0, 0, 0);
419     expect(InvalidParameter, stat);
420
421     stat = GdipSaveImageToFile((GpImage*)bm, filename, 0, 0);
422     expect(InvalidParameter, stat);
423
424     /* encoder tests should succeed -- already tested */
425     stat = GdipGetImageEncodersSize(&n, &s);
426     if (stat != Ok || n == 0) goto cleanup;
427
428     codecs = GdipAlloc(s);
429     if (!codecs) goto cleanup;
430
431     stat = GdipGetImageEncoders(n, s, codecs);
432     if (stat != Ok) goto cleanup;
433
434     stat = GdipSaveImageToFile((GpImage*)bm, filename, &codecs[0].Clsid, 0);
435     expect(stat, Ok);
436
437     GdipDisposeImage((GpImage*)bm);
438     bm = 0;
439
440     /* re-load and check image stats */
441     stat = GdipLoadImageFromFile(filename, (GpImage**)&bm);
442     expect(stat, Ok);
443     if (stat != Ok) goto cleanup;
444
445     stat = GdipGetImageDimension((GpImage*)bm, &w, &h);
446     if (stat != Ok) goto cleanup;
447
448     expectf(WIDTH, w);
449     expectf(HEIGHT, h);
450
451  cleanup:
452     GdipFree(codecs);
453     if (bm)
454         GdipDisposeImage((GpImage*)bm);
455     ok(DeleteFileA(filenameA), "Delete failed.\n");
456 }
457
458 static void test_encoders(void)
459 {
460     GpStatus stat;
461     UINT n;
462     UINT s;
463     ImageCodecInfo *codecs;
464     int i;
465     int bmp_found;
466
467     static const CHAR bmp_format[] = "BMP";
468
469     stat = GdipGetImageEncodersSize(&n, &s);
470     expect(stat, Ok);
471
472     codecs = GdipAlloc(s);
473     if (!codecs)
474         return;
475
476     stat = GdipGetImageEncoders(n, s, NULL);
477     expect(GenericError, stat);
478
479     stat = GdipGetImageEncoders(0, s, codecs);
480     expect(GenericError, stat);
481
482     stat = GdipGetImageEncoders(n, s-1, codecs);
483     expect(GenericError, stat);
484
485     stat = GdipGetImageEncoders(n, s+1, codecs);
486     expect(GenericError, stat);
487
488     stat = GdipGetImageEncoders(n, s, codecs);
489     expect(stat, Ok);
490
491     bmp_found = FALSE;
492     for (i = 0; i < n; i++)
493         {
494             CHAR desc[32];
495
496             WideCharToMultiByte(CP_ACP, 0, codecs[i].FormatDescription, -1,
497                                 desc, 32, 0, 0);
498
499             if (CompareStringA(LOCALE_SYSTEM_DEFAULT, 0,
500                                desc, -1,
501                                bmp_format, -1) == CSTR_EQUAL) {
502                 bmp_found = TRUE;
503                 break;
504             }
505         }
506     if (!bmp_found)
507         ok(FALSE, "No BMP codec found.\n");
508
509     GdipFree(codecs);
510 }
511
512 static void test_LockBits(void)
513 {
514     GpStatus stat;
515     GpBitmap *bm;
516     GpRect rect;
517     BitmapData bd;
518     const INT WIDTH = 10, HEIGHT = 20;
519     ARGB color;
520     int y;
521
522     bm = NULL;
523     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
524     expect(Ok, stat);
525
526     rect.X = 2;
527     rect.Y = 3;
528     rect.Width = 4;
529     rect.Height = 5;
530
531     stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000);
532     expect(Ok, stat);
533
534     stat = GdipBitmapSetPixel(bm, 2, 8, 0xff480000);
535     expect(Ok, stat);
536
537     /* read-only */
538     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
539     expect(Ok, stat);
540
541     if (stat == Ok) {
542         expect(0xc3, ((BYTE*)bd.Scan0)[2]);
543         expect(0x48, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]);
544
545         ((char*)bd.Scan0)[2] = 0xff;
546
547         stat = GdipBitmapUnlockBits(bm, &bd);
548         expect(Ok, stat);
549     }
550
551     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
552     expect(Ok, stat);
553     expect(0xffff0000, color);
554
555     stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000);
556     expect(Ok, stat);
557
558     /* read-only, with NULL rect -> whole bitmap lock */
559     stat = GdipBitmapLockBits(bm, NULL, ImageLockModeRead, PixelFormat24bppRGB, &bd);
560     expect(Ok, stat);
561     expect(bd.Width,  WIDTH);
562     expect(bd.Height, HEIGHT);
563
564     if (stat == Ok) {
565         ((char*)bd.Scan0)[2 + 2*3 + 3*bd.Stride] = 0xff;
566
567         stat = GdipBitmapUnlockBits(bm, &bd);
568         expect(Ok, stat);
569     }
570
571     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
572     expect(Ok, stat);
573     expect(0xffff0000, color);
574
575     /* read-only, consecutive */
576     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
577     expect(Ok, stat);
578
579     if (stat == Ok) {
580         stat = GdipBitmapUnlockBits(bm, &bd);
581         expect(Ok, stat);
582     }
583
584     stat = GdipDisposeImage((GpImage*)bm);
585     expect(Ok, stat);
586     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
587     expect(Ok, stat);
588
589     /* read x2 */
590     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
591     expect(Ok, stat);
592     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
593     expect(WrongState, stat);
594
595     stat = GdipBitmapUnlockBits(bm, &bd);
596     expect(Ok, stat);
597
598     stat = GdipDisposeImage((GpImage*)bm);
599     expect(Ok, stat);
600     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
601     expect(Ok, stat);
602
603     stat = GdipBitmapSetPixel(bm, 2, 3, 0xffff0000);
604     expect(Ok, stat);
605
606     stat = GdipBitmapSetPixel(bm, 2, 8, 0xffc30000);
607     expect(Ok, stat);
608
609     /* write, no conversion */
610     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
611     expect(Ok, stat);
612
613     if (stat == Ok) {
614         /* all bits are readable, inside the rect or not */
615         expect(0xff, ((BYTE*)bd.Scan0)[2]);
616         expect(0xc3, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]);
617
618         stat = GdipBitmapUnlockBits(bm, &bd);
619         expect(Ok, stat);
620     }
621
622     /* read, conversion */
623     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat32bppARGB, &bd);
624     expect(Ok, stat);
625
626     if (stat == Ok) {
627         expect(0xff, ((BYTE*)bd.Scan0)[2]);
628         if (0)
629             /* Areas outside the rectangle appear to be uninitialized */
630             ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
631
632         ((BYTE*)bd.Scan0)[2] = 0xc3;
633
634         stat = GdipBitmapUnlockBits(bm, &bd);
635         expect(Ok, stat);
636     }
637
638     /* writes do not work in read mode if there was a conversion */
639     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
640     expect(Ok, stat);
641     expect(0xffff0000, color);
642
643     /* read/write, conversion */
644     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite, PixelFormat32bppARGB, &bd);
645     expect(Ok, stat);
646
647     if (stat == Ok) {
648         expect(0xff, ((BYTE*)bd.Scan0)[2]);
649         ((BYTE*)bd.Scan0)[1] = 0x88;
650         if (0)
651             /* Areas outside the rectangle appear to be uninitialized */
652             ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
653
654         stat = GdipBitmapUnlockBits(bm, &bd);
655         expect(Ok, stat);
656     }
657
658     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
659     expect(Ok, stat);
660     expect(0xffff8800, color);
661
662     /* write, conversion */
663     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat32bppARGB, &bd);
664     expect(Ok, stat);
665
666     if (stat == Ok) {
667         if (0)
668         {
669             /* This is completely uninitialized. */
670             ok(0xff != ((BYTE*)bd.Scan0)[2], "original image bits are readable\n");
671             ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
672         }
673
674         /* Initialize the buffer so the unlock doesn't access undefined memory */
675         for (y=0; y<5; y++)
676             memset(((BYTE*)bd.Scan0) + bd.Stride * y, 0, 12);
677
678         ((BYTE*)bd.Scan0)[0] = 0x12;
679         ((BYTE*)bd.Scan0)[1] = 0x34;
680         ((BYTE*)bd.Scan0)[2] = 0x56;
681
682         stat = GdipBitmapUnlockBits(bm, &bd);
683         expect(Ok, stat);
684     }
685
686     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
687     expect(Ok, stat);
688     expect(0xff563412, color);
689
690     stat = GdipBitmapGetPixel(bm, 2, 8, &color);
691     expect(Ok, stat);
692     expect(0xffc30000, color);
693
694     stat = GdipDisposeImage((GpImage*)bm);
695     expect(Ok, stat);
696     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
697     expect(Ok, stat);
698
699     /* write, no modification */
700     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
701     expect(Ok, stat);
702
703     if (stat == Ok) {
704         stat = GdipBitmapUnlockBits(bm, &bd);
705         expect(Ok, stat);
706     }
707
708     /* write, consecutive */
709     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
710     expect(Ok, stat);
711
712     if (stat == Ok) {
713         stat = GdipBitmapUnlockBits(bm, &bd);
714         expect(Ok, stat);
715     }
716
717     stat = GdipDisposeImage((GpImage*)bm);
718     expect(Ok, stat);
719     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
720     expect(Ok, stat);
721
722     /* write, modify */
723     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
724     expect(Ok, stat);
725
726     if (stat == Ok) {
727         if (bd.Scan0)
728             ((char*)bd.Scan0)[2] = 0xff;
729
730         stat = GdipBitmapUnlockBits(bm, &bd);
731         expect(Ok, stat);
732     }
733
734     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
735     expect(Ok, stat);
736     expect(0xffff0000, color);
737
738     stat = GdipDisposeImage((GpImage*)bm);
739     expect(Ok, stat);
740
741     /* dispose locked */
742     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
743     expect(Ok, stat);
744     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
745     expect(Ok, stat);
746     stat = GdipDisposeImage((GpImage*)bm);
747     expect(Ok, stat);
748 }
749
750 static void test_LockBits_UserBuf(void)
751 {
752     GpStatus stat;
753     GpBitmap *bm;
754     GpRect rect;
755     BitmapData bd;
756     const INT WIDTH = 10, HEIGHT = 20;
757     DWORD bits[200];
758     ARGB color;
759
760     bm = NULL;
761     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat32bppARGB, NULL, &bm);
762     expect(Ok, stat);
763
764     memset(bits, 0xaa, sizeof(bits));
765
766     rect.X = 2;
767     rect.Y = 3;
768     rect.Width = 4;
769     rect.Height = 5;
770
771     bd.Width = 4;
772     bd.Height = 6;
773     bd.Stride = WIDTH * 4;
774     bd.PixelFormat = PixelFormat32bppARGB;
775     bd.Scan0 = &bits[2+3*WIDTH];
776     bd.Reserved = 0xaaaaaaaa;
777
778     /* read-only */
779     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
780     expect(Ok, stat);
781
782     expect(0xaaaaaaaa, bits[0]);
783     expect(0, bits[2+3*WIDTH]);
784
785     bits[2+3*WIDTH] = 0xdeadbeef;
786
787     if (stat == Ok) {
788         stat = GdipBitmapUnlockBits(bm, &bd);
789         expect(Ok, stat);
790     }
791
792     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
793     expect(Ok, stat);
794     expect(0, color);
795
796     /* write-only */
797     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
798     expect(Ok, stat);
799
800     expect(0xdeadbeef, bits[2+3*WIDTH]);
801     bits[2+3*WIDTH] = 0x12345678;
802
803     if (stat == Ok) {
804         stat = GdipBitmapUnlockBits(bm, &bd);
805         expect(Ok, stat);
806     }
807
808     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
809     expect(Ok, stat);
810     expect(0x12345678, color);
811
812     bits[2+3*WIDTH] = 0;
813
814     /* read/write */
815     stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
816     expect(Ok, stat);
817
818     expect(0x12345678, bits[2+3*WIDTH]);
819     bits[2+3*WIDTH] = 0xdeadbeef;
820
821     if (stat == Ok) {
822         stat = GdipBitmapUnlockBits(bm, &bd);
823         expect(Ok, stat);
824     }
825
826     stat = GdipBitmapGetPixel(bm, 2, 3, &color);
827     expect(Ok, stat);
828     expect(0xdeadbeef, color);
829
830     stat = GdipDisposeImage((GpImage*)bm);
831     expect(Ok, stat);
832 }
833
834 static void test_GdipCreateBitmapFromHBITMAP(void)
835 {
836     GpBitmap* gpbm = NULL;
837     HBITMAP hbm = NULL;
838     HPALETTE hpal = NULL;
839     GpStatus stat;
840     BYTE buff[1000];
841     LOGPALETTE* LogPal = NULL;
842     REAL width, height;
843     const REAL WIDTH1 = 5;
844     const REAL HEIGHT1 = 15;
845     const REAL WIDTH2 = 10;
846     const REAL HEIGHT2 = 20;
847     HDC hdc;
848     BITMAPINFO bmi;
849     BYTE *bits;
850
851     stat = GdipCreateBitmapFromHBITMAP(NULL, NULL, NULL);
852     expect(InvalidParameter, stat);
853
854     hbm = CreateBitmap(WIDTH1, HEIGHT1, 1, 1, NULL);
855     stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, NULL);
856     expect(InvalidParameter, stat);
857
858     stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
859     expect(Ok, stat);
860     expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
861     expectf(WIDTH1,  width);
862     expectf(HEIGHT1, height);
863     if (stat == Ok)
864         GdipDisposeImage((GpImage*)gpbm);
865     DeleteObject(hbm);
866
867     memset(buff, 0, sizeof(buff));
868     hbm = CreateBitmap(WIDTH2, HEIGHT2, 1, 1, &buff);
869     stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
870     expect(Ok, stat);
871     /* raw format */
872     expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)gpbm, __LINE__, FALSE);
873
874     expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
875     expectf(WIDTH2,  width);
876     expectf(HEIGHT2, height);
877     if (stat == Ok)
878         GdipDisposeImage((GpImage*)gpbm);
879     DeleteObject(hbm);
880
881     hdc = CreateCompatibleDC(0);
882     ok(hdc != NULL, "CreateCompatibleDC failed\n");
883     bmi.bmiHeader.biSize = sizeof(bmi.bmiHeader);
884     bmi.bmiHeader.biHeight = HEIGHT1;
885     bmi.bmiHeader.biWidth = WIDTH1;
886     bmi.bmiHeader.biBitCount = 24;
887     bmi.bmiHeader.biPlanes = 1;
888     bmi.bmiHeader.biCompression = BI_RGB;
889
890     hbm = CreateDIBSection(hdc, &bmi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
891     ok(hbm != NULL, "CreateDIBSection failed\n");
892
893     bits[0] = 0;
894
895     stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
896     expect(Ok, stat);
897     expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
898     expectf(WIDTH1,  width);
899     expectf(HEIGHT1, height);
900     if (stat == Ok)
901     {
902         /* test whether writing to the bitmap affects the original */
903         stat = GdipBitmapSetPixel(gpbm, 0, 0, 0xffffffff);
904         expect(Ok, stat);
905
906         expect(0, bits[0]);
907
908         GdipDisposeImage((GpImage*)gpbm);
909     }
910
911     LogPal = GdipAlloc(sizeof(LOGPALETTE));
912     ok(LogPal != NULL, "unable to allocate LOGPALETTE\n");
913     LogPal->palVersion = 0x300;
914     LogPal->palNumEntries = 1;
915     hpal = CreatePalette(LogPal);
916     ok(hpal != NULL, "CreatePalette failed\n");
917     GdipFree(LogPal);
918
919     stat = GdipCreateBitmapFromHBITMAP(hbm, hpal, &gpbm);
920     todo_wine
921     {
922         expect(Ok, stat);
923     }
924     if (stat == Ok)
925         GdipDisposeImage((GpImage*)gpbm);
926
927     DeleteObject(hpal);
928     DeleteObject(hbm);
929 }
930
931 static void test_GdipGetImageFlags(void)
932 {
933     GpImage *img;
934     GpStatus stat;
935     UINT flags;
936
937     img = (GpImage*)0xdeadbeef;
938
939     stat = GdipGetImageFlags(NULL, NULL);
940     expect(InvalidParameter, stat);
941
942     stat = GdipGetImageFlags(NULL, &flags);
943     expect(InvalidParameter, stat);
944
945     stat = GdipGetImageFlags(img, NULL);
946     expect(InvalidParameter, stat);
947
948     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat1bppIndexed, NULL, (GpBitmap**)&img);
949     expect(Ok, stat);
950     stat = GdipGetImageFlags(img, &flags);
951     expect(Ok, stat);
952     expect(ImageFlagsHasAlpha, flags);
953     GdipDisposeImage(img);
954
955     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat4bppIndexed, NULL, (GpBitmap**)&img);
956     expect(Ok, stat);
957     stat = GdipGetImageFlags(img, &flags);
958     expect(Ok, stat);
959     expect(ImageFlagsHasAlpha, flags);
960     GdipDisposeImage(img);
961
962     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat8bppIndexed, NULL, (GpBitmap**)&img);
963     expect(Ok, stat);
964     stat = GdipGetImageFlags(img, &flags);
965     expect(Ok, stat);
966     expect(ImageFlagsHasAlpha, flags);
967     GdipDisposeImage(img);
968
969     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppGrayScale, NULL, (GpBitmap**)&img);
970     expect(Ok, stat);
971     stat = GdipGetImageFlags(img, &flags);
972     expect(Ok, stat);
973     expect(ImageFlagsNone, flags);
974     GdipDisposeImage(img);
975
976     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB555, NULL, (GpBitmap**)&img);
977     expect(Ok, stat);
978     stat = GdipGetImageFlags(img, &flags);
979     expect(Ok, stat);
980     expect(ImageFlagsNone, flags);
981     GdipDisposeImage(img);
982
983     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB565, NULL, (GpBitmap**)&img);
984     expect(Ok, stat);
985     stat = GdipGetImageFlags(img, &flags);
986     expect(Ok, stat);
987     expect(ImageFlagsNone, flags);
988     GdipDisposeImage(img);
989
990     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppARGB1555, NULL, (GpBitmap**)&img);
991     expect(Ok, stat);
992     stat = GdipGetImageFlags(img, &flags);
993     expect(Ok, stat);
994     expect(ImageFlagsHasAlpha, flags);
995     GdipDisposeImage(img);
996
997     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, (GpBitmap**)&img);
998     expect(Ok, stat);
999     stat = GdipGetImageFlags(img, &flags);
1000     expect(Ok, stat);
1001     expect(ImageFlagsNone, flags);
1002     GdipDisposeImage(img);
1003
1004     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppRGB, NULL, (GpBitmap**)&img);
1005     expect(Ok, stat);
1006     stat = GdipGetImageFlags(img, &flags);
1007     expect(Ok, stat);
1008     expect(ImageFlagsNone, flags);
1009     GdipDisposeImage(img);
1010
1011     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppARGB, NULL, (GpBitmap**)&img);
1012     expect(Ok, stat);
1013     stat = GdipGetImageFlags(img, &flags);
1014     expect(Ok, stat);
1015     expect(ImageFlagsHasAlpha, flags);
1016     GdipDisposeImage(img);
1017
1018     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppPARGB, NULL, (GpBitmap**)&img);
1019     expect(Ok, stat);
1020     stat = GdipGetImageFlags(img, &flags);
1021     expect(Ok, stat);
1022     expect(ImageFlagsHasAlpha, flags);
1023     GdipDisposeImage(img);
1024
1025     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat48bppRGB, NULL, (GpBitmap**)&img);
1026     expect(Ok, stat);
1027     if (stat == Ok)
1028     {
1029         stat = GdipGetImageFlags(img, &flags);
1030         expect(Ok, stat);
1031         expect(ImageFlagsNone, flags);
1032         GdipDisposeImage(img);
1033     }
1034
1035     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppARGB, NULL, (GpBitmap**)&img);
1036     expect(Ok, stat);
1037     if (stat == Ok)
1038     {
1039         expect(Ok, stat);
1040         stat = GdipGetImageFlags(img, &flags);
1041         expect(Ok, stat);
1042         expect(ImageFlagsHasAlpha, flags);
1043         GdipDisposeImage(img);
1044     }
1045
1046     stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppPARGB, NULL, (GpBitmap**)&img);
1047     expect(Ok, stat);
1048     if (stat == Ok)
1049     {
1050         expect(Ok, stat);
1051         stat = GdipGetImageFlags(img, &flags);
1052         expect(Ok, stat);
1053         expect(ImageFlagsHasAlpha, flags);
1054         GdipDisposeImage(img);
1055     }
1056 }
1057
1058 static void test_GdipCloneImage(void)
1059 {
1060     GpStatus stat;
1061     GpRectF rectF;
1062     GpUnit unit;
1063     GpBitmap *bm;
1064     GpImage *image_src, *image_dest = NULL;
1065     const INT WIDTH = 10, HEIGHT = 20;
1066
1067     /* Create an image, clone it, delete the original, make sure the copy works */
1068     stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
1069     expect(Ok, stat);
1070     expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bm, __LINE__, FALSE);
1071
1072     image_src = ((GpImage*)bm);
1073     stat = GdipCloneImage(image_src, &image_dest);
1074     expect(Ok, stat);
1075     expect_rawformat(&ImageFormatMemoryBMP, image_dest, __LINE__, FALSE);
1076
1077     stat = GdipDisposeImage((GpImage*)bm);
1078     expect(Ok, stat);
1079     stat = GdipGetImageBounds(image_dest, &rectF, &unit);
1080     expect(Ok, stat);
1081
1082     /* Treat FP values carefully */
1083     expectf((REAL)WIDTH, rectF.Width);
1084     expectf((REAL)HEIGHT, rectF.Height);
1085
1086     stat = GdipDisposeImage(image_dest);
1087     expect(Ok, stat);
1088 }
1089
1090 static void test_testcontrol(void)
1091 {
1092     GpStatus stat;
1093     DWORD param;
1094
1095     param = 0;
1096     stat = GdipTestControl(TestControlGetBuildNumber, &param);
1097     expect(Ok, stat);
1098     ok(param != 0, "Build number expected, got %u\n", param);
1099 }
1100
1101 static void test_fromhicon(void)
1102 {
1103     static const BYTE bmp_bits[1024];
1104     HBITMAP hbmMask, hbmColor;
1105     ICONINFO info;
1106     HICON hIcon;
1107     GpStatus stat;
1108     GpBitmap *bitmap = NULL;
1109     UINT dim;
1110     ImageType type;
1111     PixelFormat format;
1112
1113     /* NULL */
1114     stat = GdipCreateBitmapFromHICON(NULL, NULL);
1115     expect(InvalidParameter, stat);
1116     stat = GdipCreateBitmapFromHICON(NULL, &bitmap);
1117     expect(InvalidParameter, stat);
1118
1119     /* color icon 1 bit */
1120     hbmMask = CreateBitmap(16, 16, 1, 1, bmp_bits);
1121     ok(hbmMask != 0, "CreateBitmap failed\n");
1122     hbmColor = CreateBitmap(16, 16, 1, 1, bmp_bits);
1123     ok(hbmColor != 0, "CreateBitmap failed\n");
1124     info.fIcon = TRUE;
1125     info.xHotspot = 8;
1126     info.yHotspot = 8;
1127     info.hbmMask = hbmMask;
1128     info.hbmColor = hbmColor;
1129     hIcon = CreateIconIndirect(&info);
1130     ok(hIcon != 0, "CreateIconIndirect failed\n");
1131     DeleteObject(hbmMask);
1132     DeleteObject(hbmColor);
1133
1134     stat = GdipCreateBitmapFromHICON(hIcon, &bitmap);
1135     ok(stat == Ok ||
1136        broken(stat == InvalidParameter), /* Win98 */
1137        "Expected Ok, got %.8x\n", stat);
1138     if(stat == Ok){
1139        /* check attributes */
1140        stat = GdipGetImageHeight((GpImage*)bitmap, &dim);
1141        expect(Ok, stat);
1142        expect(16, dim);
1143        stat = GdipGetImageWidth((GpImage*)bitmap, &dim);
1144        expect(Ok, stat);
1145        expect(16, dim);
1146        stat = GdipGetImageType((GpImage*)bitmap, &type);
1147        expect(Ok, stat);
1148        expect(ImageTypeBitmap, type);
1149        stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format);
1150        expect(Ok, stat);
1151        expect(PixelFormat32bppARGB, format);
1152        /* raw format */
1153        expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE);
1154        GdipDisposeImage((GpImage*)bitmap);
1155     }
1156     DestroyIcon(hIcon);
1157
1158     /* color icon 8 bpp */
1159     hbmMask = CreateBitmap(16, 16, 1, 8, bmp_bits);
1160     ok(hbmMask != 0, "CreateBitmap failed\n");
1161     hbmColor = CreateBitmap(16, 16, 1, 8, bmp_bits);
1162     ok(hbmColor != 0, "CreateBitmap failed\n");
1163     info.fIcon = TRUE;
1164     info.xHotspot = 8;
1165     info.yHotspot = 8;
1166     info.hbmMask = hbmMask;
1167     info.hbmColor = hbmColor;
1168     hIcon = CreateIconIndirect(&info);
1169     ok(hIcon != 0, "CreateIconIndirect failed\n");
1170     DeleteObject(hbmMask);
1171     DeleteObject(hbmColor);
1172
1173     stat = GdipCreateBitmapFromHICON(hIcon, &bitmap);
1174     expect(Ok, stat);
1175     if(stat == Ok){
1176         /* check attributes */
1177         stat = GdipGetImageHeight((GpImage*)bitmap, &dim);
1178         expect(Ok, stat);
1179         expect(16, dim);
1180         stat = GdipGetImageWidth((GpImage*)bitmap, &dim);
1181         expect(Ok, stat);
1182         expect(16, dim);
1183         stat = GdipGetImageType((GpImage*)bitmap, &type);
1184         expect(Ok, stat);
1185         expect(ImageTypeBitmap, type);
1186         stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format);
1187         expect(Ok, stat);
1188         expect(PixelFormat32bppARGB, format);
1189         /* raw format */
1190         expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE);
1191         GdipDisposeImage((GpImage*)bitmap);
1192     }
1193     DestroyIcon(hIcon);
1194 }
1195
1196 /* 1x1 pixel png */
1197 static const unsigned char pngimage[285] = {
1198 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
1199 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x90,0x77,0x53,
1200 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,
1201 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,0x07,0xd5,
1202 0x06,0x03,0x0f,0x07,0x2d,0x12,0x10,0xf0,0xfd,0x00,0x00,0x00,0x0c,0x49,0x44,0x41,
1203 0x54,0x08,0xd7,0x63,0xf8,0xff,0xff,0x3f,0x00,0x05,0xfe,0x02,0xfe,0xdc,0xcc,0x59,
1204 0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
1205 };
1206 /* 1x1 pixel gif */
1207 static const unsigned char gifimage[35] = {
1208 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x00,0xff,0xff,0xff,
1209 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44,
1210 0x01,0x00,0x3b
1211 };
1212 /* 1x1 pixel bmp */
1213 static const unsigned char bmpimage[66] = {
1214 0x42,0x4d,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x28,0x00,
1215 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,
1216 0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x12,0x0b,0x00,0x00,0x02,0x00,
1217 0x00,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,
1218 0x00,0x00
1219 };
1220 /* 1x1 pixel jpg */
1221 static const unsigned char jpgimage[285] = {
1222 0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x01,0x2c,
1223 0x01,0x2c,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x05,0x03,0x04,0x04,0x04,0x03,0x05,
1224 0x04,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x0c,0x08,0x07,0x07,0x07,0x07,0x0f,0x0b,
1225 0x0b,0x09,0x0c,0x11,0x0f,0x12,0x12,0x11,0x0f,0x11,0x11,0x13,0x16,0x1c,0x17,0x13,
1226 0x14,0x1a,0x15,0x11,0x11,0x18,0x21,0x18,0x1a,0x1d,0x1d,0x1f,0x1f,0x1f,0x13,0x17,
1227 0x22,0x24,0x22,0x1e,0x24,0x1c,0x1e,0x1f,0x1e,0xff,0xdb,0x00,0x43,0x01,0x05,0x05,
1228 0x05,0x07,0x06,0x07,0x0e,0x08,0x08,0x0e,0x1e,0x14,0x11,0x14,0x1e,0x1e,0x1e,0x1e,
1229 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
1230 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
1231 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0xff,0xc0,
1232 0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
1233 0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1234 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00,
1235 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4,
1236 0x00,0x14,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1237 0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
1238 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,0x03,0x01,
1239 0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xb2,0xc0,0x07,0xff,0xd9
1240 };
1241 /* 1x1 pixel tiff */
1242 static const unsigned char tiffimage[] = {
1243 0x49,0x49,0x2a,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xfe,0x00,
1244 0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x00,
1245 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1246 0x00,0x00,0x02,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0xd2,0x00,0x00,0x00,0x03,0x01,
1247 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x01,0x00,
1248 0x00,0x00,0x02,0x00,0x00,0x00,0x0d,0x01,0x02,0x00,0x1b,0x00,0x00,0x00,0xd8,0x00,
1249 0x00,0x00,0x11,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x01,
1250 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x15,0x01,0x03,0x00,0x01,0x00,
1251 0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x40,0x00,
1252 0x00,0x00,0x17,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1a,0x01,
1253 0x05,0x00,0x01,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0x1b,0x01,0x05,0x00,0x01,0x00,
1254 0x00,0x00,0xfc,0x00,0x00,0x00,0x1c,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1255 0x00,0x00,0x28,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,
1256 0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x6d,0x65,
1257 0x68,0x2f,0x44,0x65,0x73,0x6b,0x74,0x6f,0x70,0x2f,0x74,0x65,0x73,0x74,0x2e,0x74,
1258 0x69,0x66,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48,
1259 0x00,0x00,0x00,0x01
1260 };
1261 /* 320x320 twip wmf */
1262 static const unsigned char wmfimage[180] = {
1263 0xd7,0xcd,0xc6,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x01,0x40,0x01,0xa0,0x05,
1264 0x00,0x00,0x00,0x00,0xb1,0x52,0x01,0x00,0x09,0x00,0x00,0x03,0x4f,0x00,0x00,0x00,
1265 0x0f,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x0b,0x02,0x00,0x00,
1266 0x00,0x00,0x05,0x00,0x00,0x00,0x0c,0x02,0x40,0x01,0x40,0x01,0x04,0x00,0x00,0x00,
1267 0x02,0x01,0x01,0x00,0x04,0x00,0x00,0x00,0x04,0x01,0x0d,0x00,0x08,0x00,0x00,0x00,
1268 0xfa,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
1269 0x2d,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,0x01,0x00,0x00,0x00,0x00,0x00,
1270 0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,
1271 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x02,0x00,
1272 0x07,0x00,0x00,0x00,0x1b,0x04,0x40,0x01,0x40,0x01,0x00,0x00,0x00,0x00,0x04,0x00,
1273 0x00,0x00,0xf0,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0xf0,0x01,0x01,0x00,0x03,0x00,
1274 0x00,0x00,0x00,0x00
1275 };
1276 static void test_getrawformat(void)
1277 {
1278     test_bufferrawformat((void*)pngimage, sizeof(pngimage), &ImageFormatPNG,  __LINE__, FALSE);
1279     test_bufferrawformat((void*)gifimage, sizeof(gifimage), &ImageFormatGIF,  __LINE__, FALSE);
1280     test_bufferrawformat((void*)bmpimage, sizeof(bmpimage), &ImageFormatBMP,  __LINE__, FALSE);
1281     test_bufferrawformat((void*)jpgimage, sizeof(jpgimage), &ImageFormatJPEG, __LINE__, FALSE);
1282     test_bufferrawformat((void*)tiffimage, sizeof(tiffimage), &ImageFormatTIFF, __LINE__, FALSE);
1283     test_bufferrawformat((void*)wmfimage, sizeof(wmfimage), &ImageFormatWMF, __LINE__, FALSE);
1284 }
1285
1286 static void test_loadwmf(void)
1287 {
1288     LPSTREAM stream;
1289     HGLOBAL  hglob;
1290     LPBYTE   data;
1291     HRESULT  hres;
1292     GpStatus stat;
1293     GpImage *img;
1294     GpRectF bounds;
1295     GpUnit unit;
1296     REAL res = 12345.0;
1297     MetafileHeader header;
1298
1299     hglob = GlobalAlloc (0, sizeof(wmfimage));
1300     data = GlobalLock (hglob);
1301     memcpy(data, wmfimage, sizeof(wmfimage));
1302     GlobalUnlock(hglob); data = NULL;
1303
1304     hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
1305     ok(hres == S_OK, "Failed to create a stream\n");
1306     if(hres != S_OK) return;
1307
1308     stat = GdipLoadImageFromStream(stream, &img);
1309     ok(stat == Ok, "Failed to create a Bitmap\n");
1310     if(stat != Ok){
1311         IStream_Release(stream);
1312         return;
1313     }
1314
1315     IStream_Release(stream);
1316
1317     stat = GdipGetImageBounds(img, &bounds, &unit);
1318     expect(Ok, stat);
1319     todo_wine expect(UnitPixel, unit);
1320     expectf(0.0, bounds.X);
1321     expectf(0.0, bounds.Y);
1322     todo_wine expectf(320.0, bounds.Width);
1323     todo_wine expectf(320.0, bounds.Height);
1324
1325     stat = GdipGetImageHorizontalResolution(img, &res);
1326     expect(Ok, stat);
1327     todo_wine expectf(1440.0, res);
1328
1329     stat = GdipGetImageVerticalResolution(img, &res);
1330     expect(Ok, stat);
1331     todo_wine expectf(1440.0, res);
1332
1333     memset(&header, 0, sizeof(header));
1334     stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header);
1335     expect(Ok, stat);
1336     if (stat == Ok)
1337     {
1338         todo_wine expect(MetafileTypeWmfPlaceable, header.Type);
1339         todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size);
1340         todo_wine expect(0x300, header.Version);
1341         expect(0, header.EmfPlusFlags);
1342         todo_wine expectf(1440.0, header.DpiX);
1343         todo_wine expectf(1440.0, header.DpiY);
1344         expect(0, header.X);
1345         expect(0, header.Y);
1346         todo_wine expect(320, header.Width);
1347         todo_wine expect(320, header.Height);
1348         todo_wine expect(1, U(header).WmfHeader.mtType);
1349         expect(0, header.EmfPlusHeaderSize);
1350         expect(0, header.LogicalDpiX);
1351         expect(0, header.LogicalDpiY);
1352     }
1353
1354     GdipDisposeImage(img);
1355 }
1356
1357 static void test_createfromwmf(void)
1358 {
1359     HMETAFILE hwmf;
1360     GpImage *img;
1361     GpStatus stat;
1362     GpRectF bounds;
1363     GpUnit unit;
1364     REAL res = 12345.0;
1365     MetafileHeader header;
1366
1367     hwmf = SetMetaFileBitsEx(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader),
1368         wmfimage+sizeof(WmfPlaceableFileHeader));
1369     ok(hwmf != 0, "SetMetaFileBitsEx failed\n");
1370
1371     stat = GdipCreateMetafileFromWmf(hwmf, TRUE,
1372         (WmfPlaceableFileHeader*)wmfimage, (GpMetafile**)&img);
1373     expect(Ok, stat);
1374
1375     stat = GdipGetImageBounds(img, &bounds, &unit);
1376     expect(Ok, stat);
1377     expect(UnitPixel, unit);
1378     expectf(0.0, bounds.X);
1379     expectf(0.0, bounds.Y);
1380     expectf(320.0, bounds.Width);
1381     expectf(320.0, bounds.Height);
1382
1383     stat = GdipGetImageHorizontalResolution(img, &res);
1384     expect(Ok, stat);
1385     expectf(1440.0, res);
1386
1387     stat = GdipGetImageVerticalResolution(img, &res);
1388     expect(Ok, stat);
1389     expectf(1440.0, res);
1390
1391     memset(&header, 0, sizeof(header));
1392     stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header);
1393     expect(Ok, stat);
1394     if (stat == Ok)
1395     {
1396         todo_wine expect(MetafileTypeWmfPlaceable, header.Type);
1397         todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size);
1398         todo_wine expect(0x300, header.Version);
1399         expect(0, header.EmfPlusFlags);
1400         todo_wine expectf(1440.0, header.DpiX);
1401         todo_wine expectf(1440.0, header.DpiY);
1402         expect(0, header.X);
1403         expect(0, header.Y);
1404         todo_wine expect(320, header.Width);
1405         todo_wine expect(320, header.Height);
1406         todo_wine expect(1, U(header).WmfHeader.mtType);
1407         expect(0, header.EmfPlusHeaderSize);
1408         expect(0, header.LogicalDpiX);
1409         expect(0, header.LogicalDpiY);
1410     }
1411
1412     GdipDisposeImage(img);
1413 }
1414
1415 static void test_resolution(void)
1416 {
1417     GpStatus stat;
1418     GpBitmap *bitmap;
1419     REAL res=-1.0;
1420     HDC screendc;
1421     int screenxres, screenyres;
1422
1423     /* create Bitmap */
1424     stat = GdipCreateBitmapFromScan0(1, 1, 32, PixelFormat24bppRGB, NULL, &bitmap);
1425     expect(Ok, stat);
1426
1427     /* test invalid values */
1428     stat = GdipGetImageHorizontalResolution(NULL, &res);
1429     expect(InvalidParameter, stat);
1430
1431     stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, NULL);
1432     expect(InvalidParameter, stat);
1433
1434     stat = GdipGetImageVerticalResolution(NULL, &res);
1435     expect(InvalidParameter, stat);
1436
1437     stat = GdipGetImageVerticalResolution((GpImage*)bitmap, NULL);
1438     expect(InvalidParameter, stat);
1439
1440     stat = GdipBitmapSetResolution(NULL, 96.0, 96.0);
1441     expect(InvalidParameter, stat);
1442
1443     stat = GdipBitmapSetResolution(bitmap, 0.0, 0.0);
1444     expect(InvalidParameter, stat);
1445
1446     /* defaults to screen resolution */
1447     screendc = GetDC(0);
1448
1449     screenxres = GetDeviceCaps(screendc, LOGPIXELSX);
1450     screenyres = GetDeviceCaps(screendc, LOGPIXELSY);
1451
1452     ReleaseDC(0, screendc);
1453
1454     stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res);
1455     expect(Ok, stat);
1456     expectf((REAL)screenxres, res);
1457
1458     stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res);
1459     expect(Ok, stat);
1460     expectf((REAL)screenyres, res);
1461
1462     /* test changing the resolution */
1463     stat = GdipBitmapSetResolution(bitmap, screenxres*2.0, screenyres*3.0);
1464     expect(Ok, stat);
1465
1466     stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res);
1467     expect(Ok, stat);
1468     expectf(screenxres*2.0, res);
1469
1470     stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res);
1471     expect(Ok, stat);
1472     expectf(screenyres*3.0, res);
1473
1474     stat = GdipDisposeImage((GpImage*)bitmap);
1475     expect(Ok, stat);
1476 }
1477
1478 static void test_createhbitmap(void)
1479 {
1480     GpStatus stat;
1481     GpBitmap *bitmap;
1482     HBITMAP hbitmap, oldhbitmap;
1483     BITMAP bm;
1484     int ret;
1485     HDC hdc;
1486     COLORREF pixel;
1487     BYTE bits[640];
1488
1489     memset(bits, 0x68, 640);
1490
1491     /* create Bitmap */
1492     stat = GdipCreateBitmapFromScan0(10, 20, 32, PixelFormat24bppRGB, bits, &bitmap);
1493     expect(Ok, stat);
1494
1495     /* test NULL values */
1496     stat = GdipCreateHBITMAPFromBitmap(NULL, &hbitmap, 0);
1497     expect(InvalidParameter, stat);
1498
1499     stat = GdipCreateHBITMAPFromBitmap(bitmap, NULL, 0);
1500     expect(InvalidParameter, stat);
1501
1502     /* create HBITMAP */
1503     stat = GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0);
1504     expect(Ok, stat);
1505
1506     if (stat == Ok)
1507     {
1508         ret = GetObjectA(hbitmap, sizeof(BITMAP), &bm);
1509         expect(sizeof(BITMAP), ret);
1510
1511         expect(0, bm.bmType);
1512         expect(10, bm.bmWidth);
1513         expect(20, bm.bmHeight);
1514         expect(40, bm.bmWidthBytes);
1515         expect(1, bm.bmPlanes);
1516         expect(32, bm.bmBitsPixel);
1517         ok(bm.bmBits != NULL, "got DDB, expected DIB\n");
1518
1519         hdc = CreateCompatibleDC(NULL);
1520
1521         oldhbitmap = SelectObject(hdc, hbitmap);
1522         pixel = GetPixel(hdc, 5, 5);
1523         SelectObject(hdc, oldhbitmap);
1524
1525         DeleteDC(hdc);
1526
1527         expect(0x686868, pixel);
1528
1529         DeleteObject(hbitmap);
1530     }
1531
1532     stat = GdipDisposeImage((GpImage*)bitmap);
1533     expect(Ok, stat);
1534 }
1535
1536 static void test_getthumbnail(void)
1537 {
1538     GpStatus stat;
1539     GpImage *bitmap1, *bitmap2;
1540     UINT width, height;
1541
1542     stat = GdipGetImageThumbnail(NULL, 0, 0, &bitmap2, NULL, NULL);
1543     expect(InvalidParameter, stat);
1544
1545     stat = GdipCreateBitmapFromScan0(128, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1);
1546     expect(Ok, stat);
1547
1548     stat = GdipGetImageThumbnail(bitmap1, 0, 0, NULL, NULL, NULL);
1549     expect(InvalidParameter, stat);
1550
1551     stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL);
1552     expect(Ok, stat);
1553
1554     if (stat == Ok)
1555     {
1556         stat = GdipGetImageWidth(bitmap2, &width);
1557         expect(Ok, stat);
1558         expect(120, width);
1559
1560         stat = GdipGetImageHeight(bitmap2, &height);
1561         expect(Ok, stat);
1562         expect(120, height);
1563
1564         GdipDisposeImage(bitmap2);
1565     }
1566
1567     GdipDisposeImage(bitmap1);
1568
1569
1570     stat = GdipCreateBitmapFromScan0(64, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1);
1571     expect(Ok, stat);
1572
1573     stat = GdipGetImageThumbnail(bitmap1, 32, 32, &bitmap2, NULL, NULL);
1574     expect(Ok, stat);
1575
1576     if (stat == Ok)
1577     {
1578         stat = GdipGetImageWidth(bitmap2, &width);
1579         expect(Ok, stat);
1580         expect(32, width);
1581
1582         stat = GdipGetImageHeight(bitmap2, &height);
1583         expect(Ok, stat);
1584         expect(32, height);
1585
1586         GdipDisposeImage(bitmap2);
1587     }
1588
1589     stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL);
1590     expect(Ok, stat);
1591
1592     if (stat == Ok)
1593     {
1594         stat = GdipGetImageWidth(bitmap2, &width);
1595         expect(Ok, stat);
1596         expect(120, width);
1597
1598         stat = GdipGetImageHeight(bitmap2, &height);
1599         expect(Ok, stat);
1600         expect(120, height);
1601
1602         GdipDisposeImage(bitmap2);
1603     }
1604
1605     GdipDisposeImage(bitmap1);
1606 }
1607
1608 static void test_getsetpixel(void)
1609 {
1610     GpStatus stat;
1611     GpBitmap *bitmap;
1612     ARGB color;
1613     BYTE bits[16] = {0x00,0x00,0x00,0x00, 0x00,0xff,0xff,0x00,
1614                      0xff,0x00,0x00,0x00, 0xff,0xff,0xff,0x00};
1615
1616     stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, bits, &bitmap);
1617     expect(Ok, stat);
1618
1619     /* null parameters */
1620     stat = GdipBitmapGetPixel(NULL, 1, 1, &color);
1621     expect(InvalidParameter, stat);
1622
1623     stat = GdipBitmapGetPixel(bitmap, 1, 1, NULL);
1624     expect(InvalidParameter, stat);
1625
1626     stat = GdipBitmapSetPixel(NULL, 1, 1, 0);
1627     expect(InvalidParameter, stat);
1628
1629     /* out of bounds */
1630     stat = GdipBitmapGetPixel(bitmap, -1, 1, &color);
1631     expect(InvalidParameter, stat);
1632
1633     stat = GdipBitmapSetPixel(bitmap, -1, 1, 0);
1634     expect(InvalidParameter, stat);
1635
1636     stat = GdipBitmapGetPixel(bitmap, 1, -1, &color);
1637     ok(stat == InvalidParameter ||
1638        broken(stat == Ok), /* Older gdiplus */
1639        "Expected InvalidParameter, got %.8x\n", stat);
1640
1641     stat = GdipBitmapSetPixel(bitmap, 1, -1, 0);
1642     ok(stat == InvalidParameter ||
1643        broken(stat == Ok), /* Older gdiplus */
1644        "Expected InvalidParameter, got %.8x\n", stat);
1645
1646     stat = GdipBitmapGetPixel(bitmap, 2, 1, &color);
1647     expect(InvalidParameter, stat);
1648
1649     stat = GdipBitmapSetPixel(bitmap, 2, 1, 0);
1650     expect(InvalidParameter, stat);
1651
1652     stat = GdipBitmapGetPixel(bitmap, 1, 2, &color);
1653     expect(InvalidParameter, stat);
1654
1655     stat = GdipBitmapSetPixel(bitmap, 1, 2, 0);
1656     expect(InvalidParameter, stat);
1657
1658     /* valid use */
1659     stat = GdipBitmapGetPixel(bitmap, 1, 1, &color);
1660     expect(Ok, stat);
1661     expect(0xffffffff, color);
1662
1663     stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1664     expect(Ok, stat);
1665     expect(0xff0000ff, color);
1666
1667     stat = GdipBitmapSetPixel(bitmap, 1, 1, 0xff676869);
1668     expect(Ok, stat);
1669
1670     stat = GdipBitmapSetPixel(bitmap, 0, 0, 0xff474849);
1671     expect(Ok, stat);
1672
1673     stat = GdipBitmapGetPixel(bitmap, 1, 1, &color);
1674     expect(Ok, stat);
1675     expect(0xff676869, color);
1676
1677     stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1678     expect(Ok, stat);
1679     expect(0xff474849, color);
1680
1681     stat = GdipDisposeImage((GpImage*)bitmap);
1682     expect(Ok, stat);
1683 }
1684
1685 static void check_halftone_palette(ColorPalette *palette)
1686 {
1687     static const BYTE halftone_values[6]={0x00,0x33,0x66,0x99,0xcc,0xff};
1688     UINT i;
1689
1690     for (i=0; i<palette->Count; i++)
1691     {
1692         ARGB expected=0xff000000;
1693         if (i<8)
1694         {
1695             if (i&1) expected |= 0x800000;
1696             if (i&2) expected |= 0x8000;
1697             if (i&4) expected |= 0x80;
1698         }
1699         else if (i == 8)
1700         {
1701             expected = 0xffc0c0c0;
1702         }
1703         else if (i < 16)
1704         {
1705             if (i&1) expected |= 0xff0000;
1706             if (i&2) expected |= 0xff00;
1707             if (i&4) expected |= 0xff;
1708         }
1709         else if (i < 40)
1710         {
1711             expected = 0x00000000;
1712         }
1713         else
1714         {
1715             expected |= halftone_values[(i-40)%6];
1716             expected |= halftone_values[((i-40)/6)%6] << 8;
1717             expected |= halftone_values[((i-40)/36)%6] << 16;
1718         }
1719         ok(expected == palette->Entries[i], "Expected %.8x, got %.8x, i=%u/%u\n",
1720             expected, palette->Entries[i], i, palette->Count);
1721     }
1722 }
1723
1724 static void test_palette(void)
1725 {
1726     GpStatus stat;
1727     GpBitmap *bitmap;
1728     INT size;
1729     BYTE buffer[1040];
1730     ColorPalette *palette=(ColorPalette*)buffer;
1731     ARGB color=0;
1732
1733     /* test initial palette from non-indexed bitmap */
1734     stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, NULL, &bitmap);
1735     expect(Ok, stat);
1736
1737     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1738     expect(Ok, stat);
1739     expect(sizeof(UINT)*2+sizeof(ARGB), size);
1740
1741     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1742     expect(Ok, stat);
1743     expect(0, palette->Count);
1744
1745     /* test setting palette on not-indexed bitmap */
1746     palette->Count = 3;
1747
1748     stat = GdipSetImagePalette((GpImage*)bitmap, palette);
1749     expect(Ok, stat);
1750
1751     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1752     expect(Ok, stat);
1753     expect(sizeof(UINT)*2+sizeof(ARGB)*3, size);
1754
1755     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1756     expect(Ok, stat);
1757     expect(3, palette->Count);
1758
1759     GdipDisposeImage((GpImage*)bitmap);
1760
1761     /* test initial palette on 1-bit bitmap */
1762     stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat1bppIndexed, NULL, &bitmap);
1763     expect(Ok, stat);
1764
1765     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1766     expect(Ok, stat);
1767     expect(sizeof(UINT)*2+sizeof(ARGB)*2, size);
1768
1769     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1770     expect(Ok, stat);
1771     expect(PaletteFlagsGrayScale, palette->Flags);
1772     expect(2, palette->Count);
1773
1774     expect(0xff000000, palette->Entries[0]);
1775     expect(0xffffffff, palette->Entries[1]);
1776
1777     /* test getting/setting pixels */
1778     stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1779     expect(Ok, stat);
1780     expect(0xff000000, color);
1781
1782     stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffffffff);
1783     ok((stat == Ok) ||
1784        broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
1785
1786     if (stat == Ok)
1787     {
1788         stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1789         expect(Ok, stat);
1790         expect(0xffffffff, color);
1791     }
1792
1793     GdipDisposeImage((GpImage*)bitmap);
1794
1795     /* test initial palette on 4-bit bitmap */
1796     stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat4bppIndexed, NULL, &bitmap);
1797     expect(Ok, stat);
1798
1799     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1800     expect(Ok, stat);
1801     expect(sizeof(UINT)*2+sizeof(ARGB)*16, size);
1802
1803     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1804     expect(Ok, stat);
1805     expect(0, palette->Flags);
1806     expect(16, palette->Count);
1807
1808     check_halftone_palette(palette);
1809
1810     /* test getting/setting pixels */
1811     stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1812     expect(Ok, stat);
1813     expect(0xff000000, color);
1814
1815     stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffff00ff);
1816     ok((stat == Ok) ||
1817        broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
1818
1819     if (stat == Ok)
1820     {
1821         stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1822         expect(Ok, stat);
1823         expect(0xffff00ff, color);
1824     }
1825
1826     GdipDisposeImage((GpImage*)bitmap);
1827
1828     /* test initial palette on 8-bit bitmap */
1829     stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat8bppIndexed, NULL, &bitmap);
1830     expect(Ok, stat);
1831
1832     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1833     expect(Ok, stat);
1834     expect(sizeof(UINT)*2+sizeof(ARGB)*256, size);
1835
1836     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1837     expect(Ok, stat);
1838     expect(PaletteFlagsHalftone, palette->Flags);
1839     expect(256, palette->Count);
1840
1841     check_halftone_palette(palette);
1842
1843     /* test getting/setting pixels */
1844     stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1845     expect(Ok, stat);
1846     expect(0xff000000, color);
1847
1848     stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffcccccc);
1849     ok((stat == Ok) ||
1850        broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
1851
1852     if (stat == Ok)
1853     {
1854         stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1855         expect(Ok, stat);
1856         expect(0xffcccccc, color);
1857     }
1858
1859     /* test setting/getting a different palette */
1860     palette->Entries[1] = 0xffcccccc;
1861
1862     stat = GdipSetImagePalette((GpImage*)bitmap, palette);
1863     expect(Ok, stat);
1864
1865     palette->Entries[1] = 0;
1866
1867     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1868     expect(Ok, stat);
1869     expect(sizeof(UINT)*2+sizeof(ARGB)*256, size);
1870
1871     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1872     expect(Ok, stat);
1873     expect(PaletteFlagsHalftone, palette->Flags);
1874     expect(256, palette->Count);
1875     expect(0xffcccccc, palette->Entries[1]);
1876
1877     /* test count < 256 */
1878     palette->Flags = 12345;
1879     palette->Count = 3;
1880
1881     stat = GdipSetImagePalette((GpImage*)bitmap, palette);
1882     expect(Ok, stat);
1883
1884     palette->Entries[1] = 0;
1885     palette->Entries[3] = 0xdeadbeef;
1886
1887     stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1888     expect(Ok, stat);
1889     expect(sizeof(UINT)*2+sizeof(ARGB)*3, size);
1890
1891     stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1892     expect(Ok, stat);
1893     expect(12345, palette->Flags);
1894     expect(3, palette->Count);
1895     expect(0xffcccccc, palette->Entries[1]);
1896     expect(0xdeadbeef, palette->Entries[3]);
1897
1898     /* test count > 256 */
1899     palette->Count = 257;
1900
1901     stat = GdipSetImagePalette((GpImage*)bitmap, palette);
1902     ok(stat == InvalidParameter ||
1903        broken(stat == Ok), /* Old gdiplus behavior */
1904        "Expected %.8x, got %.8x\n", InvalidParameter, stat);
1905
1906     GdipDisposeImage((GpImage*)bitmap);
1907 }
1908
1909 static void test_colormatrix(void)
1910 {
1911     GpStatus stat;
1912     ColorMatrix colormatrix, graymatrix;
1913     GpImageAttributes *imageattr;
1914     const ColorMatrix identity = {{
1915         {1.0,0.0,0.0,0.0,0.0},
1916         {0.0,1.0,0.0,0.0,0.0},
1917         {0.0,0.0,1.0,0.0,0.0},
1918         {0.0,0.0,0.0,1.0,0.0},
1919         {0.0,0.0,0.0,0.0,1.0}}};
1920     const ColorMatrix double_red = {{
1921         {2.0,0.0,0.0,0.0,0.0},
1922         {0.0,1.0,0.0,0.0,0.0},
1923         {0.0,0.0,1.0,0.0,0.0},
1924         {0.0,0.0,0.0,1.0,0.0},
1925         {0.0,0.0,0.0,0.0,1.0}}};
1926     GpBitmap *bitmap1, *bitmap2;
1927     GpGraphics *graphics;
1928     ARGB color;
1929
1930     colormatrix = identity;
1931     graymatrix = identity;
1932
1933     stat = GdipSetImageAttributesColorMatrix(NULL, ColorAdjustTypeDefault,
1934         TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
1935     expect(InvalidParameter, stat);
1936
1937     stat = GdipCreateImageAttributes(&imageattr);
1938     expect(Ok, stat);
1939
1940     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1941         TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault);
1942     expect(Ok, stat);
1943
1944     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1945         TRUE, NULL, NULL, ColorMatrixFlagsDefault);
1946     expect(InvalidParameter, stat);
1947
1948     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1949         TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
1950     expect(Ok, stat);
1951
1952     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1953         TRUE, &colormatrix, NULL, ColorMatrixFlagsSkipGrays);
1954     expect(Ok, stat);
1955
1956     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1957         TRUE, &colormatrix, NULL, ColorMatrixFlagsAltGray);
1958     expect(InvalidParameter, stat);
1959
1960     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1961         TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsAltGray);
1962     expect(Ok, stat);
1963
1964     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1965         TRUE, &colormatrix, &graymatrix, 3);
1966     expect(InvalidParameter, stat);
1967
1968     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeCount,
1969         TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
1970     expect(InvalidParameter, stat);
1971
1972     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeAny,
1973         TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
1974     expect(InvalidParameter, stat);
1975
1976     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1977         FALSE, NULL, NULL, ColorMatrixFlagsDefault);
1978     expect(Ok, stat);
1979
1980     /* Drawing a bitmap transforms the colors */
1981     colormatrix = double_red;
1982     stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
1983         TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault);
1984     expect(Ok, stat);
1985
1986     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1);
1987     expect(Ok, stat);
1988
1989     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2);
1990     expect(Ok, stat);
1991
1992     stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff40ffff);
1993     expect(Ok, stat);
1994
1995     stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
1996     expect(Ok, stat);
1997
1998     stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
1999         UnitPixel, imageattr, NULL, NULL);
2000     expect(Ok, stat);
2001
2002     stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2003     expect(Ok, stat);
2004     todo_wine expect(0xff80ffff, color);
2005
2006     GdipDeleteGraphics(graphics);
2007     GdipDisposeImage((GpImage*)bitmap1);
2008     GdipDisposeImage((GpImage*)bitmap2);
2009     GdipDisposeImageAttributes(imageattr);
2010 }
2011
2012 static void test_gamma(void)
2013 {
2014     GpStatus stat;
2015     GpImageAttributes *imageattr;
2016     GpBitmap *bitmap1, *bitmap2;
2017     GpGraphics *graphics;
2018     ARGB color;
2019
2020     stat = GdipSetImageAttributesGamma(NULL, ColorAdjustTypeDefault, TRUE, 1.0);
2021     expect(InvalidParameter, stat);
2022
2023     stat = GdipCreateImageAttributes(&imageattr);
2024     expect(Ok, stat);
2025
2026     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 1.0);
2027     expect(Ok, stat);
2028
2029     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeAny, TRUE, 1.0);
2030     expect(InvalidParameter, stat);
2031
2032     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, -1.0);
2033     expect(InvalidParameter, stat);
2034
2035     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.0);
2036     expect(InvalidParameter, stat);
2037
2038     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.5);
2039     expect(Ok, stat);
2040
2041     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, FALSE, 0.0);
2042     expect(Ok, stat);
2043
2044     /* Drawing a bitmap transforms the colors */
2045     stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 3.0);
2046     expect(Ok, stat);
2047
2048     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1);
2049     expect(Ok, stat);
2050
2051     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2);
2052     expect(Ok, stat);
2053
2054     stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff80ffff);
2055     expect(Ok, stat);
2056
2057     stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2058     expect(Ok, stat);
2059
2060     stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2061         UnitPixel, imageattr, NULL, NULL);
2062     expect(Ok, stat);
2063
2064     stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2065     expect(Ok, stat);
2066     todo_wine ok(color_match(0xff20ffff, color, 1), "Expected ff20ffff, got %.8x\n", color);
2067
2068     GdipDeleteGraphics(graphics);
2069     GdipDisposeImage((GpImage*)bitmap1);
2070     GdipDisposeImage((GpImage*)bitmap2);
2071     GdipDisposeImageAttributes(imageattr);
2072 }
2073
2074 /* 1x1 pixel gif, 2 frames; first frame is white, second is black */
2075 static const unsigned char gifanimation[72] = {
2076 0x47,0x49,0x46,0x38,0x39,0x61,0x01,0x00,0x01,0x00,0xa1,0x00,0x00,0x00,0x00,0x00,
2077 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xf9,0x04,0x00,0x0a,0x00,0xff,
2078 0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x4c,0x01,0x00,
2079 0x21,0xf9,0x04,0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,
2080 0x00,0x00,0x02,0x02,0x44,0x01,0x00,0x3b
2081 };
2082
2083 static void test_multiframegif(void)
2084 {
2085     LPSTREAM stream;
2086     HGLOBAL hglob;
2087     LPBYTE data;
2088     HRESULT hres;
2089     GpStatus stat;
2090     GpBitmap *bmp;
2091     ARGB color;
2092     UINT count;
2093     GUID dimension;
2094
2095     /* Test frame functions with an animated GIF */
2096     hglob = GlobalAlloc (0, sizeof(gifanimation));
2097     data = GlobalLock (hglob);
2098     memcpy(data, gifanimation, sizeof(gifanimation));
2099     GlobalUnlock(hglob);
2100
2101     hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
2102     ok(hres == S_OK, "Failed to create a stream\n");
2103     if(hres != S_OK) return;
2104
2105     stat = GdipCreateBitmapFromStream(stream, &bmp);
2106     ok(stat == Ok, "Failed to create a Bitmap\n");
2107     if(stat != Ok){
2108         IStream_Release(stream);
2109         return;
2110     }
2111
2112     /* Bitmap starts at frame 0 */
2113     color = 0xdeadbeef;
2114     stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2115     expect(Ok, stat);
2116     expect(0xffffffff, color);
2117
2118     /* Check that we get correct metadata */
2119     stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count);
2120     expect(Ok, stat);
2121     expect(1, count);
2122
2123     stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1);
2124     expect(Ok, stat);
2125     expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE);
2126
2127     count = 12345;
2128     stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count);
2129     expect(Ok, stat);
2130     todo_wine expect(2, count);
2131
2132     /* SelectActiveFrame overwrites our current data */
2133     stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1);
2134     expect(Ok, stat);
2135
2136     color = 0xdeadbeef;
2137     GdipBitmapGetPixel(bmp, 0, 0, &color);
2138     expect(Ok, stat);
2139     todo_wine expect(0xff000000, color);
2140
2141     stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2142     expect(Ok, stat);
2143
2144     color = 0xdeadbeef;
2145     GdipBitmapGetPixel(bmp, 0, 0, &color);
2146     expect(Ok, stat);
2147     expect(0xffffffff, color);
2148
2149     /* Write over the image data */
2150     stat = GdipBitmapSetPixel(bmp, 0, 0, 0xff000000);
2151     expect(Ok, stat);
2152
2153     /* Switching to the same frame does not overwrite our changes */
2154     stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2155     expect(Ok, stat);
2156
2157     stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2158     expect(Ok, stat);
2159     expect(0xff000000, color);
2160
2161     /* But switching to another frame and back does */
2162     stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1);
2163     expect(Ok, stat);
2164
2165     stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2166     expect(Ok, stat);
2167
2168     stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2169     expect(Ok, stat);
2170     todo_wine expect(0xffffffff, color);
2171
2172     GdipDisposeImage((GpImage*)bmp);
2173     IStream_Release(stream);
2174
2175     /* Test with a non-animated gif */
2176     hglob = GlobalAlloc (0, sizeof(gifimage));
2177     data = GlobalLock (hglob);
2178     memcpy(data, gifimage, sizeof(gifimage));
2179     GlobalUnlock(hglob);
2180
2181     hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
2182     ok(hres == S_OK, "Failed to create a stream\n");
2183     if(hres != S_OK) return;
2184
2185     stat = GdipCreateBitmapFromStream(stream, &bmp);
2186     ok(stat == Ok, "Failed to create a Bitmap\n");
2187     if(stat != Ok){
2188         IStream_Release(stream);
2189         return;
2190     }
2191
2192     /* Check metadata */
2193     stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count);
2194     expect(Ok, stat);
2195     expect(1, count);
2196
2197     stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1);
2198     expect(Ok, stat);
2199     expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE);
2200
2201     count = 12345;
2202     stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count);
2203     expect(Ok, stat);
2204     expect(1, count);
2205
2206     GdipDisposeImage((GpImage*)bmp);
2207     IStream_Release(stream);
2208 }
2209
2210 static void test_rotateflip(void)
2211 {
2212     GpImage *bitmap;
2213     GpStatus stat;
2214     BYTE bits[24];
2215     static const BYTE orig_bits[24] = {
2216         0,0,0xff,    0,0xff,0,    0xff,0,0,    23,23,23,
2217         0xff,0xff,0, 0xff,0,0xff, 0,0xff,0xff, 23,23,23};
2218     UINT width, height;
2219     ARGB color;
2220
2221     memcpy(bits, orig_bits, sizeof(bits));
2222     stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2223     expect(Ok, stat);
2224
2225     stat = GdipImageRotateFlip(bitmap, Rotate90FlipNone);
2226     expect(Ok, stat);
2227
2228     stat = GdipGetImageWidth(bitmap, &width);
2229     expect(Ok, stat);
2230     stat = GdipGetImageHeight(bitmap, &height);
2231     expect(Ok, stat);
2232     expect(2, width);
2233     expect(3, height);
2234
2235     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2236     expect(Ok, stat);
2237     expect(0xff00ffff, color);
2238
2239     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 0, &color);
2240     expect(Ok, stat);
2241     expect(0xffff0000, color);
2242
2243     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 2, &color);
2244     expect(Ok, stat);
2245     expect(0xffffff00, color);
2246
2247     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 2, &color);
2248     expect(Ok, stat);
2249     expect(0xff0000ff, color);
2250
2251     expect(0, bits[0]);
2252     expect(0, bits[1]);
2253     expect(0xff, bits[2]);
2254
2255     GdipDisposeImage(bitmap);
2256
2257     memcpy(bits, orig_bits, sizeof(bits));
2258     stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2259     expect(Ok, stat);
2260
2261     stat = GdipImageRotateFlip(bitmap, RotateNoneFlipX);
2262     expect(Ok, stat);
2263
2264     stat = GdipGetImageWidth(bitmap, &width);
2265     expect(Ok, stat);
2266     stat = GdipGetImageHeight(bitmap, &height);
2267     expect(Ok, stat);
2268     expect(3, width);
2269     expect(2, height);
2270
2271     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2272     expect(Ok, stat);
2273     expect(0xff0000ff, color);
2274
2275     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color);
2276     expect(Ok, stat);
2277     expect(0xffff0000, color);
2278
2279     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color);
2280     expect(Ok, stat);
2281     expect(0xffffff00, color);
2282
2283     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color);
2284     expect(Ok, stat);
2285     expect(0xff00ffff, color);
2286
2287     expect(0, bits[0]);
2288     expect(0, bits[1]);
2289     expect(0xff, bits[2]);
2290
2291     GdipDisposeImage(bitmap);
2292
2293     memcpy(bits, orig_bits, sizeof(bits));
2294     stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2295     expect(Ok, stat);
2296
2297     stat = GdipImageRotateFlip(bitmap, RotateNoneFlipY);
2298     expect(Ok, stat);
2299
2300     stat = GdipGetImageWidth(bitmap, &width);
2301     expect(Ok, stat);
2302     stat = GdipGetImageHeight(bitmap, &height);
2303     expect(Ok, stat);
2304     expect(3, width);
2305     expect(2, height);
2306
2307     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2308     expect(Ok, stat);
2309     expect(0xff00ffff, color);
2310
2311     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color);
2312     expect(Ok, stat);
2313     expect(0xffffff00, color);
2314
2315     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color);
2316     expect(Ok, stat);
2317     expect(0xffff0000, color);
2318
2319     stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color);
2320     expect(Ok, stat);
2321     expect(0xff0000ff, color);
2322
2323     expect(0, bits[0]);
2324     expect(0, bits[1]);
2325     expect(0xff, bits[2]);
2326
2327     GdipDisposeImage(bitmap);
2328 }
2329
2330 static void test_remaptable(void)
2331 {
2332     GpStatus stat;
2333     GpImageAttributes *imageattr;
2334     GpBitmap *bitmap1, *bitmap2;
2335     GpGraphics *graphics;
2336     ARGB color;
2337     ColorMap *map;
2338
2339     map = GdipAlloc(sizeof(ColorMap));
2340
2341     map->oldColor.Argb = 0xff00ff00;
2342     map->newColor.Argb = 0xffff00ff;
2343
2344     stat = GdipSetImageAttributesRemapTable(NULL, ColorAdjustTypeDefault, TRUE, 1, map);
2345     expect(InvalidParameter, stat);
2346
2347     stat = GdipCreateImageAttributes(&imageattr);
2348     expect(Ok, stat);
2349
2350     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, NULL);
2351     expect(InvalidParameter, stat);
2352
2353     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeCount, TRUE, 1, map);
2354     expect(InvalidParameter, stat);
2355
2356     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeAny, TRUE, 1, map);
2357     expect(InvalidParameter, stat);
2358
2359     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 0, map);
2360     expect(InvalidParameter, stat);
2361
2362     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, FALSE, 0, NULL);
2363     expect(Ok, stat);
2364
2365     stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, map);
2366     expect(Ok, stat);
2367
2368     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1);
2369     expect(Ok, stat);
2370
2371     stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2);
2372     expect(Ok, stat);
2373
2374     stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff00ff00);
2375     expect(Ok, stat);
2376
2377     stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2378     expect(Ok, stat);
2379
2380     stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2381         UnitPixel, imageattr, NULL, NULL);
2382     expect(Ok, stat);
2383
2384     stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2385     expect(Ok, stat);
2386     ok(color_match(0xffff00ff, color, 1), "Expected ffff00ff, got %.8x\n", color);
2387
2388     GdipDeleteGraphics(graphics);
2389     GdipDisposeImage((GpImage*)bitmap1);
2390     GdipDisposeImage((GpImage*)bitmap2);
2391     GdipDisposeImageAttributes(imageattr);
2392     GdipFree(map);
2393 }
2394
2395 static void test_colorkey(void)
2396 {
2397     GpStatus stat;
2398     GpImageAttributes *imageattr;
2399     GpBitmap *bitmap1, *bitmap2;
2400     GpGraphics *graphics;
2401     ARGB color;
2402
2403     stat = GdipSetImageAttributesColorKeys(NULL, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090);
2404     expect(InvalidParameter, stat);
2405
2406     stat = GdipCreateImageAttributes(&imageattr);
2407     expect(Ok, stat);
2408
2409     stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeCount, TRUE, 0xff405060, 0xff708090);
2410     expect(InvalidParameter, stat);
2411
2412     stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeAny, TRUE, 0xff405060, 0xff708090);
2413     expect(InvalidParameter, stat);
2414
2415     stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090);
2416     expect(Ok, stat);
2417
2418     stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap1);
2419     expect(Ok, stat);
2420
2421     stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap2);
2422     expect(Ok, stat);
2423
2424     stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0x20405060);
2425     expect(Ok, stat);
2426
2427     stat = GdipBitmapSetPixel(bitmap1, 0, 1, 0x40506070);
2428     expect(Ok, stat);
2429
2430     stat = GdipBitmapSetPixel(bitmap1, 1, 0, 0x60708090);
2431     expect(Ok, stat);
2432
2433     stat = GdipBitmapSetPixel(bitmap1, 1, 1, 0xffffffff);
2434     expect(Ok, stat);
2435
2436     stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2437     expect(Ok, stat);
2438
2439     stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,2,2, 0,0,2,2,
2440         UnitPixel, imageattr, NULL, NULL);
2441     expect(Ok, stat);
2442
2443     stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2444     expect(Ok, stat);
2445     ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2446
2447     stat = GdipBitmapGetPixel(bitmap2, 0, 1, &color);
2448     expect(Ok, stat);
2449     ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2450
2451     stat = GdipBitmapGetPixel(bitmap2, 1, 0, &color);
2452     expect(Ok, stat);
2453     ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2454
2455     stat = GdipBitmapGetPixel(bitmap2, 1, 1, &color);
2456     expect(Ok, stat);
2457     ok(color_match(0xffffffff, color, 1), "Expected ffff00ff, got %.8x\n", color);
2458
2459     GdipDeleteGraphics(graphics);
2460     GdipDisposeImage((GpImage*)bitmap1);
2461     GdipDisposeImage((GpImage*)bitmap2);
2462     GdipDisposeImageAttributes(imageattr);
2463 }
2464
2465 static void test_dispose(void)
2466 {
2467     GpStatus stat;
2468     GpImage *image;
2469     char invalid_image[256];
2470
2471     stat = GdipDisposeImage(NULL);
2472     expect(InvalidParameter, stat);
2473
2474     stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, (GpBitmap**)&image);
2475     expect(Ok, stat);
2476
2477     stat = GdipDisposeImage(image);
2478     expect(Ok, stat);
2479
2480     stat = GdipDisposeImage(image);
2481     expect(ObjectBusy, stat);
2482
2483     memset(invalid_image, 0, 256);
2484     stat = GdipDisposeImage((GpImage*)invalid_image);
2485     expect(ObjectBusy, stat);
2486 }
2487
2488 START_TEST(image)
2489 {
2490     struct GdiplusStartupInput gdiplusStartupInput;
2491     ULONG_PTR gdiplusToken;
2492
2493     gdiplusStartupInput.GdiplusVersion              = 1;
2494     gdiplusStartupInput.DebugEventCallback          = NULL;
2495     gdiplusStartupInput.SuppressBackgroundThread    = 0;
2496     gdiplusStartupInput.SuppressExternalCodecs      = 0;
2497
2498     GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
2499
2500     test_Scan0();
2501     test_FromGdiDib();
2502     test_GetImageDimension();
2503     test_GdipImageGetFrameDimensionsCount();
2504     test_LoadingImages();
2505     test_SavingImages();
2506     test_encoders();
2507     test_LockBits();
2508     test_LockBits_UserBuf();
2509     test_GdipCreateBitmapFromHBITMAP();
2510     test_GdipGetImageFlags();
2511     test_GdipCloneImage();
2512     test_testcontrol();
2513     test_fromhicon();
2514     test_getrawformat();
2515     test_loadwmf();
2516     test_createfromwmf();
2517     test_resolution();
2518     test_createhbitmap();
2519     test_getthumbnail();
2520     test_getsetpixel();
2521     test_palette();
2522     test_colormatrix();
2523     test_gamma();
2524     test_multiframegif();
2525     test_rotateflip();
2526     test_remaptable();
2527     test_colorkey();
2528     test_dispose();
2529
2530     GdiplusShutdown(gdiplusToken);
2531 }