2 * Unit test suite for images
4 * Copyright (C) 2007 Google (Evan Stade)
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.
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.
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
30 #include "wine/test.h"
32 #define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (UINT)(expected), (UINT)(got))
33 #define expectf(expected, got) ok(fabs((expected) - (got)) < 0.0001, "Expected %f, got %f\n", (expected), (got))
35 static BOOL color_match(ARGB c1, ARGB c2, BYTE max_diff)
37 if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
39 if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
41 if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
43 if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE;
47 static void expect_guid(REFGUID expected, REFGUID got, int line, BOOL todo)
53 StringFromGUID2(got, bufferW, sizeof(bufferW)/sizeof(bufferW[0]));
54 WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer, sizeof(buffer), NULL, NULL);
55 StringFromGUID2(expected, bufferW, sizeof(bufferW)/sizeof(bufferW[0]));
56 WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer2, sizeof(buffer2), NULL, NULL);
58 todo_wine ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer);
60 ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer);
63 static void expect_rawformat(REFGUID expected, GpImage *img, int line, BOOL todo)
68 stat = GdipGetImageRawFormat(img, &raw);
69 ok_(__FILE__, line)(stat == Ok, "GdipGetImageRawFormat failed with %d\n", stat);
70 if(stat != Ok) return;
71 expect_guid(expected, &raw, line, todo);
74 static void test_bufferrawformat(void* buff, int size, REFGUID expected, int line, BOOL todo)
83 hglob = GlobalAlloc (0, size);
84 data = GlobalLock (hglob);
85 memcpy(data, buff, size);
86 GlobalUnlock(hglob); data = NULL;
88 hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
89 ok_(__FILE__, line)(hres == S_OK, "Failed to create a stream\n");
90 if(hres != S_OK) return;
92 stat = GdipLoadImageFromStream(stream, &img);
93 ok_(__FILE__, line)(stat == Ok, "Failed to create a Bitmap\n");
95 IStream_Release(stream);
99 expect_rawformat(expected, img, line, todo);
101 GdipDisposeImage(img);
102 IStream_Release(stream);
105 static void test_Scan0(void)
112 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, &bm);
114 ok(NULL != bm, "Expected bitmap to be initialized\n");
116 GdipDisposeImage((GpImage*)bm);
118 bm = (GpBitmap*)0xdeadbeef;
119 stat = GdipCreateBitmapFromScan0(10, -10, 10, PixelFormat24bppRGB, NULL, &bm);
120 expect(InvalidParameter, stat);
121 ok( !bm, "expected null bitmap\n" );
123 bm = (GpBitmap*)0xdeadbeef;
124 stat = GdipCreateBitmapFromScan0(-10, 10, 10, PixelFormat24bppRGB, NULL, &bm);
125 expect(InvalidParameter, stat);
126 ok( !bm, "expected null bitmap\n" );
128 bm = (GpBitmap*)0xdeadbeef;
129 stat = GdipCreateBitmapFromScan0(10, 0, 10, PixelFormat24bppRGB, NULL, &bm);
130 expect(InvalidParameter, stat);
131 ok( !bm, "expected null bitmap\n" );
134 stat = GdipCreateBitmapFromScan0(10, 10, 12, PixelFormat24bppRGB, buff, &bm);
136 ok(NULL != bm, "Expected bitmap to be initialized\n");
138 GdipDisposeImage((GpImage*)bm);
140 bm = (GpBitmap*) 0xdeadbeef;
141 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, buff, &bm);
142 expect(InvalidParameter, stat);
143 ok( !bm, "expected null bitmap\n" );
145 bm = (GpBitmap*)0xdeadbeef;
146 stat = GdipCreateBitmapFromScan0(10, 10, 0, PixelFormat24bppRGB, buff, &bm);
147 expect(InvalidParameter, stat);
148 ok( bm == (GpBitmap*)0xdeadbeef, "expected deadbeef bitmap\n" );
151 stat = GdipCreateBitmapFromScan0(10, 10, -8, PixelFormat24bppRGB, buff, &bm);
153 ok(NULL != bm, "Expected bitmap to be initialized\n");
155 GdipDisposeImage((GpImage*)bm);
157 bm = (GpBitmap*)0xdeadbeef;
158 stat = GdipCreateBitmapFromScan0(10, 10, -10, PixelFormat24bppRGB, buff, &bm);
159 expect(InvalidParameter, stat);
160 ok( !bm, "expected null bitmap\n" );
163 static void test_FromGdiDib(void)
168 BYTE rbmi[sizeof(BITMAPINFOHEADER)+256*sizeof(RGBQUAD)];
169 BITMAPINFO *bmi = (BITMAPINFO*)rbmi;
174 memset(rbmi, 0, sizeof(rbmi));
176 bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
177 bmi->bmiHeader.biWidth = 10;
178 bmi->bmiHeader.biHeight = 10;
179 bmi->bmiHeader.biPlanes = 1;
180 bmi->bmiHeader.biBitCount = 32;
181 bmi->bmiHeader.biCompression = BI_RGB;
183 stat = GdipCreateBitmapFromGdiDib(NULL, buff, &bm);
184 expect(InvalidParameter, stat);
186 stat = GdipCreateBitmapFromGdiDib(bmi, NULL, &bm);
187 expect(InvalidParameter, stat);
189 stat = GdipCreateBitmapFromGdiDib(bmi, buff, NULL);
190 expect(InvalidParameter, stat);
192 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
194 ok(NULL != bm, "Expected bitmap to be initialized\n");
197 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
199 expect(PixelFormat32bppRGB, format);
201 GdipDisposeImage((GpImage*)bm);
204 bmi->bmiHeader.biBitCount = 24;
205 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
207 ok(NULL != bm, "Expected bitmap to be initialized\n");
210 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
212 expect(PixelFormat24bppRGB, format);
214 GdipDisposeImage((GpImage*)bm);
217 bmi->bmiHeader.biBitCount = 16;
218 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
220 ok(NULL != bm, "Expected bitmap to be initialized\n");
223 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
225 expect(PixelFormat16bppRGB555, format);
227 GdipDisposeImage((GpImage*)bm);
230 bmi->bmiHeader.biBitCount = 8;
231 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
233 ok(NULL != bm, "Expected bitmap to be initialized\n");
236 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
238 expect(PixelFormat8bppIndexed, format);
240 GdipDisposeImage((GpImage*)bm);
243 bmi->bmiHeader.biBitCount = 4;
244 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
246 ok(NULL != bm, "Expected bitmap to be initialized\n");
249 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
251 expect(PixelFormat4bppIndexed, format);
253 GdipDisposeImage((GpImage*)bm);
256 bmi->bmiHeader.biBitCount = 1;
257 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
259 ok(NULL != bm, "Expected bitmap to be initialized\n");
262 stat = GdipGetImagePixelFormat((GpImage*)bm, &format);
264 expect(PixelFormat1bppIndexed, format);
266 GdipDisposeImage((GpImage*)bm);
269 bmi->bmiHeader.biBitCount = 0;
270 stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm);
271 expect(InvalidParameter, stat);
274 static void test_GetImageDimension(void)
278 const REAL WIDTH = 10.0, HEIGHT = 20.0;
281 bm = (GpBitmap*)0xdeadbeef;
282 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm);
284 ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n");
285 ok(NULL != bm, "Expected bitmap to not be NULL\n");
287 stat = GdipGetImageDimension(NULL,&w,&h);
288 expect(InvalidParameter, stat);
290 stat = GdipGetImageDimension((GpImage*)bm,NULL,&h);
291 expect(InvalidParameter, stat);
293 stat = GdipGetImageDimension((GpImage*)bm,&w,NULL);
294 expect(InvalidParameter, stat);
298 stat = GdipGetImageDimension((GpImage*)bm,&w,&h);
302 GdipDisposeImage((GpImage*)bm);
305 static void test_GdipImageGetFrameDimensionsCount(void)
309 const REAL WIDTH = 10.0, HEIGHT = 20.0;
311 GUID dimension = {0};
315 bm = (GpBitmap*)0xdeadbeef;
316 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm);
318 ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n");
319 ok(NULL != bm, "Expected bitmap to not be NULL\n");
321 stat = GdipImageGetFrameDimensionsCount(NULL,&w);
322 expect(InvalidParameter, stat);
324 stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,NULL);
325 expect(InvalidParameter, stat);
328 stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,&w);
332 stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 1);
334 expect_guid(&FrameDimensionPage, &dimension, __LINE__, FALSE);
336 stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 2);
337 expect(InvalidParameter, stat);
339 stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 0);
340 expect(InvalidParameter, stat);
342 stat = GdipImageGetFrameCount(NULL, &dimension, &count);
343 expect(InvalidParameter, stat);
345 /* WinXP crashes on this test */
348 stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, NULL);
349 expect(InvalidParameter, stat);
352 stat = GdipImageGetFrameCount((GpImage*)bm, NULL, &count);
356 stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, &count);
360 GdipBitmapSetPixel(bm, 0, 0, 0xffffffff);
362 stat = GdipImageSelectActiveFrame((GpImage*)bm, &dimension, 0);
365 /* SelectActiveFrame has no effect on image data of memory bitmaps */
367 GdipBitmapGetPixel(bm, 0, 0, &color);
368 expect(0xffffffff, color);
370 GdipDisposeImage((GpImage*)bm);
373 static void test_LoadingImages(void)
377 stat = GdipCreateBitmapFromFile(0, 0);
378 expect(InvalidParameter, stat);
380 stat = GdipCreateBitmapFromFile(0, (GpBitmap**)0xdeadbeef);
381 expect(InvalidParameter, stat);
383 stat = GdipLoadImageFromFile(0, 0);
384 expect(InvalidParameter, stat);
386 stat = GdipLoadImageFromFile(0, (GpImage**)0xdeadbeef);
387 expect(InvalidParameter, stat);
389 stat = GdipLoadImageFromFileICM(0, 0);
390 expect(InvalidParameter, stat);
392 stat = GdipLoadImageFromFileICM(0, (GpImage**)0xdeadbeef);
393 expect(InvalidParameter, stat);
396 static void test_SavingImages(void)
402 const REAL WIDTH = 10.0, HEIGHT = 20.0;
404 ImageCodecInfo *codecs;
405 static const CHAR filenameA[] = "a.bmp";
406 static const WCHAR filename[] = { 'a','.','b','m','p',0 };
410 stat = GdipSaveImageToFile(0, 0, 0, 0);
411 expect(InvalidParameter, stat);
414 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
420 stat = GdipSaveImageToFile((GpImage*)bm, 0, 0, 0);
421 expect(InvalidParameter, stat);
423 stat = GdipSaveImageToFile((GpImage*)bm, filename, 0, 0);
424 expect(InvalidParameter, stat);
426 /* encoder tests should succeed -- already tested */
427 stat = GdipGetImageEncodersSize(&n, &s);
428 if (stat != Ok || n == 0) goto cleanup;
430 codecs = GdipAlloc(s);
431 if (!codecs) goto cleanup;
433 stat = GdipGetImageEncoders(n, s, codecs);
434 if (stat != Ok) goto cleanup;
436 stat = GdipSaveImageToFile((GpImage*)bm, filename, &codecs[0].Clsid, 0);
439 GdipDisposeImage((GpImage*)bm);
442 /* re-load and check image stats */
443 stat = GdipLoadImageFromFile(filename, (GpImage**)&bm);
445 if (stat != Ok) goto cleanup;
447 stat = GdipGetImageDimension((GpImage*)bm, &w, &h);
448 if (stat != Ok) goto cleanup;
456 GdipDisposeImage((GpImage*)bm);
457 ok(DeleteFileA(filenameA), "Delete failed.\n");
460 static void test_encoders(void)
465 ImageCodecInfo *codecs;
469 static const CHAR bmp_format[] = "BMP";
471 stat = GdipGetImageEncodersSize(&n, &s);
474 codecs = GdipAlloc(s);
478 stat = GdipGetImageEncoders(n, s, NULL);
479 expect(GenericError, stat);
481 stat = GdipGetImageEncoders(0, s, codecs);
482 expect(GenericError, stat);
484 stat = GdipGetImageEncoders(n, s-1, codecs);
485 expect(GenericError, stat);
487 stat = GdipGetImageEncoders(n, s+1, codecs);
488 expect(GenericError, stat);
490 stat = GdipGetImageEncoders(n, s, codecs);
494 for (i = 0; i < n; i++)
498 WideCharToMultiByte(CP_ACP, 0, codecs[i].FormatDescription, -1,
501 if (CompareStringA(LOCALE_SYSTEM_DEFAULT, 0,
503 bmp_format, -1) == CSTR_EQUAL) {
509 ok(FALSE, "No BMP codec found.\n");
514 static void test_LockBits(void)
520 const INT WIDTH = 10, HEIGHT = 20;
525 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
533 stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000);
536 stat = GdipBitmapSetPixel(bm, 2, 8, 0xff480000);
540 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
544 expect(0xc3, ((BYTE*)bd.Scan0)[2]);
545 expect(0x48, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]);
547 ((char*)bd.Scan0)[2] = 0xff;
549 stat = GdipBitmapUnlockBits(bm, &bd);
553 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
555 expect(0xffff0000, color);
557 stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000);
560 /* read-only, with NULL rect -> whole bitmap lock */
561 stat = GdipBitmapLockBits(bm, NULL, ImageLockModeRead, PixelFormat24bppRGB, &bd);
563 expect(bd.Width, WIDTH);
564 expect(bd.Height, HEIGHT);
567 ((char*)bd.Scan0)[2 + 2*3 + 3*bd.Stride] = 0xff;
569 stat = GdipBitmapUnlockBits(bm, &bd);
573 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
575 expect(0xffff0000, color);
577 /* read-only, consecutive */
578 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
582 stat = GdipBitmapUnlockBits(bm, &bd);
586 stat = GdipDisposeImage((GpImage*)bm);
588 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
592 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
594 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
595 expect(WrongState, stat);
597 stat = GdipBitmapUnlockBits(bm, &bd);
600 stat = GdipDisposeImage((GpImage*)bm);
602 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
605 stat = GdipBitmapSetPixel(bm, 2, 3, 0xffff0000);
608 stat = GdipBitmapSetPixel(bm, 2, 8, 0xffc30000);
611 /* write, no conversion */
612 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
616 /* all bits are readable, inside the rect or not */
617 expect(0xff, ((BYTE*)bd.Scan0)[2]);
618 expect(0xc3, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]);
620 stat = GdipBitmapUnlockBits(bm, &bd);
624 /* read, conversion */
625 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat32bppARGB, &bd);
629 expect(0xff, ((BYTE*)bd.Scan0)[2]);
631 /* Areas outside the rectangle appear to be uninitialized */
632 ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
634 ((BYTE*)bd.Scan0)[2] = 0xc3;
636 stat = GdipBitmapUnlockBits(bm, &bd);
640 /* writes do not work in read mode if there was a conversion */
641 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
643 expect(0xffff0000, color);
645 /* read/write, conversion */
646 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite, PixelFormat32bppARGB, &bd);
650 expect(0xff, ((BYTE*)bd.Scan0)[2]);
651 ((BYTE*)bd.Scan0)[1] = 0x88;
653 /* Areas outside the rectangle appear to be uninitialized */
654 ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
656 stat = GdipBitmapUnlockBits(bm, &bd);
660 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
662 expect(0xffff8800, color);
664 /* write, conversion */
665 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat32bppARGB, &bd);
671 /* This is completely uninitialized. */
672 ok(0xff != ((BYTE*)bd.Scan0)[2], "original image bits are readable\n");
673 ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n");
676 /* Initialize the buffer so the unlock doesn't access undefined memory */
678 memset(((BYTE*)bd.Scan0) + bd.Stride * y, 0, 12);
680 ((BYTE*)bd.Scan0)[0] = 0x12;
681 ((BYTE*)bd.Scan0)[1] = 0x34;
682 ((BYTE*)bd.Scan0)[2] = 0x56;
684 stat = GdipBitmapUnlockBits(bm, &bd);
688 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
690 expect(0xff563412, color);
692 stat = GdipBitmapGetPixel(bm, 2, 8, &color);
694 expect(0xffc30000, color);
696 stat = GdipDisposeImage((GpImage*)bm);
698 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
701 /* write, no modification */
702 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
706 stat = GdipBitmapUnlockBits(bm, &bd);
710 /* write, consecutive */
711 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
715 stat = GdipBitmapUnlockBits(bm, &bd);
719 stat = GdipDisposeImage((GpImage*)bm);
721 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
725 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd);
730 ((char*)bd.Scan0)[2] = 0xff;
732 stat = GdipBitmapUnlockBits(bm, &bd);
736 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
738 expect(0xffff0000, color);
740 stat = GdipDisposeImage((GpImage*)bm);
744 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
746 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd);
748 stat = GdipDisposeImage((GpImage*)bm);
752 static void test_LockBits_UserBuf(void)
758 const INT WIDTH = 10, HEIGHT = 20;
763 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat32bppARGB, NULL, &bm);
766 memset(bits, 0xaa, sizeof(bits));
775 bd.Stride = WIDTH * 4;
776 bd.PixelFormat = PixelFormat32bppARGB;
777 bd.Scan0 = &bits[2+3*WIDTH];
778 bd.Reserved = 0xaaaaaaaa;
781 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
784 expect(0xaaaaaaaa, bits[0]);
785 expect(0, bits[2+3*WIDTH]);
787 bits[2+3*WIDTH] = 0xdeadbeef;
790 stat = GdipBitmapUnlockBits(bm, &bd);
794 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
799 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
802 expect(0xdeadbeef, bits[2+3*WIDTH]);
803 bits[2+3*WIDTH] = 0x12345678;
806 stat = GdipBitmapUnlockBits(bm, &bd);
810 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
812 expect(0x12345678, color);
817 stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd);
820 expect(0x12345678, bits[2+3*WIDTH]);
821 bits[2+3*WIDTH] = 0xdeadbeef;
824 stat = GdipBitmapUnlockBits(bm, &bd);
828 stat = GdipBitmapGetPixel(bm, 2, 3, &color);
830 expect(0xdeadbeef, color);
832 stat = GdipDisposeImage((GpImage*)bm);
836 struct BITMAPINFOWITHBITFIELDS
838 BITMAPINFOHEADER bmiHeader;
842 union BITMAPINFOUNION
845 struct BITMAPINFOWITHBITFIELDS bf;
848 static void test_GdipCreateBitmapFromHBITMAP(void)
850 GpBitmap* gpbm = NULL;
852 HPALETTE hpal = NULL;
855 LOGPALETTE* LogPal = NULL;
857 const REAL WIDTH1 = 5;
858 const REAL HEIGHT1 = 15;
859 const REAL WIDTH2 = 10;
860 const REAL HEIGHT2 = 20;
862 union BITMAPINFOUNION bmi;
866 stat = GdipCreateBitmapFromHBITMAP(NULL, NULL, NULL);
867 expect(InvalidParameter, stat);
869 hbm = CreateBitmap(WIDTH1, HEIGHT1, 1, 1, NULL);
870 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, NULL);
871 expect(InvalidParameter, stat);
873 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
875 expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
876 expectf(WIDTH1, width);
877 expectf(HEIGHT1, height);
879 GdipDisposeImage((GpImage*)gpbm);
882 memset(buff, 0, sizeof(buff));
883 hbm = CreateBitmap(WIDTH2, HEIGHT2, 1, 1, &buff);
884 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
887 expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)gpbm, __LINE__, FALSE);
889 expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
890 expectf(WIDTH2, width);
891 expectf(HEIGHT2, height);
893 GdipDisposeImage((GpImage*)gpbm);
896 hdc = CreateCompatibleDC(0);
897 ok(hdc != NULL, "CreateCompatibleDC failed\n");
898 bmi.bi.bmiHeader.biSize = sizeof(bmi.bi.bmiHeader);
899 bmi.bi.bmiHeader.biHeight = HEIGHT1;
900 bmi.bi.bmiHeader.biWidth = WIDTH1;
901 bmi.bi.bmiHeader.biBitCount = 24;
902 bmi.bi.bmiHeader.biPlanes = 1;
903 bmi.bi.bmiHeader.biCompression = BI_RGB;
904 bmi.bi.bmiHeader.biClrUsed = 0;
906 hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
907 ok(hbm != NULL, "CreateDIBSection failed\n");
911 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
913 expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height));
914 expectf(WIDTH1, width);
915 expectf(HEIGHT1, height);
918 /* test whether writing to the bitmap affects the original */
919 stat = GdipBitmapSetPixel(gpbm, 0, 0, 0xffffffff);
924 GdipDisposeImage((GpImage*)gpbm);
927 LogPal = GdipAlloc(sizeof(LOGPALETTE));
928 ok(LogPal != NULL, "unable to allocate LOGPALETTE\n");
929 LogPal->palVersion = 0x300;
930 LogPal->palNumEntries = 1;
931 hpal = CreatePalette(LogPal);
932 ok(hpal != NULL, "CreatePalette failed\n");
935 stat = GdipCreateBitmapFromHBITMAP(hbm, hpal, &gpbm);
939 GdipDisposeImage((GpImage*)gpbm);
944 /* 16-bit 555 dib, rgb */
945 bmi.bi.bmiHeader.biBitCount = 16;
946 bmi.bi.bmiHeader.biCompression = BI_RGB;
948 hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
949 ok(hbm != NULL, "CreateDIBSection failed\n");
953 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
958 stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height);
960 expectf(WIDTH1, width);
961 expectf(HEIGHT1, height);
963 stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format);
965 expect(PixelFormat16bppRGB555, format);
967 GdipDisposeImage((GpImage*)gpbm);
971 /* 16-bit 555 dib, with bitfields */
972 bmi.bi.bmiHeader.biSize = sizeof(bmi);
973 bmi.bi.bmiHeader.biCompression = BI_BITFIELDS;
974 bmi.bf.masks[0] = 0x7c00;
975 bmi.bf.masks[1] = 0x3e0;
976 bmi.bf.masks[2] = 0x1f;
978 hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
979 ok(hbm != NULL, "CreateDIBSection failed\n");
983 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
988 stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height);
990 expectf(WIDTH1, width);
991 expectf(HEIGHT1, height);
993 stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format);
995 expect(PixelFormat16bppRGB555, format);
997 GdipDisposeImage((GpImage*)gpbm);
1001 /* 16-bit 565 dib, with bitfields */
1002 bmi.bf.masks[0] = 0xf800;
1003 bmi.bf.masks[1] = 0x7e0;
1004 bmi.bf.masks[2] = 0x1f;
1006 hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
1007 ok(hbm != NULL, "CreateDIBSection failed\n");
1011 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm);
1016 stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height);
1018 expectf(WIDTH1, width);
1019 expectf(HEIGHT1, height);
1021 stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format);
1023 expect(PixelFormat16bppRGB565, format);
1025 GdipDisposeImage((GpImage*)gpbm);
1032 static void test_GdipGetImageFlags(void)
1038 img = (GpImage*)0xdeadbeef;
1040 stat = GdipGetImageFlags(NULL, NULL);
1041 expect(InvalidParameter, stat);
1043 stat = GdipGetImageFlags(NULL, &flags);
1044 expect(InvalidParameter, stat);
1046 stat = GdipGetImageFlags(img, NULL);
1047 expect(InvalidParameter, stat);
1049 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat1bppIndexed, NULL, (GpBitmap**)&img);
1051 stat = GdipGetImageFlags(img, &flags);
1053 expect(ImageFlagsHasAlpha, flags);
1054 GdipDisposeImage(img);
1056 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat4bppIndexed, NULL, (GpBitmap**)&img);
1058 stat = GdipGetImageFlags(img, &flags);
1060 expect(ImageFlagsHasAlpha, flags);
1061 GdipDisposeImage(img);
1063 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat8bppIndexed, NULL, (GpBitmap**)&img);
1065 stat = GdipGetImageFlags(img, &flags);
1067 expect(ImageFlagsHasAlpha, flags);
1068 GdipDisposeImage(img);
1070 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppGrayScale, NULL, (GpBitmap**)&img);
1072 stat = GdipGetImageFlags(img, &flags);
1074 expect(ImageFlagsNone, flags);
1075 GdipDisposeImage(img);
1077 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB555, NULL, (GpBitmap**)&img);
1079 stat = GdipGetImageFlags(img, &flags);
1081 expect(ImageFlagsNone, flags);
1082 GdipDisposeImage(img);
1084 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB565, NULL, (GpBitmap**)&img);
1086 stat = GdipGetImageFlags(img, &flags);
1088 expect(ImageFlagsNone, flags);
1089 GdipDisposeImage(img);
1091 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppARGB1555, NULL, (GpBitmap**)&img);
1093 stat = GdipGetImageFlags(img, &flags);
1095 expect(ImageFlagsHasAlpha, flags);
1096 GdipDisposeImage(img);
1098 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, (GpBitmap**)&img);
1100 stat = GdipGetImageFlags(img, &flags);
1102 expect(ImageFlagsNone, flags);
1103 GdipDisposeImage(img);
1105 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppRGB, NULL, (GpBitmap**)&img);
1107 stat = GdipGetImageFlags(img, &flags);
1109 expect(ImageFlagsNone, flags);
1110 GdipDisposeImage(img);
1112 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppARGB, NULL, (GpBitmap**)&img);
1114 stat = GdipGetImageFlags(img, &flags);
1116 expect(ImageFlagsHasAlpha, flags);
1117 GdipDisposeImage(img);
1119 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppPARGB, NULL, (GpBitmap**)&img);
1121 stat = GdipGetImageFlags(img, &flags);
1123 expect(ImageFlagsHasAlpha, flags);
1124 GdipDisposeImage(img);
1126 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat48bppRGB, NULL, (GpBitmap**)&img);
1130 stat = GdipGetImageFlags(img, &flags);
1132 expect(ImageFlagsNone, flags);
1133 GdipDisposeImage(img);
1136 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppARGB, NULL, (GpBitmap**)&img);
1141 stat = GdipGetImageFlags(img, &flags);
1143 expect(ImageFlagsHasAlpha, flags);
1144 GdipDisposeImage(img);
1147 stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppPARGB, NULL, (GpBitmap**)&img);
1152 stat = GdipGetImageFlags(img, &flags);
1154 expect(ImageFlagsHasAlpha, flags);
1155 GdipDisposeImage(img);
1159 static void test_GdipCloneImage(void)
1165 GpImage *image_src, *image_dest = NULL;
1166 const INT WIDTH = 10, HEIGHT = 20;
1168 /* Create an image, clone it, delete the original, make sure the copy works */
1169 stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm);
1171 expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bm, __LINE__, FALSE);
1173 image_src = ((GpImage*)bm);
1174 stat = GdipCloneImage(image_src, &image_dest);
1176 expect_rawformat(&ImageFormatMemoryBMP, image_dest, __LINE__, FALSE);
1178 stat = GdipDisposeImage((GpImage*)bm);
1180 stat = GdipGetImageBounds(image_dest, &rectF, &unit);
1183 /* Treat FP values carefully */
1184 expectf((REAL)WIDTH, rectF.Width);
1185 expectf((REAL)HEIGHT, rectF.Height);
1187 stat = GdipDisposeImage(image_dest);
1191 static void test_testcontrol(void)
1197 stat = GdipTestControl(TestControlGetBuildNumber, ¶m);
1199 ok(param != 0, "Build number expected, got %u\n", param);
1202 static void test_fromhicon(void)
1204 static const BYTE bmp_bits[1024];
1205 HBITMAP hbmMask, hbmColor;
1209 GpBitmap *bitmap = NULL;
1215 stat = GdipCreateBitmapFromHICON(NULL, NULL);
1216 expect(InvalidParameter, stat);
1217 stat = GdipCreateBitmapFromHICON(NULL, &bitmap);
1218 expect(InvalidParameter, stat);
1220 /* color icon 1 bit */
1221 hbmMask = CreateBitmap(16, 16, 1, 1, bmp_bits);
1222 ok(hbmMask != 0, "CreateBitmap failed\n");
1223 hbmColor = CreateBitmap(16, 16, 1, 1, bmp_bits);
1224 ok(hbmColor != 0, "CreateBitmap failed\n");
1228 info.hbmMask = hbmMask;
1229 info.hbmColor = hbmColor;
1230 hIcon = CreateIconIndirect(&info);
1231 ok(hIcon != 0, "CreateIconIndirect failed\n");
1232 DeleteObject(hbmMask);
1233 DeleteObject(hbmColor);
1235 stat = GdipCreateBitmapFromHICON(hIcon, &bitmap);
1237 broken(stat == InvalidParameter), /* Win98 */
1238 "Expected Ok, got %.8x\n", stat);
1240 /* check attributes */
1241 stat = GdipGetImageHeight((GpImage*)bitmap, &dim);
1244 stat = GdipGetImageWidth((GpImage*)bitmap, &dim);
1247 stat = GdipGetImageType((GpImage*)bitmap, &type);
1249 expect(ImageTypeBitmap, type);
1250 stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format);
1252 expect(PixelFormat32bppARGB, format);
1254 expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE);
1255 GdipDisposeImage((GpImage*)bitmap);
1259 /* color icon 8 bpp */
1260 hbmMask = CreateBitmap(16, 16, 1, 8, bmp_bits);
1261 ok(hbmMask != 0, "CreateBitmap failed\n");
1262 hbmColor = CreateBitmap(16, 16, 1, 8, bmp_bits);
1263 ok(hbmColor != 0, "CreateBitmap failed\n");
1267 info.hbmMask = hbmMask;
1268 info.hbmColor = hbmColor;
1269 hIcon = CreateIconIndirect(&info);
1270 ok(hIcon != 0, "CreateIconIndirect failed\n");
1271 DeleteObject(hbmMask);
1272 DeleteObject(hbmColor);
1274 stat = GdipCreateBitmapFromHICON(hIcon, &bitmap);
1277 /* check attributes */
1278 stat = GdipGetImageHeight((GpImage*)bitmap, &dim);
1281 stat = GdipGetImageWidth((GpImage*)bitmap, &dim);
1284 stat = GdipGetImageType((GpImage*)bitmap, &type);
1286 expect(ImageTypeBitmap, type);
1287 stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format);
1289 expect(PixelFormat32bppARGB, format);
1291 expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE);
1292 GdipDisposeImage((GpImage*)bitmap);
1298 static const unsigned char pngimage[285] = {
1299 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
1300 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x90,0x77,0x53,
1301 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,
1302 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,0x07,0xd5,
1303 0x06,0x03,0x0f,0x07,0x2d,0x12,0x10,0xf0,0xfd,0x00,0x00,0x00,0x0c,0x49,0x44,0x41,
1304 0x54,0x08,0xd7,0x63,0xf8,0xff,0xff,0x3f,0x00,0x05,0xfe,0x02,0xfe,0xdc,0xcc,0x59,
1305 0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
1308 static const unsigned char gifimage[35] = {
1309 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x00,0xff,0xff,0xff,
1310 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44,
1314 static const unsigned char bmpimage[66] = {
1315 0x42,0x4d,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x28,0x00,
1316 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,
1317 0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x12,0x0b,0x00,0x00,0x02,0x00,
1318 0x00,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,
1322 static const unsigned char jpgimage[285] = {
1323 0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x01,0x2c,
1324 0x01,0x2c,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x05,0x03,0x04,0x04,0x04,0x03,0x05,
1325 0x04,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x0c,0x08,0x07,0x07,0x07,0x07,0x0f,0x0b,
1326 0x0b,0x09,0x0c,0x11,0x0f,0x12,0x12,0x11,0x0f,0x11,0x11,0x13,0x16,0x1c,0x17,0x13,
1327 0x14,0x1a,0x15,0x11,0x11,0x18,0x21,0x18,0x1a,0x1d,0x1d,0x1f,0x1f,0x1f,0x13,0x17,
1328 0x22,0x24,0x22,0x1e,0x24,0x1c,0x1e,0x1f,0x1e,0xff,0xdb,0x00,0x43,0x01,0x05,0x05,
1329 0x05,0x07,0x06,0x07,0x0e,0x08,0x08,0x0e,0x1e,0x14,0x11,0x14,0x1e,0x1e,0x1e,0x1e,
1330 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
1331 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
1332 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0xff,0xc0,
1333 0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
1334 0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1335 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00,
1336 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4,
1337 0x00,0x14,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1338 0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
1339 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,0x03,0x01,
1340 0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xb2,0xc0,0x07,0xff,0xd9
1342 /* 1x1 pixel tiff */
1343 static const unsigned char tiffimage[] = {
1344 0x49,0x49,0x2a,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xfe,0x00,
1345 0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x00,
1346 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1347 0x00,0x00,0x02,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0xd2,0x00,0x00,0x00,0x03,0x01,
1348 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x01,0x00,
1349 0x00,0x00,0x02,0x00,0x00,0x00,0x0d,0x01,0x02,0x00,0x1b,0x00,0x00,0x00,0xd8,0x00,
1350 0x00,0x00,0x11,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x01,
1351 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x15,0x01,0x03,0x00,0x01,0x00,
1352 0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x40,0x00,
1353 0x00,0x00,0x17,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1a,0x01,
1354 0x05,0x00,0x01,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0x1b,0x01,0x05,0x00,0x01,0x00,
1355 0x00,0x00,0xfc,0x00,0x00,0x00,0x1c,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1356 0x00,0x00,0x28,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,
1357 0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x6d,0x65,
1358 0x68,0x2f,0x44,0x65,0x73,0x6b,0x74,0x6f,0x70,0x2f,0x74,0x65,0x73,0x74,0x2e,0x74,
1359 0x69,0x66,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48,
1362 /* 320x320 twip wmf */
1363 static const unsigned char wmfimage[180] = {
1364 0xd7,0xcd,0xc6,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x01,0x40,0x01,0xa0,0x05,
1365 0x00,0x00,0x00,0x00,0xb1,0x52,0x01,0x00,0x09,0x00,0x00,0x03,0x4f,0x00,0x00,0x00,
1366 0x0f,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x0b,0x02,0x00,0x00,
1367 0x00,0x00,0x05,0x00,0x00,0x00,0x0c,0x02,0x40,0x01,0x40,0x01,0x04,0x00,0x00,0x00,
1368 0x02,0x01,0x01,0x00,0x04,0x00,0x00,0x00,0x04,0x01,0x0d,0x00,0x08,0x00,0x00,0x00,
1369 0xfa,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
1370 0x2d,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,0x01,0x00,0x00,0x00,0x00,0x00,
1371 0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,
1372 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x02,0x00,
1373 0x07,0x00,0x00,0x00,0x1b,0x04,0x40,0x01,0x40,0x01,0x00,0x00,0x00,0x00,0x04,0x00,
1374 0x00,0x00,0xf0,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0xf0,0x01,0x01,0x00,0x03,0x00,
1377 static void test_getrawformat(void)
1379 test_bufferrawformat((void*)pngimage, sizeof(pngimage), &ImageFormatPNG, __LINE__, FALSE);
1380 test_bufferrawformat((void*)gifimage, sizeof(gifimage), &ImageFormatGIF, __LINE__, FALSE);
1381 test_bufferrawformat((void*)bmpimage, sizeof(bmpimage), &ImageFormatBMP, __LINE__, FALSE);
1382 test_bufferrawformat((void*)jpgimage, sizeof(jpgimage), &ImageFormatJPEG, __LINE__, FALSE);
1383 test_bufferrawformat((void*)tiffimage, sizeof(tiffimage), &ImageFormatTIFF, __LINE__, FALSE);
1384 test_bufferrawformat((void*)wmfimage, sizeof(wmfimage), &ImageFormatWMF, __LINE__, FALSE);
1387 static void test_loadwmf(void)
1398 MetafileHeader header;
1400 hglob = GlobalAlloc (0, sizeof(wmfimage));
1401 data = GlobalLock (hglob);
1402 memcpy(data, wmfimage, sizeof(wmfimage));
1403 GlobalUnlock(hglob); data = NULL;
1405 hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
1406 ok(hres == S_OK, "Failed to create a stream\n");
1407 if(hres != S_OK) return;
1409 stat = GdipLoadImageFromStream(stream, &img);
1410 ok(stat == Ok, "Failed to create a Bitmap\n");
1412 IStream_Release(stream);
1416 IStream_Release(stream);
1418 stat = GdipGetImageBounds(img, &bounds, &unit);
1420 todo_wine expect(UnitPixel, unit);
1421 expectf(0.0, bounds.X);
1422 expectf(0.0, bounds.Y);
1423 todo_wine expectf(320.0, bounds.Width);
1424 todo_wine expectf(320.0, bounds.Height);
1426 stat = GdipGetImageHorizontalResolution(img, &res);
1428 todo_wine expectf(1440.0, res);
1430 stat = GdipGetImageVerticalResolution(img, &res);
1432 todo_wine expectf(1440.0, res);
1434 memset(&header, 0, sizeof(header));
1435 stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header);
1439 todo_wine expect(MetafileTypeWmfPlaceable, header.Type);
1440 todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size);
1441 todo_wine expect(0x300, header.Version);
1442 expect(0, header.EmfPlusFlags);
1443 todo_wine expectf(1440.0, header.DpiX);
1444 todo_wine expectf(1440.0, header.DpiY);
1445 expect(0, header.X);
1446 expect(0, header.Y);
1447 todo_wine expect(320, header.Width);
1448 todo_wine expect(320, header.Height);
1449 todo_wine expect(1, U(header).WmfHeader.mtType);
1450 expect(0, header.EmfPlusHeaderSize);
1451 expect(0, header.LogicalDpiX);
1452 expect(0, header.LogicalDpiY);
1455 GdipDisposeImage(img);
1458 static void test_createfromwmf(void)
1466 MetafileHeader header;
1468 hwmf = SetMetaFileBitsEx(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader),
1469 wmfimage+sizeof(WmfPlaceableFileHeader));
1470 ok(hwmf != 0, "SetMetaFileBitsEx failed\n");
1472 stat = GdipCreateMetafileFromWmf(hwmf, TRUE,
1473 (WmfPlaceableFileHeader*)wmfimage, (GpMetafile**)&img);
1476 stat = GdipGetImageBounds(img, &bounds, &unit);
1478 expect(UnitPixel, unit);
1479 expectf(0.0, bounds.X);
1480 expectf(0.0, bounds.Y);
1481 expectf(320.0, bounds.Width);
1482 expectf(320.0, bounds.Height);
1484 stat = GdipGetImageHorizontalResolution(img, &res);
1486 expectf(1440.0, res);
1488 stat = GdipGetImageVerticalResolution(img, &res);
1490 expectf(1440.0, res);
1492 memset(&header, 0, sizeof(header));
1493 stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header);
1497 todo_wine expect(MetafileTypeWmfPlaceable, header.Type);
1498 todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size);
1499 todo_wine expect(0x300, header.Version);
1500 expect(0, header.EmfPlusFlags);
1501 todo_wine expectf(1440.0, header.DpiX);
1502 todo_wine expectf(1440.0, header.DpiY);
1503 expect(0, header.X);
1504 expect(0, header.Y);
1505 todo_wine expect(320, header.Width);
1506 todo_wine expect(320, header.Height);
1507 todo_wine expect(1, U(header).WmfHeader.mtType);
1508 expect(0, header.EmfPlusHeaderSize);
1509 expect(0, header.LogicalDpiX);
1510 expect(0, header.LogicalDpiY);
1513 GdipDisposeImage(img);
1516 static void test_resolution(void)
1520 GpGraphics *graphics;
1523 int screenxres, screenyres;
1526 stat = GdipCreateBitmapFromScan0(1, 1, 32, PixelFormat24bppRGB, NULL, &bitmap);
1529 /* test invalid values */
1530 stat = GdipGetImageHorizontalResolution(NULL, &res);
1531 expect(InvalidParameter, stat);
1533 stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, NULL);
1534 expect(InvalidParameter, stat);
1536 stat = GdipGetImageVerticalResolution(NULL, &res);
1537 expect(InvalidParameter, stat);
1539 stat = GdipGetImageVerticalResolution((GpImage*)bitmap, NULL);
1540 expect(InvalidParameter, stat);
1542 stat = GdipBitmapSetResolution(NULL, 96.0, 96.0);
1543 expect(InvalidParameter, stat);
1545 stat = GdipBitmapSetResolution(bitmap, 0.0, 0.0);
1546 expect(InvalidParameter, stat);
1548 /* defaults to screen resolution */
1549 screendc = GetDC(0);
1551 screenxres = GetDeviceCaps(screendc, LOGPIXELSX);
1552 screenyres = GetDeviceCaps(screendc, LOGPIXELSY);
1554 ReleaseDC(0, screendc);
1556 stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res);
1558 expectf((REAL)screenxres, res);
1560 stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res);
1562 expectf((REAL)screenyres, res);
1564 stat = GdipGetImageGraphicsContext((GpImage*)bitmap, &graphics);
1566 stat = GdipGetDpiX(graphics, &res);
1568 expectf((REAL)screenxres, res);
1569 stat = GdipGetDpiY(graphics, &res);
1571 expectf((REAL)screenyres, res);
1573 /* test changing the resolution */
1574 stat = GdipBitmapSetResolution(bitmap, screenxres*2.0, screenyres*3.0);
1577 stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res);
1579 expectf(screenxres*2.0, res);
1581 stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res);
1583 expectf(screenyres*3.0, res);
1585 stat = GdipGetDpiX(graphics, &res);
1587 expectf((REAL)screenxres, res);
1588 stat = GdipGetDpiY(graphics, &res);
1590 expectf((REAL)screenyres, res);
1592 stat = GdipDeleteGraphics(graphics);
1595 stat = GdipGetImageGraphicsContext((GpImage*)bitmap, &graphics);
1597 stat = GdipGetDpiX(graphics, &res);
1599 expectf(screenxres*2.0, res);
1600 stat = GdipGetDpiY(graphics, &res);
1602 expectf(screenyres*3.0, res);
1603 stat = GdipDeleteGraphics(graphics);
1606 stat = GdipDisposeImage((GpImage*)bitmap);
1610 static void test_createhbitmap(void)
1614 HBITMAP hbitmap, oldhbitmap;
1621 memset(bits, 0x68, 640);
1624 stat = GdipCreateBitmapFromScan0(10, 20, 32, PixelFormat24bppRGB, bits, &bitmap);
1627 /* test NULL values */
1628 stat = GdipCreateHBITMAPFromBitmap(NULL, &hbitmap, 0);
1629 expect(InvalidParameter, stat);
1631 stat = GdipCreateHBITMAPFromBitmap(bitmap, NULL, 0);
1632 expect(InvalidParameter, stat);
1634 /* create HBITMAP */
1635 stat = GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0);
1640 ret = GetObjectA(hbitmap, sizeof(BITMAP), &bm);
1641 expect(sizeof(BITMAP), ret);
1643 expect(0, bm.bmType);
1644 expect(10, bm.bmWidth);
1645 expect(20, bm.bmHeight);
1646 expect(40, bm.bmWidthBytes);
1647 expect(1, bm.bmPlanes);
1648 expect(32, bm.bmBitsPixel);
1649 ok(bm.bmBits != NULL, "got DDB, expected DIB\n");
1653 DWORD val = *(DWORD*)bm.bmBits;
1654 ok(val == 0xff686868, "got %x, expected 0xff686868\n", val);
1657 hdc = CreateCompatibleDC(NULL);
1659 oldhbitmap = SelectObject(hdc, hbitmap);
1660 pixel = GetPixel(hdc, 5, 5);
1661 SelectObject(hdc, oldhbitmap);
1665 expect(0x686868, pixel);
1667 DeleteObject(hbitmap);
1670 stat = GdipDisposeImage((GpImage*)bitmap);
1673 /* create alpha Bitmap */
1674 stat = GdipCreateBitmapFromScan0(8, 20, 32, PixelFormat32bppARGB, bits, &bitmap);
1677 /* create HBITMAP */
1678 stat = GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0);
1683 ret = GetObjectA(hbitmap, sizeof(BITMAP), &bm);
1684 expect(sizeof(BITMAP), ret);
1686 expect(0, bm.bmType);
1687 expect(8, bm.bmWidth);
1688 expect(20, bm.bmHeight);
1689 expect(32, bm.bmWidthBytes);
1690 expect(1, bm.bmPlanes);
1691 expect(32, bm.bmBitsPixel);
1692 ok(bm.bmBits != NULL, "got DDB, expected DIB\n");
1696 DWORD val = *(DWORD*)bm.bmBits;
1697 ok(val == 0x682a2a2a, "got %x, expected 0x682a2a2a\n", val);
1700 hdc = CreateCompatibleDC(NULL);
1702 oldhbitmap = SelectObject(hdc, hbitmap);
1703 pixel = GetPixel(hdc, 5, 5);
1704 SelectObject(hdc, oldhbitmap);
1708 expect(0x2a2a2a, pixel);
1710 DeleteObject(hbitmap);
1713 stat = GdipDisposeImage((GpImage*)bitmap);
1717 static void test_getthumbnail(void)
1720 GpImage *bitmap1, *bitmap2;
1723 stat = GdipGetImageThumbnail(NULL, 0, 0, &bitmap2, NULL, NULL);
1724 expect(InvalidParameter, stat);
1726 stat = GdipCreateBitmapFromScan0(128, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1);
1729 stat = GdipGetImageThumbnail(bitmap1, 0, 0, NULL, NULL, NULL);
1730 expect(InvalidParameter, stat);
1732 stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL);
1737 stat = GdipGetImageWidth(bitmap2, &width);
1741 stat = GdipGetImageHeight(bitmap2, &height);
1743 expect(120, height);
1745 GdipDisposeImage(bitmap2);
1748 GdipDisposeImage(bitmap1);
1751 stat = GdipCreateBitmapFromScan0(64, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1);
1754 stat = GdipGetImageThumbnail(bitmap1, 32, 32, &bitmap2, NULL, NULL);
1759 stat = GdipGetImageWidth(bitmap2, &width);
1763 stat = GdipGetImageHeight(bitmap2, &height);
1767 GdipDisposeImage(bitmap2);
1770 stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL);
1775 stat = GdipGetImageWidth(bitmap2, &width);
1779 stat = GdipGetImageHeight(bitmap2, &height);
1781 expect(120, height);
1783 GdipDisposeImage(bitmap2);
1786 GdipDisposeImage(bitmap1);
1789 static void test_getsetpixel(void)
1794 BYTE bits[16] = {0x00,0x00,0x00,0x00, 0x00,0xff,0xff,0x00,
1795 0xff,0x00,0x00,0x00, 0xff,0xff,0xff,0x00};
1797 stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, bits, &bitmap);
1800 /* null parameters */
1801 stat = GdipBitmapGetPixel(NULL, 1, 1, &color);
1802 expect(InvalidParameter, stat);
1804 stat = GdipBitmapGetPixel(bitmap, 1, 1, NULL);
1805 expect(InvalidParameter, stat);
1807 stat = GdipBitmapSetPixel(NULL, 1, 1, 0);
1808 expect(InvalidParameter, stat);
1811 stat = GdipBitmapGetPixel(bitmap, -1, 1, &color);
1812 expect(InvalidParameter, stat);
1814 stat = GdipBitmapSetPixel(bitmap, -1, 1, 0);
1815 expect(InvalidParameter, stat);
1817 stat = GdipBitmapGetPixel(bitmap, 1, -1, &color);
1818 ok(stat == InvalidParameter ||
1819 broken(stat == Ok), /* Older gdiplus */
1820 "Expected InvalidParameter, got %.8x\n", stat);
1822 if (0) /* crashes some gdiplus implementations */
1824 stat = GdipBitmapSetPixel(bitmap, 1, -1, 0);
1825 ok(stat == InvalidParameter ||
1826 broken(stat == Ok), /* Older gdiplus */
1827 "Expected InvalidParameter, got %.8x\n", stat);
1830 stat = GdipBitmapGetPixel(bitmap, 2, 1, &color);
1831 expect(InvalidParameter, stat);
1833 stat = GdipBitmapSetPixel(bitmap, 2, 1, 0);
1834 expect(InvalidParameter, stat);
1836 stat = GdipBitmapGetPixel(bitmap, 1, 2, &color);
1837 expect(InvalidParameter, stat);
1839 stat = GdipBitmapSetPixel(bitmap, 1, 2, 0);
1840 expect(InvalidParameter, stat);
1843 stat = GdipBitmapGetPixel(bitmap, 1, 1, &color);
1845 expect(0xffffffff, color);
1847 stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1849 expect(0xff0000ff, color);
1851 stat = GdipBitmapSetPixel(bitmap, 1, 1, 0xff676869);
1854 stat = GdipBitmapSetPixel(bitmap, 0, 0, 0xff474849);
1857 stat = GdipBitmapGetPixel(bitmap, 1, 1, &color);
1859 expect(0xff676869, color);
1861 stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1863 expect(0xff474849, color);
1865 stat = GdipDisposeImage((GpImage*)bitmap);
1869 static void check_halftone_palette(ColorPalette *palette)
1871 static const BYTE halftone_values[6]={0x00,0x33,0x66,0x99,0xcc,0xff};
1874 for (i=0; i<palette->Count; i++)
1876 ARGB expected=0xff000000;
1879 if (i&1) expected |= 0x800000;
1880 if (i&2) expected |= 0x8000;
1881 if (i&4) expected |= 0x80;
1885 expected = 0xffc0c0c0;
1889 if (i&1) expected |= 0xff0000;
1890 if (i&2) expected |= 0xff00;
1891 if (i&4) expected |= 0xff;
1895 expected = 0x00000000;
1899 expected |= halftone_values[(i-40)%6];
1900 expected |= halftone_values[((i-40)/6)%6] << 8;
1901 expected |= halftone_values[((i-40)/36)%6] << 16;
1903 ok(expected == palette->Entries[i], "Expected %.8x, got %.8x, i=%u/%u\n",
1904 expected, palette->Entries[i], i, palette->Count);
1908 static void test_palette(void)
1914 ColorPalette *palette=(ColorPalette*)buffer;
1915 ARGB *entries = palette->Entries;
1918 /* test initial palette from non-indexed bitmap */
1919 stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, NULL, &bitmap);
1922 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1924 expect(sizeof(UINT)*2+sizeof(ARGB), size);
1926 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1928 expect(0, palette->Count);
1930 /* test setting palette on not-indexed bitmap */
1933 stat = GdipSetImagePalette((GpImage*)bitmap, palette);
1936 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1938 expect(sizeof(UINT)*2+sizeof(ARGB)*3, size);
1940 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1942 expect(3, palette->Count);
1944 GdipDisposeImage((GpImage*)bitmap);
1946 /* test initial palette on 1-bit bitmap */
1947 stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat1bppIndexed, NULL, &bitmap);
1950 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1952 expect(sizeof(UINT)*2+sizeof(ARGB)*2, size);
1954 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1956 expect(PaletteFlagsGrayScale, palette->Flags);
1957 expect(2, palette->Count);
1959 expect(0xff000000, entries[0]);
1960 expect(0xffffffff, entries[1]);
1962 /* test getting/setting pixels */
1963 stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1965 expect(0xff000000, color);
1967 stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffffffff);
1969 broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
1973 stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
1975 expect(0xffffffff, color);
1978 GdipDisposeImage((GpImage*)bitmap);
1980 /* test initial palette on 4-bit bitmap */
1981 stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat4bppIndexed, NULL, &bitmap);
1984 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
1986 expect(sizeof(UINT)*2+sizeof(ARGB)*16, size);
1988 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
1990 expect(0, palette->Flags);
1991 expect(16, palette->Count);
1993 check_halftone_palette(palette);
1995 /* test getting/setting pixels */
1996 stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
1998 expect(0xff000000, color);
2000 stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffff00ff);
2002 broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
2006 stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
2008 expect(0xffff00ff, color);
2011 GdipDisposeImage((GpImage*)bitmap);
2013 /* test initial palette on 8-bit bitmap */
2014 stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat8bppIndexed, NULL, &bitmap);
2017 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
2019 expect(sizeof(UINT)*2+sizeof(ARGB)*256, size);
2021 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
2023 expect(PaletteFlagsHalftone, palette->Flags);
2024 expect(256, palette->Count);
2026 check_halftone_palette(palette);
2028 /* test getting/setting pixels */
2029 stat = GdipBitmapGetPixel(bitmap, 0, 0, &color);
2031 expect(0xff000000, color);
2033 stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffcccccc);
2035 broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat);
2039 stat = GdipBitmapGetPixel(bitmap, 0, 1, &color);
2041 expect(0xffcccccc, color);
2044 /* test setting/getting a different palette */
2045 entries[1] = 0xffcccccc;
2047 stat = GdipSetImagePalette((GpImage*)bitmap, palette);
2052 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
2054 expect(sizeof(UINT)*2+sizeof(ARGB)*256, size);
2056 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
2058 expect(PaletteFlagsHalftone, palette->Flags);
2059 expect(256, palette->Count);
2060 expect(0xffcccccc, entries[1]);
2062 /* test count < 256 */
2063 palette->Flags = 12345;
2066 stat = GdipSetImagePalette((GpImage*)bitmap, palette);
2070 entries[3] = 0xdeadbeef;
2072 stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size);
2074 expect(sizeof(UINT)*2+sizeof(ARGB)*3, size);
2076 stat = GdipGetImagePalette((GpImage*)bitmap, palette, size);
2078 expect(12345, palette->Flags);
2079 expect(3, palette->Count);
2080 expect(0xffcccccc, entries[1]);
2081 expect(0xdeadbeef, entries[3]);
2083 /* test count > 256 */
2084 palette->Count = 257;
2086 stat = GdipSetImagePalette((GpImage*)bitmap, palette);
2087 ok(stat == InvalidParameter ||
2088 broken(stat == Ok), /* Old gdiplus behavior */
2089 "Expected %.8x, got %.8x\n", InvalidParameter, stat);
2091 GdipDisposeImage((GpImage*)bitmap);
2094 static void test_colormatrix(void)
2097 ColorMatrix colormatrix, graymatrix;
2098 GpImageAttributes *imageattr;
2099 const ColorMatrix identity = {{
2100 {1.0,0.0,0.0,0.0,0.0},
2101 {0.0,1.0,0.0,0.0,0.0},
2102 {0.0,0.0,1.0,0.0,0.0},
2103 {0.0,0.0,0.0,1.0,0.0},
2104 {0.0,0.0,0.0,0.0,1.0}}};
2105 const ColorMatrix double_red = {{
2106 {2.0,0.0,0.0,0.0,0.0},
2107 {0.0,1.0,0.0,0.0,0.0},
2108 {0.0,0.0,1.0,0.0,0.0},
2109 {0.0,0.0,0.0,1.0,0.0},
2110 {0.0,0.0,0.0,0.0,1.0}}};
2111 const ColorMatrix asymmetric = {{
2112 {0.0,1.0,0.0,0.0,0.0},
2113 {0.0,0.0,1.0,0.0,0.0},
2114 {0.0,0.0,0.0,1.0,0.0},
2115 {1.0,0.0,0.0,0.0,0.0},
2116 {0.0,0.0,0.0,0.0,1.0}}};
2117 GpBitmap *bitmap1, *bitmap2;
2118 GpGraphics *graphics;
2121 colormatrix = identity;
2122 graymatrix = identity;
2124 stat = GdipSetImageAttributesColorMatrix(NULL, ColorAdjustTypeDefault,
2125 TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
2126 expect(InvalidParameter, stat);
2128 stat = GdipCreateImageAttributes(&imageattr);
2131 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2132 TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault);
2135 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2136 TRUE, NULL, NULL, ColorMatrixFlagsDefault);
2137 expect(InvalidParameter, stat);
2139 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2140 TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
2143 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2144 TRUE, &colormatrix, NULL, ColorMatrixFlagsSkipGrays);
2147 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2148 TRUE, &colormatrix, NULL, ColorMatrixFlagsAltGray);
2149 expect(InvalidParameter, stat);
2151 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2152 TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsAltGray);
2155 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2156 TRUE, &colormatrix, &graymatrix, 3);
2157 expect(InvalidParameter, stat);
2159 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeCount,
2160 TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
2161 expect(InvalidParameter, stat);
2163 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeAny,
2164 TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault);
2165 expect(InvalidParameter, stat);
2167 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2168 FALSE, NULL, NULL, ColorMatrixFlagsDefault);
2171 /* Drawing a bitmap transforms the colors */
2172 colormatrix = double_red;
2173 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2174 TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault);
2177 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB, NULL, &bitmap1);
2180 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB, NULL, &bitmap2);
2183 stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff40ccee);
2186 stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2189 stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2190 UnitPixel, imageattr, NULL, NULL);
2193 stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2195 expect(0xff80ccee, color);
2197 colormatrix = asymmetric;
2198 stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault,
2199 TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault);
2202 stat = GdipBitmapSetPixel(bitmap2, 0, 0, 0);
2205 stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2206 UnitPixel, imageattr, NULL, NULL);
2209 stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2211 ok(color_match(0xeeff40cc, color, 3), "expected 0xeeff40cc, got 0x%08x\n", color);
2213 GdipDeleteGraphics(graphics);
2214 GdipDisposeImage((GpImage*)bitmap1);
2215 GdipDisposeImage((GpImage*)bitmap2);
2216 GdipDisposeImageAttributes(imageattr);
2219 static void test_gamma(void)
2222 GpImageAttributes *imageattr;
2223 GpBitmap *bitmap1, *bitmap2;
2224 GpGraphics *graphics;
2227 stat = GdipSetImageAttributesGamma(NULL, ColorAdjustTypeDefault, TRUE, 1.0);
2228 expect(InvalidParameter, stat);
2230 stat = GdipCreateImageAttributes(&imageattr);
2233 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 1.0);
2236 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeAny, TRUE, 1.0);
2237 expect(InvalidParameter, stat);
2239 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, -1.0);
2240 expect(InvalidParameter, stat);
2242 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.0);
2243 expect(InvalidParameter, stat);
2245 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.5);
2248 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, FALSE, 0.0);
2251 /* Drawing a bitmap transforms the colors */
2252 stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 3.0);
2255 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1);
2258 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2);
2261 stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff80ffff);
2264 stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2267 stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2268 UnitPixel, imageattr, NULL, NULL);
2271 stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2273 ok(color_match(0xff20ffff, color, 1), "Expected ff20ffff, got %.8x\n", color);
2275 GdipDeleteGraphics(graphics);
2276 GdipDisposeImage((GpImage*)bitmap1);
2277 GdipDisposeImage((GpImage*)bitmap2);
2278 GdipDisposeImageAttributes(imageattr);
2281 /* 1x1 pixel gif, 2 frames; first frame is white, second is black */
2282 static const unsigned char gifanimation[72] = {
2283 0x47,0x49,0x46,0x38,0x39,0x61,0x01,0x00,0x01,0x00,0xa1,0x00,0x00,0x00,0x00,0x00,
2284 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xf9,0x04,0x00,0x0a,0x00,0xff,
2285 0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x4c,0x01,0x00,
2286 0x21,0xf9,0x04,0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,
2287 0x00,0x00,0x02,0x02,0x44,0x01,0x00,0x3b
2290 static void test_multiframegif(void)
2302 /* Test frame functions with an animated GIF */
2303 hglob = GlobalAlloc (0, sizeof(gifanimation));
2304 data = GlobalLock (hglob);
2305 memcpy(data, gifanimation, sizeof(gifanimation));
2306 GlobalUnlock(hglob);
2308 hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
2309 ok(hres == S_OK, "Failed to create a stream\n");
2310 if(hres != S_OK) return;
2312 stat = GdipCreateBitmapFromStream(stream, &bmp);
2313 ok(stat == Ok, "Failed to create a Bitmap\n");
2315 IStream_Release(stream);
2319 /* Bitmap starts at frame 0 */
2321 stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2323 expect(0xffffffff, color);
2325 /* Check that we get correct metadata */
2326 stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count);
2330 stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1);
2332 expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE);
2335 stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count);
2339 /* SelectActiveFrame overwrites our current data */
2340 stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1);
2344 GdipBitmapGetPixel(bmp, 0, 0, &color);
2346 expect(0xff000000, color);
2348 stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2352 GdipBitmapGetPixel(bmp, 0, 0, &color);
2354 expect(0xffffffff, color);
2356 /* Write over the image data */
2357 stat = GdipBitmapSetPixel(bmp, 0, 0, 0xff000000);
2360 /* Switching to the same frame does not overwrite our changes */
2361 stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2364 stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2366 expect(0xff000000, color);
2368 /* But switching to another frame and back does */
2369 stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1);
2372 stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0);
2375 stat = GdipBitmapGetPixel(bmp, 0, 0, &color);
2377 expect(0xffffffff, color);
2379 /* rotate/flip discards the information about other frames */
2380 stat = GdipImageRotateFlip((GpImage*)bmp, Rotate90FlipNone);
2384 stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count);
2388 expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bmp, __LINE__, FALSE);
2390 GdipDisposeImage((GpImage*)bmp);
2391 IStream_Release(stream);
2393 /* Test with a non-animated gif */
2394 hglob = GlobalAlloc (0, sizeof(gifimage));
2395 data = GlobalLock (hglob);
2396 memcpy(data, gifimage, sizeof(gifimage));
2397 GlobalUnlock(hglob);
2399 hres = CreateStreamOnHGlobal(hglob, TRUE, &stream);
2400 ok(hres == S_OK, "Failed to create a stream\n");
2401 if(hres != S_OK) return;
2403 stat = GdipCreateBitmapFromStream(stream, &bmp);
2404 ok(stat == Ok, "Failed to create a Bitmap\n");
2406 IStream_Release(stream);
2410 /* Check metadata */
2411 stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count);
2415 stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1);
2417 expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE);
2420 stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count);
2424 GdipDisposeImage((GpImage*)bmp);
2425 IStream_Release(stream);
2428 static void test_rotateflip(void)
2433 static const BYTE orig_bits[24] = {
2434 0,0,0xff, 0,0xff,0, 0xff,0,0, 23,23,23,
2435 0xff,0xff,0, 0xff,0,0xff, 0,0xff,0xff, 23,23,23};
2439 memcpy(bits, orig_bits, sizeof(bits));
2440 stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2443 stat = GdipImageRotateFlip(bitmap, Rotate90FlipNone);
2446 stat = GdipGetImageWidth(bitmap, &width);
2448 stat = GdipGetImageHeight(bitmap, &height);
2453 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2455 expect(0xff00ffff, color);
2457 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 0, &color);
2459 expect(0xffff0000, color);
2461 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 2, &color);
2463 expect(0xffffff00, color);
2465 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 2, &color);
2467 expect(0xff0000ff, color);
2471 expect(0xff, bits[2]);
2473 GdipDisposeImage(bitmap);
2475 memcpy(bits, orig_bits, sizeof(bits));
2476 stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2479 stat = GdipImageRotateFlip(bitmap, RotateNoneFlipX);
2482 stat = GdipGetImageWidth(bitmap, &width);
2484 stat = GdipGetImageHeight(bitmap, &height);
2489 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2491 expect(0xff0000ff, color);
2493 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color);
2495 expect(0xffff0000, color);
2497 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color);
2499 expect(0xffffff00, color);
2501 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color);
2503 expect(0xff00ffff, color);
2507 expect(0xff, bits[2]);
2509 GdipDisposeImage(bitmap);
2511 memcpy(bits, orig_bits, sizeof(bits));
2512 stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap);
2515 stat = GdipImageRotateFlip(bitmap, RotateNoneFlipY);
2518 stat = GdipGetImageWidth(bitmap, &width);
2520 stat = GdipGetImageHeight(bitmap, &height);
2525 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color);
2527 expect(0xff00ffff, color);
2529 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color);
2531 expect(0xffffff00, color);
2533 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color);
2535 expect(0xffff0000, color);
2537 stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color);
2539 expect(0xff0000ff, color);
2543 expect(0xff, bits[2]);
2545 GdipDisposeImage(bitmap);
2548 static void test_remaptable(void)
2551 GpImageAttributes *imageattr;
2552 GpBitmap *bitmap1, *bitmap2;
2553 GpGraphics *graphics;
2557 map = GdipAlloc(sizeof(ColorMap));
2559 map->oldColor.Argb = 0xff00ff00;
2560 map->newColor.Argb = 0xffff00ff;
2562 stat = GdipSetImageAttributesRemapTable(NULL, ColorAdjustTypeDefault, TRUE, 1, map);
2563 expect(InvalidParameter, stat);
2565 stat = GdipCreateImageAttributes(&imageattr);
2568 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, NULL);
2569 expect(InvalidParameter, stat);
2571 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeCount, TRUE, 1, map);
2572 expect(InvalidParameter, stat);
2574 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeAny, TRUE, 1, map);
2575 expect(InvalidParameter, stat);
2577 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 0, map);
2578 expect(InvalidParameter, stat);
2580 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, FALSE, 0, NULL);
2583 stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, map);
2586 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1);
2589 stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2);
2592 stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff00ff00);
2595 stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2598 stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1,
2599 UnitPixel, imageattr, NULL, NULL);
2602 stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2604 ok(color_match(0xffff00ff, color, 1), "Expected ffff00ff, got %.8x\n", color);
2606 GdipDeleteGraphics(graphics);
2607 GdipDisposeImage((GpImage*)bitmap1);
2608 GdipDisposeImage((GpImage*)bitmap2);
2609 GdipDisposeImageAttributes(imageattr);
2613 static void test_colorkey(void)
2616 GpImageAttributes *imageattr;
2617 GpBitmap *bitmap1, *bitmap2;
2618 GpGraphics *graphics;
2621 stat = GdipSetImageAttributesColorKeys(NULL, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090);
2622 expect(InvalidParameter, stat);
2624 stat = GdipCreateImageAttributes(&imageattr);
2627 stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeCount, TRUE, 0xff405060, 0xff708090);
2628 expect(InvalidParameter, stat);
2630 stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeAny, TRUE, 0xff405060, 0xff708090);
2631 expect(InvalidParameter, stat);
2633 stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090);
2636 stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap1);
2639 stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap2);
2642 stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0x20405060);
2645 stat = GdipBitmapSetPixel(bitmap1, 0, 1, 0x40506070);
2648 stat = GdipBitmapSetPixel(bitmap1, 1, 0, 0x60708090);
2651 stat = GdipBitmapSetPixel(bitmap1, 1, 1, 0xffffffff);
2654 stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics);
2657 stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,2,2, 0,0,2,2,
2658 UnitPixel, imageattr, NULL, NULL);
2661 stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color);
2663 ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2665 stat = GdipBitmapGetPixel(bitmap2, 0, 1, &color);
2667 ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2669 stat = GdipBitmapGetPixel(bitmap2, 1, 0, &color);
2671 ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color);
2673 stat = GdipBitmapGetPixel(bitmap2, 1, 1, &color);
2675 ok(color_match(0xffffffff, color, 1), "Expected ffff00ff, got %.8x\n", color);
2677 GdipDeleteGraphics(graphics);
2678 GdipDisposeImage((GpImage*)bitmap1);
2679 GdipDisposeImage((GpImage*)bitmap2);
2680 GdipDisposeImageAttributes(imageattr);
2683 static void test_dispose(void)
2687 char invalid_image[256];
2689 stat = GdipDisposeImage(NULL);
2690 expect(InvalidParameter, stat);
2692 stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, (GpBitmap**)&image);
2695 stat = GdipDisposeImage(image);
2698 stat = GdipDisposeImage(image);
2699 expect(ObjectBusy, stat);
2701 memset(invalid_image, 0, 256);
2702 stat = GdipDisposeImage((GpImage*)invalid_image);
2703 expect(ObjectBusy, stat);
2706 static LONG obj_refcount(void *obj)
2708 IUnknown_AddRef((IUnknown *)obj);
2709 return IUnknown_Release((IUnknown *)obj);
2712 static GpImage *load_image(const BYTE *image_data, UINT image_size)
2719 GpImage *image = NULL, *clone;
2720 ImageType image_type;
2721 LONG refcount, old_refcount;
2723 hmem = GlobalAlloc(0, image_size);
2724 data = GlobalLock(hmem);
2725 memcpy(data, image_data, image_size);
2728 hr = CreateStreamOnHGlobal(hmem, TRUE, &stream);
2729 ok(hr == S_OK, "CreateStreamOnHGlobal error %#x\n", hr);
2730 if (hr != S_OK) return NULL;
2732 refcount = obj_refcount(stream);
2733 ok(refcount == 1, "expected stream refcount 1, got %d\n", refcount);
2735 status = GdipLoadImageFromStream(stream, &image);
2736 ok(status == Ok || broken(status == InvalidParameter), /* XP */
2737 "GdipLoadImageFromStream error %d\n", status);
2740 IStream_Release(stream);
2744 status = GdipGetImageType(image, &image_type);
2745 ok(status == Ok, "GdipGetImageType error %d\n", status);
2747 refcount = obj_refcount(stream);
2748 if (image_type == ImageTypeBitmap)
2749 ok(refcount > 1, "expected stream refcount > 1, got %d\n", refcount);
2751 ok(refcount == 1, "expected stream refcount 1, got %d\n", refcount);
2752 old_refcount = refcount;
2754 status = GdipCloneImage(image, &clone);
2755 ok(status == Ok, "GdipCloneImage error %d\n", status);
2756 refcount = obj_refcount(stream);
2757 ok(refcount == old_refcount, "expected stream refcount %d, got %d\n", old_refcount, refcount);
2758 status = GdipDisposeImage(clone);
2759 ok(status == Ok, "GdipDisposeImage error %d\n", status);
2760 refcount = obj_refcount(stream);
2761 ok(refcount == old_refcount, "expected stream refcount %d, got %d\n", old_refcount, refcount);
2763 refcount = IStream_Release(stream);
2764 if (image_type == ImageTypeBitmap)
2765 ok(refcount >= 1, "expected stream refcount != 0\n");
2767 ok(refcount == 0, "expected stream refcount 0, got %d\n", refcount);
2772 static void test_image_properties(void)
2774 static const struct test_data
2776 const BYTE *image_data;
2778 ImageType image_type;
2780 UINT prop_count2; /* if win7 behaves differently */
2781 /* 1st property attributes */
2783 UINT prop_size2; /* if win7 behaves differently */
2785 UINT prop_id2; /* if win7 behaves differently */
2789 { pngimage, sizeof(pngimage), ImageTypeBitmap, 4, ~0, 1, 20, 0x5110, 0x132 },
2790 { gifimage, sizeof(gifimage), ImageTypeBitmap, 1, 4, 4, 0, 0x5100, 0 },
2791 { jpgimage, sizeof(jpgimage), ImageTypeBitmap, 2, ~0, 128, 0, 0x5090, 0x5091 },
2792 { tiffimage, sizeof(tiffimage), ImageTypeBitmap, 16, 0, 4, 0, 0xfe, 0 },
2793 { bmpimage, sizeof(bmpimage), ImageTypeBitmap, 0, 0, 0, 0, 0, 0 },
2794 { wmfimage, sizeof(wmfimage), ImageTypeMetafile, 0, 0, 0, 0, 0, 0 }
2798 UINT prop_count, prop_size, i;
2799 PROPID prop_id[16] = { 0 };
2800 ImageType image_type;
2807 for (i = 0; i < sizeof(td)/sizeof(td[0]); i++)
2809 image = load_image(td[i].image_data, td[i].image_size);
2812 trace("%u: failed to load image data\n", i);
2816 status = GdipGetImageType(image, &image_type);
2817 ok(status == Ok, "%u: GdipGetImageType error %d\n", i, status);
2818 ok(td[i].image_type == image_type, "%u: expected image_type %d, got %d\n",
2819 i, td[i].image_type, image_type);
2821 status = GdipGetPropertyCount(image, &prop_count);
2822 ok(status == Ok, "%u: GdipGetPropertyCount error %d\n", i, status);
2823 if (td[i].image_data == pngimage || td[i].image_data == gifimage ||
2824 td[i].image_data == jpgimage)
2826 ok(td[i].prop_count == prop_count || td[i].prop_count2 == prop_count,
2827 " %u: expected property count %u or %u, got %u\n",
2828 i, td[i].prop_count, td[i].prop_count2, prop_count);
2830 ok(td[i].prop_count == prop_count || td[i].prop_count2 == prop_count,
2831 " %u: expected property count %u or %u, got %u\n",
2832 i, td[i].prop_count, td[i].prop_count2, prop_count);
2834 status = GdipGetPropertyItemSize(NULL, 0, &prop_size);
2835 expect(InvalidParameter, status);
2836 status = GdipGetPropertyItemSize(image, 0, NULL);
2837 expect(InvalidParameter, status);
2838 status = GdipGetPropertyItemSize(image, 0, &prop_size);
2839 if (image_type == ImageTypeMetafile)
2840 expect(NotImplemented, status);
2842 expect(PropertyNotFound, status);
2844 status = GdipGetPropertyItem(NULL, 0, 0, &item.data);
2845 expect(InvalidParameter, status);
2846 status = GdipGetPropertyItem(image, 0, 0, NULL);
2847 expect(InvalidParameter, status);
2848 status = GdipGetPropertyItem(image, 0, 0, &item.data);
2849 if (image_type == ImageTypeMetafile)
2850 expect(NotImplemented, status);
2852 expect(PropertyNotFound, status);
2854 /* FIXME: remove once Wine is fixed */
2855 if (td[i].prop_count != prop_count)
2857 GdipDisposeImage(image);
2861 status = GdipGetPropertyIdList(NULL, prop_count, prop_id);
2862 expect(InvalidParameter, status);
2863 status = GdipGetPropertyIdList(image, prop_count, NULL);
2864 expect(InvalidParameter, status);
2865 status = GdipGetPropertyIdList(image, 0, prop_id);
2866 if (image_type == ImageTypeMetafile)
2867 expect(NotImplemented, status);
2868 else if (prop_count == 0)
2871 expect(InvalidParameter, status);
2872 status = GdipGetPropertyIdList(image, prop_count - 1, prop_id);
2873 if (image_type == ImageTypeMetafile)
2874 expect(NotImplemented, status);
2876 expect(InvalidParameter, status);
2877 status = GdipGetPropertyIdList(image, prop_count + 1, prop_id);
2878 if (image_type == ImageTypeMetafile)
2879 expect(NotImplemented, status);
2881 expect(InvalidParameter, status);
2882 status = GdipGetPropertyIdList(image, prop_count, prop_id);
2883 if (image_type == ImageTypeMetafile)
2884 expect(NotImplemented, status);
2888 if (prop_count != 0)
2889 ok(td[i].prop_id == prop_id[0] || td[i].prop_id2 == prop_id[0],
2890 " %u: expected property id %#x or %#x, got %#x\n",
2891 i, td[i].prop_id, td[i].prop_id2, prop_id[0]);
2896 status = GdipGetPropertyItemSize(image, prop_id[0], &prop_size);
2897 if (prop_count == 0)
2898 expect(PropertyNotFound, status);
2903 assert(sizeof(item) >= prop_size);
2904 ok(prop_size > sizeof(PropertyItem), "%u: got too small prop_size %u\n",
2906 ok(td[i].prop_size + sizeof(PropertyItem) == prop_size ||
2907 td[i].prop_size2 + sizeof(PropertyItem) == prop_size,
2908 " %u: expected property size %u or %u, got %u\n",
2909 i, td[i].prop_size, td[i].prop_size2, prop_size);
2911 status = GdipGetPropertyItem(image, prop_id[0], 0, &item.data);
2912 ok(status == InvalidParameter || status == GenericError /* Win7 */,
2913 "%u: expected InvalidParameter, got %d\n", i, status);
2914 status = GdipGetPropertyItem(image, prop_id[0], prop_size - 1, &item.data);
2915 ok(status == InvalidParameter || status == GenericError /* Win7 */,
2916 "%u: expected InvalidParameter, got %d\n", i, status);
2917 status = GdipGetPropertyItem(image, prop_id[0], prop_size + 1, &item.data);
2918 ok(status == InvalidParameter || status == GenericError /* Win7 */,
2919 "%u: expected InvalidParameter, got %d\n", i, status);
2920 status = GdipGetPropertyItem(image, prop_id[0], prop_size, &item.data);
2922 ok(prop_id[0] == item.data.id,
2923 "%u: expected property id %#x, got %#x\n", i, prop_id[0], item.data.id);
2927 GdipDisposeImage(image);
2935 #define IFD_RATIONAL 5
2937 #define IFD_UNDEFINED 7
2938 #define IFD_SSHORT 8
2940 #define IFD_SRATIONAL 10
2941 #define IFD_FLOAT 11
2942 #define IFD_DOUBLE 12
2944 #ifndef PropertyTagTypeSByte
2945 #define PropertyTagTypeSByte 6
2946 #define PropertyTagTypeSShort 8
2947 #define PropertyTagTypeFloat 11
2948 #define PropertyTagTypeDouble 12
2951 static UINT documented_type(UINT type)
2955 case PropertyTagTypeSByte: return PropertyTagTypeByte;
2956 case PropertyTagTypeSShort: return PropertyTagTypeShort;
2957 case PropertyTagTypeFloat: return PropertyTagTypeUndefined;
2958 case PropertyTagTypeDouble: return PropertyTagTypeUndefined;
2959 default: return type;
2963 #include "pshpack2.h"
2978 static const struct tiff_data
2983 USHORT number_of_entries;
2984 struct IFD_entry entry[40];
2986 struct IFD_rational xres;
2988 struct IFD_rational srational_val;
2993 struct IFD_rational rational[3];
2997 #ifdef WORDS_BIGENDIAN
3003 FIELD_OFFSET(struct tiff_data, number_of_entries),
3006 { 0xff, IFD_SHORT, 1, 0 }, /* SUBFILETYPE */
3007 { 0x100, IFD_LONG, 1, 1 }, /* IMAGEWIDTH */
3008 { 0x101, IFD_LONG, 1, 1 }, /* IMAGELENGTH */
3009 { 0x102, IFD_SHORT, 1, 1 }, /* BITSPERSAMPLE */
3010 { 0x103, IFD_LONG, 1, 1 }, /* COMPRESSION */
3011 { 0x106, IFD_SHORT, 1, 1 }, /* PHOTOMETRIC */
3012 { 0x111, IFD_LONG, 1, FIELD_OFFSET(struct tiff_data, pixel_data) }, /* STRIPOFFSETS */
3013 { 0x115, IFD_SHORT, 1, 1 }, /* SAMPLESPERPIXEL */
3014 { 0x116, IFD_LONG, 1, 1 }, /* ROWSPERSTRIP */
3015 { 0x117, IFD_LONG, 1, 1 }, /* STRIPBYTECOUNT */
3016 { 0x11a, IFD_RATIONAL, 1, FIELD_OFFSET(struct tiff_data, xres) },
3017 { 0x11b, IFD_RATIONAL, 1, FIELD_OFFSET(struct tiff_data, xres) },
3018 { 0x128, IFD_SHORT, 1, 2 }, /* RESOLUTIONUNIT */
3019 { 0xf001, IFD_BYTE, 1, 0x11223344 },
3020 { 0xf002, IFD_BYTE, 4, 0x11223344 },
3021 { 0xf003, IFD_SBYTE, 1, 0x11223344 },
3022 { 0xf004, IFD_SSHORT, 1, 0x11223344 },
3023 { 0xf005, IFD_SSHORT, 2, 0x11223344 },
3024 { 0xf006, IFD_SLONG, 1, 0x11223344 },
3025 { 0xf007, IFD_FLOAT, 1, 0x11223344 },
3026 { 0xf008, IFD_DOUBLE, 1, FIELD_OFFSET(struct tiff_data, double_val) },
3027 { 0xf009, IFD_SRATIONAL, 1, FIELD_OFFSET(struct tiff_data, srational_val) },
3028 { 0xf00a, IFD_BYTE, 13, FIELD_OFFSET(struct tiff_data, string) },
3029 { 0xf00b, IFD_SSHORT, 4, FIELD_OFFSET(struct tiff_data, short_val) },
3030 { 0xf00c, IFD_SLONG, 2, FIELD_OFFSET(struct tiff_data, long_val) },
3031 { 0xf00e, IFD_ASCII, 13, FIELD_OFFSET(struct tiff_data, string) },
3032 { 0xf00f, IFD_ASCII, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 },
3033 { 0xf010, IFD_UNDEFINED, 13, FIELD_OFFSET(struct tiff_data, string) },
3034 { 0xf011, IFD_UNDEFINED, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 },
3035 /* Some gdiplus versions ignore these fields.
3036 { 0xf012, IFD_BYTE, 0, 0x11223344 },
3037 { 0xf013, IFD_SHORT, 0, 0x11223344 },
3038 { 0xf014, IFD_LONG, 0, 0x11223344 },
3039 { 0xf015, IFD_FLOAT, 0, 0x11223344 },*/
3040 { 0xf016, IFD_SRATIONAL, 3, FIELD_OFFSET(struct tiff_data, rational) },
3041 /* Win7 before SP1 doesn't recognize this field, everybody else does. */
3042 { 0xf017, IFD_FLOAT, 2, FIELD_OFFSET(struct tiff_data, float_val) },
3046 1234567890.0987654321,
3047 { 0x1a2b3c4d, 0x5a6b7c8d },
3049 { 0x0101, 0x0202, 0x0303, 0x0404 },
3050 { 0x11223344, 0x55667788 },
3051 { (FLOAT)1234.5678, (FLOAT)8765.4321 },
3052 { { 0x01020304, 0x05060708 }, { 0x10203040, 0x50607080 }, { 0x11223344, 0x55667788 } },
3053 { 0x11, 0x22, 0x33, 0 }
3055 #include "poppack.h"
3057 static void test_tiff_properties(void)
3059 static const struct test_data
3061 ULONG type, id, length;
3062 const BYTE value[24];
3065 { PropertyTagTypeShort, 0xff, 2, { 0 } },
3066 { PropertyTagTypeLong, 0x100, 4, { 1 } },
3067 { PropertyTagTypeLong, 0x101, 4, { 1 } },
3068 { PropertyTagTypeShort, 0x102, 2, { 1 } },
3069 { PropertyTagTypeLong, 0x103, 4, { 1 } },
3070 { PropertyTagTypeShort, 0x106, 2, { 1 } },
3071 { PropertyTagTypeLong, 0x111, 4, { 0x44,0x02 } },
3072 { PropertyTagTypeShort, 0x115, 2, { 1 } },
3073 { PropertyTagTypeLong, 0x116, 4, { 1 } },
3074 { PropertyTagTypeLong, 0x117, 4, { 1 } },
3075 { PropertyTagTypeRational, 0x11a, 8, { 0x84,0x03,0,0,0x03 } },
3076 { PropertyTagTypeRational, 0x11b, 8, { 0x84,0x03,0,0,0x03 } },
3077 { PropertyTagTypeShort, 0x128, 2, { 2 } },
3078 { PropertyTagTypeByte, 0xf001, 1, { 0x44 } },
3079 { PropertyTagTypeByte, 0xf002, 4, { 0x44,0x33,0x22,0x11 } },
3080 { PropertyTagTypeSByte, 0xf003, 1, { 0x44 } },
3081 { PropertyTagTypeSShort, 0xf004, 2, { 0x44,0x33 } },
3082 { PropertyTagTypeSShort, 0xf005, 4, { 0x44,0x33,0x22,0x11 } },
3083 { PropertyTagTypeSLONG, 0xf006, 4, { 0x44,0x33,0x22,0x11 } },
3084 { PropertyTagTypeFloat, 0xf007, 4, { 0x44,0x33,0x22,0x11 } },
3085 { PropertyTagTypeDouble, 0xf008, 8, { 0x2c,0x52,0x86,0xb4,0x80,0x65,0xd2,0x41 } },
3086 { PropertyTagTypeSRational, 0xf009, 8, { 0x4d, 0x3c, 0x2b, 0x1a, 0x8d, 0x7c, 0x6b, 0x5a } },
3087 { PropertyTagTypeByte, 0xf00a, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3088 { PropertyTagTypeSShort, 0xf00b, 8, { 0x01,0x01,0x02,0x02,0x03,0x03,0x04,0x04 } },
3089 { PropertyTagTypeSLONG, 0xf00c, 8, { 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } },
3090 { PropertyTagTypeASCII, 0xf00e, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3091 { PropertyTagTypeASCII, 0xf00f, 5, { 'a','b','c','d' } },
3092 { PropertyTagTypeUndefined, 0xf010, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3093 { PropertyTagTypeUndefined, 0xf011, 4, { 'a','b','c','d' } },
3094 { PropertyTagTypeSRational, 0xf016, 24,
3095 { 0x04,0x03,0x02,0x01,0x08,0x07,0x06,0x05,
3096 0x40,0x30,0x20,0x10,0x80,0x70,0x60,0x50,
3097 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } },
3098 /* Win7 before SP1 doesn't recognize this field, everybody else does. */
3099 { PropertyTagTypeFloat, 0xf017, 8, { 0x2b,0x52,0x9a,0x44,0xba,0xf5,0x08,0x46 } },
3104 UINT dim_count, frame_count, prop_count, prop_size, i;
3106 PropertyItem *prop_item;
3108 image = load_image((const BYTE *)&TIFF_data, sizeof(TIFF_data));
3109 ok(image != 0, "Failed to load TIFF image data\n");
3112 status = GdipImageGetFrameDimensionsCount(image, &dim_count);
3114 expect(1, dim_count);
3116 status = GdipImageGetFrameDimensionsList(image, &guid, 1);
3118 expect_guid(&FrameDimensionPage, &guid, __LINE__, FALSE);
3120 frame_count = 0xdeadbeef;
3121 status = GdipImageGetFrameCount(image, &guid, &frame_count);
3123 expect(1, frame_count);
3125 prop_count = 0xdeadbeef;
3126 status = GdipGetPropertyCount(image, &prop_count);
3128 ok(prop_count == sizeof(td)/sizeof(td[0]) ||
3129 broken(prop_count == sizeof(td)/sizeof(td[0]) - 1) /* Win7 SP0 */,
3130 "expected property count %u, got %u\n", (UINT)(sizeof(td)/sizeof(td[0])), prop_count);
3132 prop_id = HeapAlloc(GetProcessHeap(), 0, prop_count * sizeof(*prop_id));
3134 status = GdipGetPropertyIdList(image, prop_count, prop_id);
3137 for (i = 0; i < prop_count; i++)
3139 status = GdipGetPropertyItemSize(image, prop_id[i], &prop_size);
3141 if (status != Ok) break;
3142 ok(prop_size > sizeof(*prop_item), "%u: too small item length %u\n", i, prop_size);
3144 prop_item = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, prop_size);
3145 status = GdipGetPropertyItem(image, prop_id[i], prop_size, prop_item);
3147 ok(prop_item->value == prop_item + 1, "expected item->value %p, got %p\n", prop_item + 1, prop_item->value);
3148 ok(td[i].type == prop_item->type ||
3149 /* Win7 stopped using proper but not documented types, and it
3150 looks broken since TypeFloat and TypeDouble now reported as
3151 TypeUndefined, and signed types reported as unsigned. */
3152 broken(prop_item->type == documented_type(td[i].type)),
3153 "%u: expected type %u, got %u\n", i, td[i].type, prop_item->type);
3154 ok(td[i].id == prop_item->id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item->id);
3155 prop_size -= sizeof(*prop_item);
3156 ok(prop_item->length == prop_size, "%u: expected length %u, got %u\n", i, prop_size, prop_item->length);
3157 ok(td[i].length == prop_item->length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item->length);
3158 ok(td[i].length == prop_size, "%u: expected length %u, got %u\n", i, td[i].length, prop_size);
3159 if (td[i].length == prop_item->length)
3161 int match = memcmp(td[i].value, prop_item->value, td[i].length) == 0;
3162 ok(match || broken(td[i].length <= 4 && !match), "%u: data mismatch\n", i);
3166 BYTE *data = prop_item->value;
3167 printf("id %#x:", prop_item->id);
3168 for (j = 0; j < prop_item->length; j++)
3169 printf(" %02x", data[j]);
3173 HeapFree(GetProcessHeap(), 0, prop_item);
3176 HeapFree(GetProcessHeap(), 0, prop_id);
3178 GdipDisposeImage(image);
3181 static void test_GdipGetAllPropertyItems(void)
3183 static const struct test_data
3185 ULONG type, id, length;
3189 { PropertyTagTypeLong, 0xfe, 4, { 0 } },
3190 { PropertyTagTypeShort, 0x100, 2, { 1 } },
3191 { PropertyTagTypeShort, 0x101, 2, { 1 } },
3192 { PropertyTagTypeShort, 0x102, 6, { 8,0,8,0,8,0 } },
3193 { PropertyTagTypeShort, 0x103, 2, { 1 } },
3194 { PropertyTagTypeShort, 0x106, 2, { 2,0 } },
3195 { PropertyTagTypeASCII, 0x10d, 27, "/home/meh/Desktop/test.tif" },
3196 { PropertyTagTypeLong, 0x111, 4, { 8,0,0,0 } },
3197 { PropertyTagTypeShort, 0x112, 2, { 1 } },
3198 { PropertyTagTypeShort, 0x115, 2, { 3,0 } },
3199 { PropertyTagTypeShort, 0x116, 2, { 0x40,0 } },
3200 { PropertyTagTypeLong, 0x117, 4, { 3,0,0,0 } },
3201 { PropertyTagTypeRational, 0x11a, 8, { 0,0,0,72,0,0,0,1 } },
3202 { PropertyTagTypeRational, 0x11b, 8, { 0,0,0,72,0,0,0,1 } },
3203 { PropertyTagTypeShort, 0x11c, 2, { 1 } },
3204 { PropertyTagTypeShort, 0x128, 2, { 2 } }
3209 UINT dim_count, frame_count, prop_count, prop_size, i;
3210 UINT total_size, total_count;
3212 PropertyItem *prop_item;
3213 const char *item_data;
3215 image = load_image(tiffimage, sizeof(tiffimage));
3216 ok(image != 0, "Failed to load TIFF image data\n");
3219 dim_count = 0xdeadbeef;
3220 status = GdipImageGetFrameDimensionsCount(image, &dim_count);
3222 expect(1, dim_count);
3224 status = GdipImageGetFrameDimensionsList(image, &guid, 1);
3226 expect_guid(&FrameDimensionPage, &guid, __LINE__, FALSE);
3228 frame_count = 0xdeadbeef;
3229 status = GdipImageGetFrameCount(image, &guid, &frame_count);
3231 expect(1, frame_count);
3233 prop_count = 0xdeadbeef;
3234 status = GdipGetPropertyCount(image, &prop_count);
3236 ok(prop_count == sizeof(td)/sizeof(td[0]),
3237 "expected property count %u, got %u\n", (UINT)(sizeof(td)/sizeof(td[0])), prop_count);
3239 prop_id = HeapAlloc(GetProcessHeap(), 0, prop_count * sizeof(*prop_id));
3241 status = GdipGetPropertyIdList(image, prop_count, prop_id);
3245 for (i = 0; i < prop_count; i++)
3248 status = GdipGetPropertyItemSize(image, prop_id[i], &size);
3250 if (status != Ok) break;
3251 ok(size > sizeof(*prop_item), "%u: too small item length %u\n", i, size);
3255 prop_item = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
3256 status = GdipGetPropertyItem(image, prop_id[i], size, prop_item);
3258 ok(prop_item->value == prop_item + 1, "expected item->value %p, got %p\n", prop_item + 1, prop_item->value);
3259 ok(td[i].type == prop_item->type,
3260 "%u: expected type %u, got %u\n", i, td[i].type, prop_item->type);
3261 ok(td[i].id == prop_item->id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item->id);
3262 size -= sizeof(*prop_item);
3263 ok(prop_item->length == size, "%u: expected length %u, got %u\n", i, size, prop_item->length);
3264 ok(td[i].length == prop_item->length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item->length);
3265 if (td[i].length == prop_item->length)
3267 int match = memcmp(td[i].value, prop_item->value, td[i].length) == 0;
3268 ok(match, "%u: data mismatch\n", i);
3272 BYTE *data = prop_item->value;
3273 printf("id %#x:", prop_item->id);
3274 for (j = 0; j < prop_item->length; j++)
3275 printf(" %02x", data[j]);
3279 HeapFree(GetProcessHeap(), 0, prop_item);
3282 HeapFree(GetProcessHeap(), 0, prop_id);
3284 status = GdipGetPropertySize(NULL, &total_size, &total_count);
3285 expect(InvalidParameter, status);
3286 status = GdipGetPropertySize(image, &total_size, NULL);
3287 expect(InvalidParameter, status);
3288 status = GdipGetPropertySize(image, NULL, &total_count);
3289 expect(InvalidParameter, status);
3290 status = GdipGetPropertySize(image, NULL, NULL);
3291 expect(InvalidParameter, status);
3292 total_size = 0xdeadbeef;
3293 total_count = 0xdeadbeef;
3294 status = GdipGetPropertySize(image, &total_size, &total_count);
3296 ok(prop_count == total_count,
3297 "expected total property count %u, got %u\n", prop_count, total_count);
3298 ok(prop_size == total_size,
3299 "expected total property size %u, got %u\n", prop_size, total_size);
3301 prop_item = HeapAlloc(GetProcessHeap(), 0, prop_size);
3303 status = GdipGetAllPropertyItems(image, 0, prop_count, prop_item);
3304 expect(InvalidParameter, status);
3305 status = GdipGetAllPropertyItems(image, prop_size, 1, prop_item);
3306 expect(InvalidParameter, status);
3307 status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL);
3308 expect(InvalidParameter, status);
3309 status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL);
3310 expect(InvalidParameter, status);
3311 status = GdipGetAllPropertyItems(image, 0, 0, NULL);
3312 expect(InvalidParameter, status);
3313 status = GdipGetAllPropertyItems(image, prop_size + 1, prop_count, prop_item);
3314 expect(InvalidParameter, status);
3315 status = GdipGetAllPropertyItems(image, prop_size, prop_count, prop_item);
3318 item_data = (const char *)(prop_item + prop_count);
3319 for (i = 0; i < prop_count; i++)
3321 ok(prop_item[i].value == item_data, "%u: expected value %p, got %p\n",
3322 i, item_data, prop_item[i].value);
3323 ok(td[i].type == prop_item[i].type,
3324 "%u: expected type %u, got %u\n", i, td[i].type, prop_item[i].type);
3325 ok(td[i].id == prop_item[i].id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item[i].id);
3326 ok(td[i].length == prop_item[i].length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item[i].length);
3327 if (td[i].length == prop_item[i].length)
3329 int match = memcmp(td[i].value, prop_item[i].value, td[i].length) == 0;
3330 ok(match, "%u: data mismatch\n", i);
3334 BYTE *data = prop_item[i].value;
3335 printf("id %#x:", prop_item[i].id);
3336 for (j = 0; j < prop_item[i].length; j++)
3337 printf(" %02x", data[j]);
3341 item_data += prop_item[i].length;
3344 HeapFree(GetProcessHeap(), 0, prop_item);
3346 GdipDisposeImage(image);
3349 static void test_tiff_palette(void)
3360 ARGB *entries = palette.pal.Entries;
3362 /* 1bpp TIFF without palette */
3363 image = load_image((const BYTE *)&TIFF_data, sizeof(TIFF_data));
3364 ok(image != 0, "Failed to load TIFF image data\n");
3367 status = GdipGetImagePixelFormat(image, &format);
3369 ok(format == PixelFormat1bppIndexed, "expected PixelFormat1bppIndexed, got %#x\n", format);
3371 status = GdipGetImagePaletteSize(image, &size);
3372 ok(status == Ok || broken(status == GenericError), /* XP */
3373 "GdipGetImagePaletteSize error %d\n", status);
3374 if (status == GenericError)
3376 GdipDisposeImage(image);
3379 expect(sizeof(ColorPalette) + sizeof(ARGB), size);
3381 status = GdipGetImagePalette(image, &palette.pal, size);
3383 expect(0, palette.pal.Flags);
3384 expect(2, palette.pal.Count);
3385 if (palette.pal.Count == 2)
3387 ok(entries[0] == 0xff000000, "expected 0xff000000, got %#x\n", entries[0]);
3388 ok(entries[1] == 0xffffffff, "expected 0xffffffff, got %#x\n", entries[1]);
3391 GdipDisposeImage(image);
3394 static void test_bitmapbits(void)
3397 static const BYTE pixels_24[48] =
3399 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3400 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3401 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3402 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0
3404 static const BYTE pixels_00[48] =
3406 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3407 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3408 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3409 0,0,0, 0,0,0, 0,0,0, 0,0,0
3411 static const BYTE pixels_24_77[64] =
3413 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3414 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3415 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3416 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3417 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3418 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3420 static const BYTE pixels_77[64] =
3422 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3423 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3424 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3425 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3426 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3427 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3428 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3429 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3431 static const BYTE pixels_8[16] =
3433 0x01,0,0x01,0,0x01,0,0x01,0,
3434 0x01,0,0x01,0,0x01,0,0x01,0
3436 static const BYTE pixels_8_77[64] =
3438 0x01,0,0x01,0,0x01,0,0x01,0,
3439 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3440 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3441 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3442 0x01,0,0x01,0,0x01,0,0x01,0,
3443 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3444 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3445 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3447 static const BYTE pixels_1_77[64] =
3449 0xaa,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3450 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3451 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3452 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3453 0xaa,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3454 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3455 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3456 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3458 static const BYTE pixels_1[8] = {0xaa,0,0,0,0xaa,0,0,0};
3459 static const struct test_data
3466 const BYTE *pixels_unlocked;
3470 { PixelFormat24bppRGB, 24, 0xfff0, 24, 48, pixels_24, pixels_00 },
3472 { PixelFormat24bppRGB, 24, 0, 24, 48, pixels_24, pixels_00 },
3473 { PixelFormat24bppRGB, 24, ImageLockModeRead, 24, 48, pixels_24, pixels_00 },
3474 { PixelFormat24bppRGB, 24, ImageLockModeWrite, 24, 48, pixels_24, pixels_00 },
3475 { PixelFormat24bppRGB, 24, ImageLockModeRead|ImageLockModeWrite, 24, 48, pixels_24, pixels_00 },
3476 { PixelFormat24bppRGB, 24, ImageLockModeRead|ImageLockModeUserInputBuf, 32, 64, pixels_24_77, pixels_24 },
3477 { PixelFormat24bppRGB, 24, ImageLockModeWrite|ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_00 },
3478 { PixelFormat24bppRGB, 24, ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_24 },
3480 { PixelFormat8bppIndexed, 8, 0, 8, 16, pixels_8, pixels_24 },
3481 { PixelFormat8bppIndexed, 8, ImageLockModeRead, 8, 16, pixels_8, pixels_24 },
3482 { PixelFormat8bppIndexed, 8, ImageLockModeWrite, 8, 16, pixels_8, pixels_00 },
3483 { PixelFormat8bppIndexed, 8, ImageLockModeRead|ImageLockModeWrite, 8, 16, pixels_8, pixels_00 },
3484 { PixelFormat8bppIndexed, 8, ImageLockModeRead|ImageLockModeUserInputBuf, 32, 64, pixels_8_77, pixels_24 },
3485 { PixelFormat8bppIndexed, 8, ImageLockModeWrite|ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_00 },
3486 { PixelFormat8bppIndexed, 8, ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_24 },
3488 { PixelFormat1bppIndexed, 1, 0, 4, 8, pixels_1, pixels_24 },
3489 { PixelFormat1bppIndexed, 1, ImageLockModeRead, 4, 8, pixels_1, pixels_24 },
3490 { PixelFormat1bppIndexed, 1, ImageLockModeWrite, 4, 8, pixels_1, pixels_00 },
3491 { PixelFormat1bppIndexed, 1, ImageLockModeRead|ImageLockModeWrite, 4, 8, pixels_1, pixels_00 },
3492 { PixelFormat1bppIndexed, 1, ImageLockModeRead|ImageLockModeUserInputBuf, 32, 64, pixels_1_77, pixels_24 },
3493 { PixelFormat1bppIndexed, 1, ImageLockModeWrite|ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_00 },
3494 { PixelFormat1bppIndexed, 1, ImageLockModeUserInputBuf, 32, 64, pixels_77, pixels_24 },
3506 ARGB *entries = palette.pal.Entries;
3508 for (i = 0; i < sizeof(td)/sizeof(td[0]); i++)
3510 BYTE pixels[sizeof(pixels_24)];
3511 memcpy(pixels, pixels_24, sizeof(pixels_24));
3512 status = GdipCreateBitmapFromScan0(8, 2, 24, PixelFormat24bppRGB, pixels, &bitmap);
3515 /* associate known palette with pixel data */
3516 palette.pal.Flags = PaletteFlagsGrayScale;
3517 palette.pal.Count = 2;
3518 entries[0] = 0xff000000;
3519 entries[1] = 0xffffffff;
3520 status = GdipSetImagePalette((GpImage *)bitmap, &palette.pal);
3523 memset(&data, 0xfe, sizeof(data));
3524 if (td[i].mode & ImageLockModeUserInputBuf)
3526 memset(buf, 0x77, sizeof(buf));
3530 status = GdipBitmapLockBits(bitmap, NULL, td[i].mode, td[i].format, &data);
3531 ok(status == Ok || broken(status == InvalidParameter) /* XP */, "%u: GdipBitmapLockBits error %d\n", i, status);
3534 GdipDisposeImage((GpImage *)bitmap);
3537 ok(data.Width == 8, "%u: expected 8, got %d\n", i, data.Width);
3538 ok(data.Height == 2, "%u: expected 2, got %d\n", i, data.Height);
3539 ok(td[i].stride == data.Stride, "%u: expected %d, got %d\n", i, td[i].stride, data.Stride);
3540 ok(td[i].format == data.PixelFormat, "%u: expected %d, got %d\n", i, td[i].format, data.PixelFormat);
3541 ok(td[i].size == data.Height * data.Stride, "%u: expected %d, got %d\n", i, td[i].size, data.Height * data.Stride);
3542 if (td[i].mode & ImageLockModeUserInputBuf)
3543 ok(data.Scan0 == buf, "%u: got wrong buffer\n", i);
3544 if (td[i].size == data.Height * data.Stride)
3546 UINT j, match, width_bytes = (data.Width * td[i].bpp) / 8;
3549 for (j = 0; j < data.Height; j++)
3551 if (memcmp((const BYTE *)data.Scan0 + j * data.Stride, td[i].pixels + j * data.Stride, width_bytes) != 0)
3557 if ((td[i].mode & (ImageLockModeRead|ImageLockModeUserInputBuf)) || td[i].format == PixelFormat24bppRGB)
3560 "%u: data should match\n", i);
3563 BYTE *bits = data.Scan0;
3564 printf("%u: data mismatch for format %#x:", i, td[i].format);
3565 for (j = 0; j < td[i].size; j++)
3566 printf(" %02x", bits[j]);
3571 ok(!match, "%u: data shouldn't match\n", i);
3573 memset(data.Scan0, 0, td[i].size);
3576 status = GdipBitmapUnlockBits(bitmap, &data);
3577 ok(status == Ok, "%u: GdipBitmapUnlockBits error %d\n", i, status);
3579 memset(&data, 0xfe, sizeof(data));
3580 status = GdipBitmapLockBits(bitmap, NULL, ImageLockModeRead, PixelFormat24bppRGB, &data);
3581 ok(status == Ok, "%u: GdipBitmapLockBits error %d\n", i, status);
3582 ok(data.Width == 8, "%u: expected 8, got %d\n", i, data.Width);
3583 ok(data.Height == 2, "%u: expected 2, got %d\n", i, data.Height);
3584 ok(data.Stride == 24, "%u: expected 24, got %d\n", i, data.Stride);
3585 ok(data.PixelFormat == PixelFormat24bppRGB, "%u: got wrong pixel format %d\n", i, data.PixelFormat);
3586 ok(data.Height * data.Stride == 48, "%u: expected 48, got %d\n", i, data.Height * data.Stride);
3587 if (data.Height * data.Stride == 48)
3589 int match = memcmp(data.Scan0, td[i].pixels_unlocked, 48) == 0;
3590 ok(match, "%u: data should match\n", i);
3594 BYTE *bits = data.Scan0;
3595 printf("%u: data mismatch for format %#x:", i, td[i].format);
3596 for (j = 0; j < 48; j++)
3597 printf(" %02x", bits[j]);
3602 status = GdipBitmapUnlockBits(bitmap, &data);
3603 ok(status == Ok, "%u: GdipBitmapUnlockBits error %d\n", i, status);
3605 status = GdipDisposeImage((GpImage *)bitmap);
3612 struct GdiplusStartupInput gdiplusStartupInput;
3613 ULONG_PTR gdiplusToken;
3615 gdiplusStartupInput.GdiplusVersion = 1;
3616 gdiplusStartupInput.DebugEventCallback = NULL;
3617 gdiplusStartupInput.SuppressBackgroundThread = 0;
3618 gdiplusStartupInput.SuppressExternalCodecs = 0;
3620 GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
3623 test_tiff_palette();
3624 test_GdipGetAllPropertyItems();
3625 test_tiff_properties();
3626 test_image_properties();
3629 test_GetImageDimension();
3630 test_GdipImageGetFrameDimensionsCount();
3631 test_LoadingImages();
3632 test_SavingImages();
3635 test_LockBits_UserBuf();
3636 test_GdipCreateBitmapFromHBITMAP();
3637 test_GdipGetImageFlags();
3638 test_GdipCloneImage();
3641 test_getrawformat();
3643 test_createfromwmf();
3645 test_createhbitmap();
3646 test_getthumbnail();
3651 test_multiframegif();
3657 GdiplusShutdown(gdiplusToken);