2 * Unit test suite for images
4 * Copyright (C) 2007 Google (Evan Stade)
5 * Copyright (C) 2012 Dmitry Timoshkov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/test.h"
33 #define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (UINT)(expected), (UINT)(got))
34 #define expectf(expected, got) ok(fabs((expected) - (got)) < 0.0001, "Expected %f, got %f\n", (expected), (got))
36 static BOOL
color_match(ARGB c1
, ARGB c2
, BYTE max_diff
)
38 if (abs((c1
& 0xff) - (c2
& 0xff)) > max_diff
) return FALSE
;
40 if (abs((c1
& 0xff) - (c2
& 0xff)) > max_diff
) return FALSE
;
42 if (abs((c1
& 0xff) - (c2
& 0xff)) > max_diff
) return FALSE
;
44 if (abs((c1
& 0xff) - (c2
& 0xff)) > max_diff
) return FALSE
;
48 static void expect_guid(REFGUID expected
, REFGUID got
, int line
, BOOL todo
)
54 StringFromGUID2(got
, bufferW
, sizeof(bufferW
)/sizeof(bufferW
[0]));
55 WideCharToMultiByte(CP_ACP
, 0, bufferW
, sizeof(bufferW
)/sizeof(bufferW
[0]), buffer
, sizeof(buffer
), NULL
, NULL
);
56 StringFromGUID2(expected
, bufferW
, sizeof(bufferW
)/sizeof(bufferW
[0]));
57 WideCharToMultiByte(CP_ACP
, 0, bufferW
, sizeof(bufferW
)/sizeof(bufferW
[0]), buffer2
, sizeof(buffer2
), NULL
, NULL
);
59 todo_wine
ok_(__FILE__
, line
)(IsEqualGUID(expected
, got
), "Expected %s, got %s\n", buffer2
, buffer
);
61 ok_(__FILE__
, line
)(IsEqualGUID(expected
, got
), "Expected %s, got %s\n", buffer2
, buffer
);
64 static void expect_rawformat(REFGUID expected
, GpImage
*img
, int line
, BOOL todo
)
69 stat
= GdipGetImageRawFormat(img
, &raw
);
70 ok_(__FILE__
, line
)(stat
== Ok
, "GdipGetImageRawFormat failed with %d\n", stat
);
71 if(stat
!= Ok
) return;
72 expect_guid(expected
, &raw
, line
, todo
);
75 static void test_bufferrawformat(void* buff
, int size
, REFGUID expected
, int line
, BOOL todo
)
84 hglob
= GlobalAlloc (0, size
);
85 data
= GlobalLock (hglob
);
86 memcpy(data
, buff
, size
);
87 GlobalUnlock(hglob
); data
= NULL
;
89 hres
= CreateStreamOnHGlobal(hglob
, TRUE
, &stream
);
90 ok_(__FILE__
, line
)(hres
== S_OK
, "Failed to create a stream\n");
91 if(hres
!= S_OK
) return;
93 stat
= GdipLoadImageFromStream(stream
, &img
);
94 ok_(__FILE__
, line
)(stat
== Ok
, "Failed to create a Bitmap\n");
96 IStream_Release(stream
);
100 expect_rawformat(expected
, img
, line
, todo
);
102 GdipDisposeImage(img
);
103 IStream_Release(stream
);
106 static void test_Scan0(void)
113 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB
, NULL
, &bm
);
115 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
117 GdipDisposeImage((GpImage
*)bm
);
119 bm
= (GpBitmap
*)0xdeadbeef;
120 stat
= GdipCreateBitmapFromScan0(10, -10, 10, PixelFormat24bppRGB
, NULL
, &bm
);
121 expect(InvalidParameter
, stat
);
122 ok( !bm
, "expected null bitmap\n" );
124 bm
= (GpBitmap
*)0xdeadbeef;
125 stat
= GdipCreateBitmapFromScan0(-10, 10, 10, PixelFormat24bppRGB
, NULL
, &bm
);
126 expect(InvalidParameter
, stat
);
127 ok( !bm
, "expected null bitmap\n" );
129 bm
= (GpBitmap
*)0xdeadbeef;
130 stat
= GdipCreateBitmapFromScan0(10, 0, 10, PixelFormat24bppRGB
, NULL
, &bm
);
131 expect(InvalidParameter
, stat
);
132 ok( !bm
, "expected null bitmap\n" );
135 stat
= GdipCreateBitmapFromScan0(10, 10, 12, PixelFormat24bppRGB
, buff
, &bm
);
137 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
139 GdipDisposeImage((GpImage
*)bm
);
141 bm
= (GpBitmap
*) 0xdeadbeef;
142 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB
, buff
, &bm
);
143 expect(InvalidParameter
, stat
);
144 ok( !bm
, "expected null bitmap\n" );
146 bm
= (GpBitmap
*)0xdeadbeef;
147 stat
= GdipCreateBitmapFromScan0(10, 10, 0, PixelFormat24bppRGB
, buff
, &bm
);
148 expect(InvalidParameter
, stat
);
149 ok( bm
== (GpBitmap
*)0xdeadbeef, "expected deadbeef bitmap\n" );
152 stat
= GdipCreateBitmapFromScan0(10, 10, -8, PixelFormat24bppRGB
, buff
, &bm
);
154 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
156 GdipDisposeImage((GpImage
*)bm
);
158 bm
= (GpBitmap
*)0xdeadbeef;
159 stat
= GdipCreateBitmapFromScan0(10, 10, -10, PixelFormat24bppRGB
, buff
, &bm
);
160 expect(InvalidParameter
, stat
);
161 ok( !bm
, "expected null bitmap\n" );
164 static void test_FromGdiDib(void)
169 BYTE rbmi
[sizeof(BITMAPINFOHEADER
)+256*sizeof(RGBQUAD
)];
170 BITMAPINFO
*bmi
= (BITMAPINFO
*)rbmi
;
175 memset(rbmi
, 0, sizeof(rbmi
));
177 bmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
178 bmi
->bmiHeader
.biWidth
= 10;
179 bmi
->bmiHeader
.biHeight
= 10;
180 bmi
->bmiHeader
.biPlanes
= 1;
181 bmi
->bmiHeader
.biBitCount
= 32;
182 bmi
->bmiHeader
.biCompression
= BI_RGB
;
184 stat
= GdipCreateBitmapFromGdiDib(NULL
, buff
, &bm
);
185 expect(InvalidParameter
, stat
);
187 stat
= GdipCreateBitmapFromGdiDib(bmi
, NULL
, &bm
);
188 expect(InvalidParameter
, stat
);
190 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, NULL
);
191 expect(InvalidParameter
, stat
);
193 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
195 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
198 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
200 expect(PixelFormat32bppRGB
, format
);
202 GdipDisposeImage((GpImage
*)bm
);
205 bmi
->bmiHeader
.biBitCount
= 24;
206 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
208 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
211 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
213 expect(PixelFormat24bppRGB
, format
);
215 GdipDisposeImage((GpImage
*)bm
);
218 bmi
->bmiHeader
.biBitCount
= 16;
219 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
221 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
224 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
226 expect(PixelFormat16bppRGB555
, format
);
228 GdipDisposeImage((GpImage
*)bm
);
231 bmi
->bmiHeader
.biBitCount
= 8;
232 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
234 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
237 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
239 expect(PixelFormat8bppIndexed
, format
);
241 GdipDisposeImage((GpImage
*)bm
);
244 bmi
->bmiHeader
.biBitCount
= 4;
245 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
247 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
250 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
252 expect(PixelFormat4bppIndexed
, format
);
254 GdipDisposeImage((GpImage
*)bm
);
257 bmi
->bmiHeader
.biBitCount
= 1;
258 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
260 ok(NULL
!= bm
, "Expected bitmap to be initialized\n");
263 stat
= GdipGetImagePixelFormat((GpImage
*)bm
, &format
);
265 expect(PixelFormat1bppIndexed
, format
);
267 GdipDisposeImage((GpImage
*)bm
);
270 bmi
->bmiHeader
.biBitCount
= 0;
271 stat
= GdipCreateBitmapFromGdiDib(bmi
, buff
, &bm
);
272 expect(InvalidParameter
, stat
);
275 static void test_GetImageDimension(void)
279 const REAL WIDTH
= 10.0, HEIGHT
= 20.0;
282 bm
= (GpBitmap
*)0xdeadbeef;
283 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
,NULL
, &bm
);
285 ok((GpBitmap
*)0xdeadbeef != bm
, "Expected bitmap to not be 0xdeadbeef\n");
286 ok(NULL
!= bm
, "Expected bitmap to not be NULL\n");
288 stat
= GdipGetImageDimension(NULL
,&w
,&h
);
289 expect(InvalidParameter
, stat
);
291 stat
= GdipGetImageDimension((GpImage
*)bm
,NULL
,&h
);
292 expect(InvalidParameter
, stat
);
294 stat
= GdipGetImageDimension((GpImage
*)bm
,&w
,NULL
);
295 expect(InvalidParameter
, stat
);
299 stat
= GdipGetImageDimension((GpImage
*)bm
,&w
,&h
);
303 GdipDisposeImage((GpImage
*)bm
);
306 static void test_GdipImageGetFrameDimensionsCount(void)
310 const REAL WIDTH
= 10.0, HEIGHT
= 20.0;
312 GUID dimension
= {0};
316 bm
= (GpBitmap
*)0xdeadbeef;
317 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
,NULL
, &bm
);
319 ok((GpBitmap
*)0xdeadbeef != bm
, "Expected bitmap to not be 0xdeadbeef\n");
320 ok(NULL
!= bm
, "Expected bitmap to not be NULL\n");
322 stat
= GdipImageGetFrameDimensionsCount(NULL
,&w
);
323 expect(InvalidParameter
, stat
);
325 stat
= GdipImageGetFrameDimensionsCount((GpImage
*)bm
,NULL
);
326 expect(InvalidParameter
, stat
);
329 stat
= GdipImageGetFrameDimensionsCount((GpImage
*)bm
,&w
);
333 stat
= GdipImageGetFrameDimensionsList((GpImage
*)bm
, &dimension
, 1);
335 expect_guid(&FrameDimensionPage
, &dimension
, __LINE__
, FALSE
);
337 stat
= GdipImageGetFrameDimensionsList((GpImage
*)bm
, &dimension
, 2);
338 expect(InvalidParameter
, stat
);
340 stat
= GdipImageGetFrameDimensionsList((GpImage
*)bm
, &dimension
, 0);
341 expect(InvalidParameter
, stat
);
343 stat
= GdipImageGetFrameCount(NULL
, &dimension
, &count
);
344 expect(InvalidParameter
, stat
);
346 /* WinXP crashes on this test */
349 stat
= GdipImageGetFrameCount((GpImage
*)bm
, &dimension
, NULL
);
350 expect(InvalidParameter
, stat
);
353 stat
= GdipImageGetFrameCount((GpImage
*)bm
, NULL
, &count
);
357 stat
= GdipImageGetFrameCount((GpImage
*)bm
, &dimension
, &count
);
361 GdipBitmapSetPixel(bm
, 0, 0, 0xffffffff);
363 stat
= GdipImageSelectActiveFrame((GpImage
*)bm
, &dimension
, 0);
366 /* SelectActiveFrame has no effect on image data of memory bitmaps */
368 GdipBitmapGetPixel(bm
, 0, 0, &color
);
369 expect(0xffffffff, color
);
371 GdipDisposeImage((GpImage
*)bm
);
374 static void test_LoadingImages(void)
378 stat
= GdipCreateBitmapFromFile(0, 0);
379 expect(InvalidParameter
, stat
);
381 stat
= GdipCreateBitmapFromFile(0, (GpBitmap
**)0xdeadbeef);
382 expect(InvalidParameter
, stat
);
384 stat
= GdipLoadImageFromFile(0, 0);
385 expect(InvalidParameter
, stat
);
387 stat
= GdipLoadImageFromFile(0, (GpImage
**)0xdeadbeef);
388 expect(InvalidParameter
, stat
);
390 stat
= GdipLoadImageFromFileICM(0, 0);
391 expect(InvalidParameter
, stat
);
393 stat
= GdipLoadImageFromFileICM(0, (GpImage
**)0xdeadbeef);
394 expect(InvalidParameter
, stat
);
397 static void test_SavingImages(void)
403 const REAL WIDTH
= 10.0, HEIGHT
= 20.0;
405 ImageCodecInfo
*codecs
;
406 static const CHAR filenameA
[] = "a.bmp";
407 static const WCHAR filename
[] = { 'a','.','b','m','p',0 };
411 stat
= GdipSaveImageToFile(0, 0, 0, 0);
412 expect(InvalidParameter
, stat
);
415 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
421 stat
= GdipSaveImageToFile((GpImage
*)bm
, 0, 0, 0);
422 expect(InvalidParameter
, stat
);
424 stat
= GdipSaveImageToFile((GpImage
*)bm
, filename
, 0, 0);
425 expect(InvalidParameter
, stat
);
427 /* encoder tests should succeed -- already tested */
428 stat
= GdipGetImageEncodersSize(&n
, &s
);
429 if (stat
!= Ok
|| n
== 0) goto cleanup
;
431 codecs
= GdipAlloc(s
);
432 if (!codecs
) goto cleanup
;
434 stat
= GdipGetImageEncoders(n
, s
, codecs
);
435 if (stat
!= Ok
) goto cleanup
;
437 stat
= GdipSaveImageToFile((GpImage
*)bm
, filename
, &codecs
[0].Clsid
, 0);
440 GdipDisposeImage((GpImage
*)bm
);
443 /* re-load and check image stats */
444 stat
= GdipLoadImageFromFile(filename
, (GpImage
**)&bm
);
446 if (stat
!= Ok
) goto cleanup
;
448 stat
= GdipGetImageDimension((GpImage
*)bm
, &w
, &h
);
449 if (stat
!= Ok
) goto cleanup
;
457 GdipDisposeImage((GpImage
*)bm
);
458 ok(DeleteFileA(filenameA
), "Delete failed.\n");
461 static void test_encoders(void)
466 ImageCodecInfo
*codecs
;
470 static const CHAR bmp_format
[] = "BMP";
472 stat
= GdipGetImageEncodersSize(&n
, &s
);
475 codecs
= GdipAlloc(s
);
479 stat
= GdipGetImageEncoders(n
, s
, NULL
);
480 expect(GenericError
, stat
);
482 stat
= GdipGetImageEncoders(0, s
, codecs
);
483 expect(GenericError
, stat
);
485 stat
= GdipGetImageEncoders(n
, s
-1, codecs
);
486 expect(GenericError
, stat
);
488 stat
= GdipGetImageEncoders(n
, s
+1, codecs
);
489 expect(GenericError
, stat
);
491 stat
= GdipGetImageEncoders(n
, s
, codecs
);
495 for (i
= 0; i
< n
; i
++)
499 WideCharToMultiByte(CP_ACP
, 0, codecs
[i
].FormatDescription
, -1,
502 if (CompareStringA(LOCALE_SYSTEM_DEFAULT
, 0,
504 bmp_format
, -1) == CSTR_EQUAL
) {
510 ok(FALSE
, "No BMP codec found.\n");
515 static void test_LockBits(void)
521 const INT WIDTH
= 10, HEIGHT
= 20;
526 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
534 stat
= GdipBitmapSetPixel(bm
, 2, 3, 0xffc30000);
537 stat
= GdipBitmapSetPixel(bm
, 2, 8, 0xff480000);
541 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
545 expect(0xc3, ((BYTE
*)bd
.Scan0
)[2]);
546 expect(0x48, ((BYTE
*)bd
.Scan0
)[2 + bd
.Stride
* 5]);
548 ((char*)bd
.Scan0
)[2] = 0xff;
550 stat
= GdipBitmapUnlockBits(bm
, &bd
);
554 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
556 expect(0xffff0000, color
);
558 stat
= GdipBitmapSetPixel(bm
, 2, 3, 0xffc30000);
561 /* read-only, with NULL rect -> whole bitmap lock */
562 stat
= GdipBitmapLockBits(bm
, NULL
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
564 expect(bd
.Width
, WIDTH
);
565 expect(bd
.Height
, HEIGHT
);
568 ((char*)bd
.Scan0
)[2 + 2*3 + 3*bd
.Stride
] = 0xff;
570 stat
= GdipBitmapUnlockBits(bm
, &bd
);
574 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
576 expect(0xffff0000, color
);
578 /* read-only, consecutive */
579 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
583 stat
= GdipBitmapUnlockBits(bm
, &bd
);
587 stat
= GdipDisposeImage((GpImage
*)bm
);
589 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
593 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
595 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
596 expect(WrongState
, stat
);
598 stat
= GdipBitmapUnlockBits(bm
, &bd
);
601 stat
= GdipDisposeImage((GpImage
*)bm
);
603 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
606 stat
= GdipBitmapSetPixel(bm
, 2, 3, 0xffff0000);
609 stat
= GdipBitmapSetPixel(bm
, 2, 8, 0xffc30000);
612 /* write, no conversion */
613 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
, PixelFormat24bppRGB
, &bd
);
617 /* all bits are readable, inside the rect or not */
618 expect(0xff, ((BYTE
*)bd
.Scan0
)[2]);
619 expect(0xc3, ((BYTE
*)bd
.Scan0
)[2 + bd
.Stride
* 5]);
621 stat
= GdipBitmapUnlockBits(bm
, &bd
);
625 /* read, conversion */
626 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat32bppARGB
, &bd
);
630 expect(0xff, ((BYTE
*)bd
.Scan0
)[2]);
632 /* Areas outside the rectangle appear to be uninitialized */
633 ok(0xc3 != ((BYTE
*)bd
.Scan0
)[2 + bd
.Stride
* 5], "original image bits are readable\n");
635 ((BYTE
*)bd
.Scan0
)[2] = 0xc3;
637 stat
= GdipBitmapUnlockBits(bm
, &bd
);
641 /* writes do not work in read mode if there was a conversion */
642 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
644 expect(0xffff0000, color
);
646 /* read/write, conversion */
647 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
|ImageLockModeWrite
, PixelFormat32bppARGB
, &bd
);
651 expect(0xff, ((BYTE
*)bd
.Scan0
)[2]);
652 ((BYTE
*)bd
.Scan0
)[1] = 0x88;
654 /* Areas outside the rectangle appear to be uninitialized */
655 ok(0xc3 != ((BYTE
*)bd
.Scan0
)[2 + bd
.Stride
* 5], "original image bits are readable\n");
657 stat
= GdipBitmapUnlockBits(bm
, &bd
);
661 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
663 expect(0xffff8800, color
);
665 /* write, conversion */
666 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
, PixelFormat32bppARGB
, &bd
);
672 /* This is completely uninitialized. */
673 ok(0xff != ((BYTE
*)bd
.Scan0
)[2], "original image bits are readable\n");
674 ok(0xc3 != ((BYTE
*)bd
.Scan0
)[2 + bd
.Stride
* 5], "original image bits are readable\n");
677 /* Initialize the buffer so the unlock doesn't access undefined memory */
679 memset(((BYTE
*)bd
.Scan0
) + bd
.Stride
* y
, 0, 12);
681 ((BYTE
*)bd
.Scan0
)[0] = 0x12;
682 ((BYTE
*)bd
.Scan0
)[1] = 0x34;
683 ((BYTE
*)bd
.Scan0
)[2] = 0x56;
685 stat
= GdipBitmapUnlockBits(bm
, &bd
);
689 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
691 expect(0xff563412, color
);
693 stat
= GdipBitmapGetPixel(bm
, 2, 8, &color
);
695 expect(0xffc30000, color
);
697 stat
= GdipDisposeImage((GpImage
*)bm
);
699 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
702 /* write, no modification */
703 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
, PixelFormat24bppRGB
, &bd
);
707 stat
= GdipBitmapUnlockBits(bm
, &bd
);
711 /* write, consecutive */
712 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
, PixelFormat24bppRGB
, &bd
);
716 stat
= GdipBitmapUnlockBits(bm
, &bd
);
720 stat
= GdipDisposeImage((GpImage
*)bm
);
722 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
726 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
, PixelFormat24bppRGB
, &bd
);
731 ((char*)bd
.Scan0
)[2] = 0xff;
733 stat
= GdipBitmapUnlockBits(bm
, &bd
);
737 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
739 expect(0xffff0000, color
);
741 stat
= GdipDisposeImage((GpImage
*)bm
);
745 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
747 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
, PixelFormat24bppRGB
, &bd
);
749 stat
= GdipDisposeImage((GpImage
*)bm
);
753 static void test_LockBits_UserBuf(void)
759 const INT WIDTH
= 10, HEIGHT
= 20;
764 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat32bppARGB
, NULL
, &bm
);
767 memset(bits
, 0xaa, sizeof(bits
));
776 bd
.Stride
= WIDTH
* 4;
777 bd
.PixelFormat
= PixelFormat32bppARGB
;
778 bd
.Scan0
= &bits
[2+3*WIDTH
];
779 bd
.Reserved
= 0xaaaaaaaa;
782 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
|ImageLockModeUserInputBuf
, PixelFormat32bppARGB
, &bd
);
785 expect(0xaaaaaaaa, bits
[0]);
786 expect(0, bits
[2+3*WIDTH
]);
788 bits
[2+3*WIDTH
] = 0xdeadbeef;
791 stat
= GdipBitmapUnlockBits(bm
, &bd
);
795 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
800 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeWrite
|ImageLockModeUserInputBuf
, PixelFormat32bppARGB
, &bd
);
803 expect(0xdeadbeef, bits
[2+3*WIDTH
]);
804 bits
[2+3*WIDTH
] = 0x12345678;
807 stat
= GdipBitmapUnlockBits(bm
, &bd
);
811 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
813 expect(0x12345678, color
);
818 stat
= GdipBitmapLockBits(bm
, &rect
, ImageLockModeRead
|ImageLockModeWrite
|ImageLockModeUserInputBuf
, PixelFormat32bppARGB
, &bd
);
821 expect(0x12345678, bits
[2+3*WIDTH
]);
822 bits
[2+3*WIDTH
] = 0xdeadbeef;
825 stat
= GdipBitmapUnlockBits(bm
, &bd
);
829 stat
= GdipBitmapGetPixel(bm
, 2, 3, &color
);
831 expect(0xdeadbeef, color
);
833 stat
= GdipDisposeImage((GpImage
*)bm
);
837 struct BITMAPINFOWITHBITFIELDS
839 BITMAPINFOHEADER bmiHeader
;
843 union BITMAPINFOUNION
846 struct BITMAPINFOWITHBITFIELDS bf
;
849 static void test_GdipCreateBitmapFromHBITMAP(void)
851 GpBitmap
* gpbm
= NULL
;
853 HPALETTE hpal
= NULL
;
856 LOGPALETTE
* LogPal
= NULL
;
858 const REAL WIDTH1
= 5;
859 const REAL HEIGHT1
= 15;
860 const REAL WIDTH2
= 10;
861 const REAL HEIGHT2
= 20;
863 union BITMAPINFOUNION bmi
;
867 stat
= GdipCreateBitmapFromHBITMAP(NULL
, NULL
, NULL
);
868 expect(InvalidParameter
, stat
);
870 hbm
= CreateBitmap(WIDTH1
, HEIGHT1
, 1, 1, NULL
);
871 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, NULL
);
872 expect(InvalidParameter
, stat
);
874 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
876 expect(Ok
, GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
));
877 expectf(WIDTH1
, width
);
878 expectf(HEIGHT1
, height
);
880 GdipDisposeImage((GpImage
*)gpbm
);
883 memset(buff
, 0, sizeof(buff
));
884 hbm
= CreateBitmap(WIDTH2
, HEIGHT2
, 1, 1, &buff
);
885 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
888 expect_rawformat(&ImageFormatMemoryBMP
, (GpImage
*)gpbm
, __LINE__
, FALSE
);
890 expect(Ok
, GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
));
891 expectf(WIDTH2
, width
);
892 expectf(HEIGHT2
, height
);
894 GdipDisposeImage((GpImage
*)gpbm
);
897 hdc
= CreateCompatibleDC(0);
898 ok(hdc
!= NULL
, "CreateCompatibleDC failed\n");
899 bmi
.bi
.bmiHeader
.biSize
= sizeof(bmi
.bi
.bmiHeader
);
900 bmi
.bi
.bmiHeader
.biHeight
= HEIGHT1
;
901 bmi
.bi
.bmiHeader
.biWidth
= WIDTH1
;
902 bmi
.bi
.bmiHeader
.biBitCount
= 24;
903 bmi
.bi
.bmiHeader
.biPlanes
= 1;
904 bmi
.bi
.bmiHeader
.biCompression
= BI_RGB
;
905 bmi
.bi
.bmiHeader
.biClrUsed
= 0;
907 hbm
= CreateDIBSection(hdc
, &bmi
.bi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
908 ok(hbm
!= NULL
, "CreateDIBSection failed\n");
912 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
914 expect(Ok
, GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
));
915 expectf(WIDTH1
, width
);
916 expectf(HEIGHT1
, height
);
919 /* test whether writing to the bitmap affects the original */
920 stat
= GdipBitmapSetPixel(gpbm
, 0, 0, 0xffffffff);
925 GdipDisposeImage((GpImage
*)gpbm
);
928 LogPal
= GdipAlloc(sizeof(LOGPALETTE
));
929 ok(LogPal
!= NULL
, "unable to allocate LOGPALETTE\n");
930 LogPal
->palVersion
= 0x300;
931 LogPal
->palNumEntries
= 1;
932 hpal
= CreatePalette(LogPal
);
933 ok(hpal
!= NULL
, "CreatePalette failed\n");
936 stat
= GdipCreateBitmapFromHBITMAP(hbm
, hpal
, &gpbm
);
940 GdipDisposeImage((GpImage
*)gpbm
);
945 /* 16-bit 555 dib, rgb */
946 bmi
.bi
.bmiHeader
.biBitCount
= 16;
947 bmi
.bi
.bmiHeader
.biCompression
= BI_RGB
;
949 hbm
= CreateDIBSection(hdc
, &bmi
.bi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
950 ok(hbm
!= NULL
, "CreateDIBSection failed\n");
954 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
959 stat
= GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
);
961 expectf(WIDTH1
, width
);
962 expectf(HEIGHT1
, height
);
964 stat
= GdipGetImagePixelFormat((GpImage
*) gpbm
, &format
);
966 expect(PixelFormat16bppRGB555
, format
);
968 GdipDisposeImage((GpImage
*)gpbm
);
972 /* 16-bit 555 dib, with bitfields */
973 bmi
.bi
.bmiHeader
.biSize
= sizeof(bmi
);
974 bmi
.bi
.bmiHeader
.biCompression
= BI_BITFIELDS
;
975 bmi
.bf
.masks
[0] = 0x7c00;
976 bmi
.bf
.masks
[1] = 0x3e0;
977 bmi
.bf
.masks
[2] = 0x1f;
979 hbm
= CreateDIBSection(hdc
, &bmi
.bi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
980 ok(hbm
!= NULL
, "CreateDIBSection failed\n");
984 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
989 stat
= GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
);
991 expectf(WIDTH1
, width
);
992 expectf(HEIGHT1
, height
);
994 stat
= GdipGetImagePixelFormat((GpImage
*) gpbm
, &format
);
996 expect(PixelFormat16bppRGB555
, format
);
998 GdipDisposeImage((GpImage
*)gpbm
);
1002 /* 16-bit 565 dib, with bitfields */
1003 bmi
.bf
.masks
[0] = 0xf800;
1004 bmi
.bf
.masks
[1] = 0x7e0;
1005 bmi
.bf
.masks
[2] = 0x1f;
1007 hbm
= CreateDIBSection(hdc
, &bmi
.bi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
1008 ok(hbm
!= NULL
, "CreateDIBSection failed\n");
1012 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, &gpbm
);
1017 stat
= GdipGetImageDimension((GpImage
*) gpbm
, &width
, &height
);
1019 expectf(WIDTH1
, width
);
1020 expectf(HEIGHT1
, height
);
1022 stat
= GdipGetImagePixelFormat((GpImage
*) gpbm
, &format
);
1024 expect(PixelFormat16bppRGB565
, format
);
1026 GdipDisposeImage((GpImage
*)gpbm
);
1033 static void test_GdipGetImageFlags(void)
1039 img
= (GpImage
*)0xdeadbeef;
1041 stat
= GdipGetImageFlags(NULL
, NULL
);
1042 expect(InvalidParameter
, stat
);
1044 stat
= GdipGetImageFlags(NULL
, &flags
);
1045 expect(InvalidParameter
, stat
);
1047 stat
= GdipGetImageFlags(img
, NULL
);
1048 expect(InvalidParameter
, stat
);
1050 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat1bppIndexed
, NULL
, (GpBitmap
**)&img
);
1052 stat
= GdipGetImageFlags(img
, &flags
);
1054 expect(ImageFlagsHasAlpha
, flags
);
1055 GdipDisposeImage(img
);
1057 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat4bppIndexed
, NULL
, (GpBitmap
**)&img
);
1059 stat
= GdipGetImageFlags(img
, &flags
);
1061 expect(ImageFlagsHasAlpha
, flags
);
1062 GdipDisposeImage(img
);
1064 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat8bppIndexed
, NULL
, (GpBitmap
**)&img
);
1066 stat
= GdipGetImageFlags(img
, &flags
);
1068 expect(ImageFlagsHasAlpha
, flags
);
1069 GdipDisposeImage(img
);
1071 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppGrayScale
, NULL
, (GpBitmap
**)&img
);
1073 stat
= GdipGetImageFlags(img
, &flags
);
1075 expect(ImageFlagsNone
, flags
);
1076 GdipDisposeImage(img
);
1078 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB555
, NULL
, (GpBitmap
**)&img
);
1080 stat
= GdipGetImageFlags(img
, &flags
);
1082 expect(ImageFlagsNone
, flags
);
1083 GdipDisposeImage(img
);
1085 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB565
, NULL
, (GpBitmap
**)&img
);
1087 stat
= GdipGetImageFlags(img
, &flags
);
1089 expect(ImageFlagsNone
, flags
);
1090 GdipDisposeImage(img
);
1092 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppARGB1555
, NULL
, (GpBitmap
**)&img
);
1094 stat
= GdipGetImageFlags(img
, &flags
);
1096 expect(ImageFlagsHasAlpha
, flags
);
1097 GdipDisposeImage(img
);
1099 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB
, NULL
, (GpBitmap
**)&img
);
1101 stat
= GdipGetImageFlags(img
, &flags
);
1103 expect(ImageFlagsNone
, flags
);
1104 GdipDisposeImage(img
);
1106 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppRGB
, NULL
, (GpBitmap
**)&img
);
1108 stat
= GdipGetImageFlags(img
, &flags
);
1110 expect(ImageFlagsNone
, flags
);
1111 GdipDisposeImage(img
);
1113 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppARGB
, NULL
, (GpBitmap
**)&img
);
1115 stat
= GdipGetImageFlags(img
, &flags
);
1117 expect(ImageFlagsHasAlpha
, flags
);
1118 GdipDisposeImage(img
);
1120 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppPARGB
, NULL
, (GpBitmap
**)&img
);
1122 stat
= GdipGetImageFlags(img
, &flags
);
1124 expect(ImageFlagsHasAlpha
, flags
);
1125 GdipDisposeImage(img
);
1127 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat48bppRGB
, NULL
, (GpBitmap
**)&img
);
1131 stat
= GdipGetImageFlags(img
, &flags
);
1133 expect(ImageFlagsNone
, flags
);
1134 GdipDisposeImage(img
);
1137 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppARGB
, NULL
, (GpBitmap
**)&img
);
1142 stat
= GdipGetImageFlags(img
, &flags
);
1144 expect(ImageFlagsHasAlpha
, flags
);
1145 GdipDisposeImage(img
);
1148 stat
= GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppPARGB
, NULL
, (GpBitmap
**)&img
);
1153 stat
= GdipGetImageFlags(img
, &flags
);
1155 expect(ImageFlagsHasAlpha
, flags
);
1156 GdipDisposeImage(img
);
1160 static void test_GdipCloneImage(void)
1166 GpImage
*image_src
, *image_dest
= NULL
;
1167 const INT WIDTH
= 10, HEIGHT
= 20;
1169 /* Create an image, clone it, delete the original, make sure the copy works */
1170 stat
= GdipCreateBitmapFromScan0(WIDTH
, HEIGHT
, 0, PixelFormat24bppRGB
, NULL
, &bm
);
1172 expect_rawformat(&ImageFormatMemoryBMP
, (GpImage
*)bm
, __LINE__
, FALSE
);
1174 image_src
= ((GpImage
*)bm
);
1175 stat
= GdipCloneImage(image_src
, &image_dest
);
1177 expect_rawformat(&ImageFormatMemoryBMP
, image_dest
, __LINE__
, FALSE
);
1179 stat
= GdipDisposeImage((GpImage
*)bm
);
1181 stat
= GdipGetImageBounds(image_dest
, &rectF
, &unit
);
1184 /* Treat FP values carefully */
1185 expectf((REAL
)WIDTH
, rectF
.Width
);
1186 expectf((REAL
)HEIGHT
, rectF
.Height
);
1188 stat
= GdipDisposeImage(image_dest
);
1192 static void test_testcontrol(void)
1198 stat
= GdipTestControl(TestControlGetBuildNumber
, ¶m
);
1200 ok(param
!= 0, "Build number expected, got %u\n", param
);
1203 static void test_fromhicon(void)
1205 static const BYTE bmp_bits
[1024];
1206 HBITMAP hbmMask
, hbmColor
;
1210 GpBitmap
*bitmap
= NULL
;
1216 stat
= GdipCreateBitmapFromHICON(NULL
, NULL
);
1217 expect(InvalidParameter
, stat
);
1218 stat
= GdipCreateBitmapFromHICON(NULL
, &bitmap
);
1219 expect(InvalidParameter
, stat
);
1221 /* color icon 1 bit */
1222 hbmMask
= CreateBitmap(16, 16, 1, 1, bmp_bits
);
1223 ok(hbmMask
!= 0, "CreateBitmap failed\n");
1224 hbmColor
= CreateBitmap(16, 16, 1, 1, bmp_bits
);
1225 ok(hbmColor
!= 0, "CreateBitmap failed\n");
1229 info
.hbmMask
= hbmMask
;
1230 info
.hbmColor
= hbmColor
;
1231 hIcon
= CreateIconIndirect(&info
);
1232 ok(hIcon
!= 0, "CreateIconIndirect failed\n");
1233 DeleteObject(hbmMask
);
1234 DeleteObject(hbmColor
);
1236 stat
= GdipCreateBitmapFromHICON(hIcon
, &bitmap
);
1238 broken(stat
== InvalidParameter
), /* Win98 */
1239 "Expected Ok, got %.8x\n", stat
);
1241 /* check attributes */
1242 stat
= GdipGetImageHeight((GpImage
*)bitmap
, &dim
);
1245 stat
= GdipGetImageWidth((GpImage
*)bitmap
, &dim
);
1248 stat
= GdipGetImageType((GpImage
*)bitmap
, &type
);
1250 expect(ImageTypeBitmap
, type
);
1251 stat
= GdipGetImagePixelFormat((GpImage
*)bitmap
, &format
);
1253 expect(PixelFormat32bppARGB
, format
);
1255 expect_rawformat(&ImageFormatMemoryBMP
, (GpImage
*)bitmap
, __LINE__
, FALSE
);
1256 GdipDisposeImage((GpImage
*)bitmap
);
1260 /* color icon 8 bpp */
1261 hbmMask
= CreateBitmap(16, 16, 1, 8, bmp_bits
);
1262 ok(hbmMask
!= 0, "CreateBitmap failed\n");
1263 hbmColor
= CreateBitmap(16, 16, 1, 8, bmp_bits
);
1264 ok(hbmColor
!= 0, "CreateBitmap failed\n");
1268 info
.hbmMask
= hbmMask
;
1269 info
.hbmColor
= hbmColor
;
1270 hIcon
= CreateIconIndirect(&info
);
1271 ok(hIcon
!= 0, "CreateIconIndirect failed\n");
1272 DeleteObject(hbmMask
);
1273 DeleteObject(hbmColor
);
1275 stat
= GdipCreateBitmapFromHICON(hIcon
, &bitmap
);
1278 /* check attributes */
1279 stat
= GdipGetImageHeight((GpImage
*)bitmap
, &dim
);
1282 stat
= GdipGetImageWidth((GpImage
*)bitmap
, &dim
);
1285 stat
= GdipGetImageType((GpImage
*)bitmap
, &type
);
1287 expect(ImageTypeBitmap
, type
);
1288 stat
= GdipGetImagePixelFormat((GpImage
*)bitmap
, &format
);
1290 expect(PixelFormat32bppARGB
, format
);
1292 expect_rawformat(&ImageFormatMemoryBMP
, (GpImage
*)bitmap
, __LINE__
, FALSE
);
1293 GdipDisposeImage((GpImage
*)bitmap
);
1299 static const unsigned char pngimage
[285] = {
1300 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
1301 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x90,0x77,0x53,
1302 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,
1303 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,0x07,0xd5,
1304 0x06,0x03,0x0f,0x07,0x2d,0x12,0x10,0xf0,0xfd,0x00,0x00,0x00,0x0c,0x49,0x44,0x41,
1305 0x54,0x08,0xd7,0x63,0xf8,0xff,0xff,0x3f,0x00,0x05,0xfe,0x02,0xfe,0xdc,0xcc,0x59,
1306 0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
1309 static const unsigned char gifimage
[35] = {
1310 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x00,0xff,0xff,0xff,
1311 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44,
1315 static const unsigned char bmpimage
[66] = {
1316 0x42,0x4d,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x28,0x00,
1317 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,
1318 0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x12,0x0b,0x00,0x00,0x02,0x00,
1319 0x00,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,
1323 static const unsigned char jpgimage
[285] = {
1324 0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x01,0x2c,
1325 0x01,0x2c,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x05,0x03,0x04,0x04,0x04,0x03,0x05,
1326 0x04,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x0c,0x08,0x07,0x07,0x07,0x07,0x0f,0x0b,
1327 0x0b,0x09,0x0c,0x11,0x0f,0x12,0x12,0x11,0x0f,0x11,0x11,0x13,0x16,0x1c,0x17,0x13,
1328 0x14,0x1a,0x15,0x11,0x11,0x18,0x21,0x18,0x1a,0x1d,0x1d,0x1f,0x1f,0x1f,0x13,0x17,
1329 0x22,0x24,0x22,0x1e,0x24,0x1c,0x1e,0x1f,0x1e,0xff,0xdb,0x00,0x43,0x01,0x05,0x05,
1330 0x05,0x07,0x06,0x07,0x0e,0x08,0x08,0x0e,0x1e,0x14,0x11,0x14,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,0x1e,0x1e,
1333 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0xff,0xc0,
1334 0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
1335 0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1336 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00,
1337 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4,
1338 0x00,0x14,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1339 0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
1340 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,0x03,0x01,
1341 0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xb2,0xc0,0x07,0xff,0xd9
1343 /* 1x1 pixel tiff */
1344 static const unsigned char tiffimage
[] = {
1345 0x49,0x49,0x2a,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xfe,0x00,
1346 0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x00,
1347 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1348 0x00,0x00,0x02,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0xd2,0x00,0x00,0x00,0x03,0x01,
1349 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x01,0x00,
1350 0x00,0x00,0x02,0x00,0x00,0x00,0x0d,0x01,0x02,0x00,0x1b,0x00,0x00,0x00,0xd8,0x00,
1351 0x00,0x00,0x11,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x01,
1352 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x15,0x01,0x03,0x00,0x01,0x00,
1353 0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x40,0x00,
1354 0x00,0x00,0x17,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1a,0x01,
1355 0x05,0x00,0x01,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0x1b,0x01,0x05,0x00,0x01,0x00,
1356 0x00,0x00,0xfc,0x00,0x00,0x00,0x1c,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,
1357 0x00,0x00,0x28,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,
1358 0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x6d,0x65,
1359 0x68,0x2f,0x44,0x65,0x73,0x6b,0x74,0x6f,0x70,0x2f,0x74,0x65,0x73,0x74,0x2e,0x74,
1360 0x69,0x66,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48,
1363 /* 320x320 twip wmf */
1364 static const unsigned char wmfimage
[180] = {
1365 0xd7,0xcd,0xc6,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x01,0x40,0x01,0xa0,0x05,
1366 0x00,0x00,0x00,0x00,0xb1,0x52,0x01,0x00,0x09,0x00,0x00,0x03,0x4f,0x00,0x00,0x00,
1367 0x0f,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x0b,0x02,0x00,0x00,
1368 0x00,0x00,0x05,0x00,0x00,0x00,0x0c,0x02,0x40,0x01,0x40,0x01,0x04,0x00,0x00,0x00,
1369 0x02,0x01,0x01,0x00,0x04,0x00,0x00,0x00,0x04,0x01,0x0d,0x00,0x08,0x00,0x00,0x00,
1370 0xfa,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
1371 0x2d,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,0x01,0x00,0x00,0x00,0x00,0x00,
1372 0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,
1373 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x02,0x00,
1374 0x07,0x00,0x00,0x00,0x1b,0x04,0x40,0x01,0x40,0x01,0x00,0x00,0x00,0x00,0x04,0x00,
1375 0x00,0x00,0xf0,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0xf0,0x01,0x01,0x00,0x03,0x00,
1378 static void test_getrawformat(void)
1380 test_bufferrawformat((void*)pngimage
, sizeof(pngimage
), &ImageFormatPNG
, __LINE__
, FALSE
);
1381 test_bufferrawformat((void*)gifimage
, sizeof(gifimage
), &ImageFormatGIF
, __LINE__
, FALSE
);
1382 test_bufferrawformat((void*)bmpimage
, sizeof(bmpimage
), &ImageFormatBMP
, __LINE__
, FALSE
);
1383 test_bufferrawformat((void*)jpgimage
, sizeof(jpgimage
), &ImageFormatJPEG
, __LINE__
, FALSE
);
1384 test_bufferrawformat((void*)tiffimage
, sizeof(tiffimage
), &ImageFormatTIFF
, __LINE__
, FALSE
);
1385 test_bufferrawformat((void*)wmfimage
, sizeof(wmfimage
), &ImageFormatWMF
, __LINE__
, FALSE
);
1388 static void test_loadwmf(void)
1399 MetafileHeader header
;
1401 hglob
= GlobalAlloc (0, sizeof(wmfimage
));
1402 data
= GlobalLock (hglob
);
1403 memcpy(data
, wmfimage
, sizeof(wmfimage
));
1404 GlobalUnlock(hglob
); data
= NULL
;
1406 hres
= CreateStreamOnHGlobal(hglob
, TRUE
, &stream
);
1407 ok(hres
== S_OK
, "Failed to create a stream\n");
1408 if(hres
!= S_OK
) return;
1410 stat
= GdipLoadImageFromStream(stream
, &img
);
1411 ok(stat
== Ok
, "Failed to create a Bitmap\n");
1413 IStream_Release(stream
);
1417 IStream_Release(stream
);
1419 stat
= GdipGetImageBounds(img
, &bounds
, &unit
);
1421 todo_wine
expect(UnitPixel
, unit
);
1422 expectf(0.0, bounds
.X
);
1423 expectf(0.0, bounds
.Y
);
1424 todo_wine
expectf(320.0, bounds
.Width
);
1425 todo_wine
expectf(320.0, bounds
.Height
);
1427 stat
= GdipGetImageHorizontalResolution(img
, &res
);
1429 todo_wine
expectf(1440.0, res
);
1431 stat
= GdipGetImageVerticalResolution(img
, &res
);
1433 todo_wine
expectf(1440.0, res
);
1435 memset(&header
, 0, sizeof(header
));
1436 stat
= GdipGetMetafileHeaderFromMetafile((GpMetafile
*)img
, &header
);
1440 todo_wine
expect(MetafileTypeWmfPlaceable
, header
.Type
);
1441 todo_wine
expect(sizeof(wmfimage
)-sizeof(WmfPlaceableFileHeader
), header
.Size
);
1442 todo_wine
expect(0x300, header
.Version
);
1443 expect(0, header
.EmfPlusFlags
);
1444 todo_wine
expectf(1440.0, header
.DpiX
);
1445 todo_wine
expectf(1440.0, header
.DpiY
);
1446 expect(0, header
.X
);
1447 expect(0, header
.Y
);
1448 todo_wine
expect(320, header
.Width
);
1449 todo_wine
expect(320, header
.Height
);
1450 todo_wine
expect(1, U(header
).WmfHeader
.mtType
);
1451 expect(0, header
.EmfPlusHeaderSize
);
1452 expect(0, header
.LogicalDpiX
);
1453 expect(0, header
.LogicalDpiY
);
1456 GdipDisposeImage(img
);
1459 static void test_createfromwmf(void)
1467 MetafileHeader header
;
1469 hwmf
= SetMetaFileBitsEx(sizeof(wmfimage
)-sizeof(WmfPlaceableFileHeader
),
1470 wmfimage
+sizeof(WmfPlaceableFileHeader
));
1471 ok(hwmf
!= 0, "SetMetaFileBitsEx failed\n");
1473 stat
= GdipCreateMetafileFromWmf(hwmf
, TRUE
,
1474 (WmfPlaceableFileHeader
*)wmfimage
, (GpMetafile
**)&img
);
1477 stat
= GdipGetImageBounds(img
, &bounds
, &unit
);
1479 expect(UnitPixel
, unit
);
1480 expectf(0.0, bounds
.X
);
1481 expectf(0.0, bounds
.Y
);
1482 expectf(320.0, bounds
.Width
);
1483 expectf(320.0, bounds
.Height
);
1485 stat
= GdipGetImageHorizontalResolution(img
, &res
);
1487 expectf(1440.0, res
);
1489 stat
= GdipGetImageVerticalResolution(img
, &res
);
1491 expectf(1440.0, res
);
1493 memset(&header
, 0, sizeof(header
));
1494 stat
= GdipGetMetafileHeaderFromMetafile((GpMetafile
*)img
, &header
);
1498 todo_wine
expect(MetafileTypeWmfPlaceable
, header
.Type
);
1499 todo_wine
expect(sizeof(wmfimage
)-sizeof(WmfPlaceableFileHeader
), header
.Size
);
1500 todo_wine
expect(0x300, header
.Version
);
1501 expect(0, header
.EmfPlusFlags
);
1502 todo_wine
expectf(1440.0, header
.DpiX
);
1503 todo_wine
expectf(1440.0, header
.DpiY
);
1504 expect(0, header
.X
);
1505 expect(0, header
.Y
);
1506 todo_wine
expect(320, header
.Width
);
1507 todo_wine
expect(320, header
.Height
);
1508 todo_wine
expect(1, U(header
).WmfHeader
.mtType
);
1509 expect(0, header
.EmfPlusHeaderSize
);
1510 expect(0, header
.LogicalDpiX
);
1511 expect(0, header
.LogicalDpiY
);
1514 GdipDisposeImage(img
);
1517 static void test_resolution(void)
1521 GpGraphics
*graphics
;
1524 int screenxres
, screenyres
;
1527 stat
= GdipCreateBitmapFromScan0(1, 1, 32, PixelFormat24bppRGB
, NULL
, &bitmap
);
1530 /* test invalid values */
1531 stat
= GdipGetImageHorizontalResolution(NULL
, &res
);
1532 expect(InvalidParameter
, stat
);
1534 stat
= GdipGetImageHorizontalResolution((GpImage
*)bitmap
, NULL
);
1535 expect(InvalidParameter
, stat
);
1537 stat
= GdipGetImageVerticalResolution(NULL
, &res
);
1538 expect(InvalidParameter
, stat
);
1540 stat
= GdipGetImageVerticalResolution((GpImage
*)bitmap
, NULL
);
1541 expect(InvalidParameter
, stat
);
1543 stat
= GdipBitmapSetResolution(NULL
, 96.0, 96.0);
1544 expect(InvalidParameter
, stat
);
1546 stat
= GdipBitmapSetResolution(bitmap
, 0.0, 0.0);
1547 expect(InvalidParameter
, stat
);
1549 /* defaults to screen resolution */
1550 screendc
= GetDC(0);
1552 screenxres
= GetDeviceCaps(screendc
, LOGPIXELSX
);
1553 screenyres
= GetDeviceCaps(screendc
, LOGPIXELSY
);
1555 ReleaseDC(0, screendc
);
1557 stat
= GdipGetImageHorizontalResolution((GpImage
*)bitmap
, &res
);
1559 expectf((REAL
)screenxres
, res
);
1561 stat
= GdipGetImageVerticalResolution((GpImage
*)bitmap
, &res
);
1563 expectf((REAL
)screenyres
, res
);
1565 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap
, &graphics
);
1567 stat
= GdipGetDpiX(graphics
, &res
);
1569 expectf((REAL
)screenxres
, res
);
1570 stat
= GdipGetDpiY(graphics
, &res
);
1572 expectf((REAL
)screenyres
, res
);
1574 /* test changing the resolution */
1575 stat
= GdipBitmapSetResolution(bitmap
, screenxres
*2.0, screenyres
*3.0);
1578 stat
= GdipGetImageHorizontalResolution((GpImage
*)bitmap
, &res
);
1580 expectf(screenxres
*2.0, res
);
1582 stat
= GdipGetImageVerticalResolution((GpImage
*)bitmap
, &res
);
1584 expectf(screenyres
*3.0, res
);
1586 stat
= GdipGetDpiX(graphics
, &res
);
1588 expectf((REAL
)screenxres
, res
);
1589 stat
= GdipGetDpiY(graphics
, &res
);
1591 expectf((REAL
)screenyres
, res
);
1593 stat
= GdipDeleteGraphics(graphics
);
1596 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap
, &graphics
);
1598 stat
= GdipGetDpiX(graphics
, &res
);
1600 expectf(screenxres
*2.0, res
);
1601 stat
= GdipGetDpiY(graphics
, &res
);
1603 expectf(screenyres
*3.0, res
);
1604 stat
= GdipDeleteGraphics(graphics
);
1607 stat
= GdipDisposeImage((GpImage
*)bitmap
);
1611 static void test_createhbitmap(void)
1615 HBITMAP hbitmap
, oldhbitmap
;
1622 memset(bits
, 0x68, 640);
1625 stat
= GdipCreateBitmapFromScan0(10, 20, 32, PixelFormat24bppRGB
, bits
, &bitmap
);
1628 /* test NULL values */
1629 stat
= GdipCreateHBITMAPFromBitmap(NULL
, &hbitmap
, 0);
1630 expect(InvalidParameter
, stat
);
1632 stat
= GdipCreateHBITMAPFromBitmap(bitmap
, NULL
, 0);
1633 expect(InvalidParameter
, stat
);
1635 /* create HBITMAP */
1636 stat
= GdipCreateHBITMAPFromBitmap(bitmap
, &hbitmap
, 0);
1641 ret
= GetObjectA(hbitmap
, sizeof(BITMAP
), &bm
);
1642 expect(sizeof(BITMAP
), ret
);
1644 expect(0, bm
.bmType
);
1645 expect(10, bm
.bmWidth
);
1646 expect(20, bm
.bmHeight
);
1647 expect(40, bm
.bmWidthBytes
);
1648 expect(1, bm
.bmPlanes
);
1649 expect(32, bm
.bmBitsPixel
);
1650 ok(bm
.bmBits
!= NULL
, "got DDB, expected DIB\n");
1654 DWORD val
= *(DWORD
*)bm
.bmBits
;
1655 ok(val
== 0xff686868, "got %x, expected 0xff686868\n", val
);
1658 hdc
= CreateCompatibleDC(NULL
);
1660 oldhbitmap
= SelectObject(hdc
, hbitmap
);
1661 pixel
= GetPixel(hdc
, 5, 5);
1662 SelectObject(hdc
, oldhbitmap
);
1666 expect(0x686868, pixel
);
1668 DeleteObject(hbitmap
);
1671 stat
= GdipDisposeImage((GpImage
*)bitmap
);
1674 /* create alpha Bitmap */
1675 stat
= GdipCreateBitmapFromScan0(8, 20, 32, PixelFormat32bppARGB
, bits
, &bitmap
);
1678 /* create HBITMAP */
1679 stat
= GdipCreateHBITMAPFromBitmap(bitmap
, &hbitmap
, 0);
1684 ret
= GetObjectA(hbitmap
, sizeof(BITMAP
), &bm
);
1685 expect(sizeof(BITMAP
), ret
);
1687 expect(0, bm
.bmType
);
1688 expect(8, bm
.bmWidth
);
1689 expect(20, bm
.bmHeight
);
1690 expect(32, bm
.bmWidthBytes
);
1691 expect(1, bm
.bmPlanes
);
1692 expect(32, bm
.bmBitsPixel
);
1693 ok(bm
.bmBits
!= NULL
, "got DDB, expected DIB\n");
1697 DWORD val
= *(DWORD
*)bm
.bmBits
;
1698 ok(val
== 0x682a2a2a, "got %x, expected 0x682a2a2a\n", val
);
1701 hdc
= CreateCompatibleDC(NULL
);
1703 oldhbitmap
= SelectObject(hdc
, hbitmap
);
1704 pixel
= GetPixel(hdc
, 5, 5);
1705 SelectObject(hdc
, oldhbitmap
);
1709 expect(0x2a2a2a, pixel
);
1711 DeleteObject(hbitmap
);
1714 stat
= GdipDisposeImage((GpImage
*)bitmap
);
1718 static void test_getthumbnail(void)
1721 GpImage
*bitmap1
, *bitmap2
;
1724 stat
= GdipGetImageThumbnail(NULL
, 0, 0, &bitmap2
, NULL
, NULL
);
1725 expect(InvalidParameter
, stat
);
1727 stat
= GdipCreateBitmapFromScan0(128, 128, 0, PixelFormat32bppRGB
, NULL
, (GpBitmap
**)&bitmap1
);
1730 stat
= GdipGetImageThumbnail(bitmap1
, 0, 0, NULL
, NULL
, NULL
);
1731 expect(InvalidParameter
, stat
);
1733 stat
= GdipGetImageThumbnail(bitmap1
, 0, 0, &bitmap2
, NULL
, NULL
);
1738 stat
= GdipGetImageWidth(bitmap2
, &width
);
1742 stat
= GdipGetImageHeight(bitmap2
, &height
);
1744 expect(120, height
);
1746 GdipDisposeImage(bitmap2
);
1749 GdipDisposeImage(bitmap1
);
1752 stat
= GdipCreateBitmapFromScan0(64, 128, 0, PixelFormat32bppRGB
, NULL
, (GpBitmap
**)&bitmap1
);
1755 stat
= GdipGetImageThumbnail(bitmap1
, 32, 32, &bitmap2
, NULL
, NULL
);
1760 stat
= GdipGetImageWidth(bitmap2
, &width
);
1764 stat
= GdipGetImageHeight(bitmap2
, &height
);
1768 GdipDisposeImage(bitmap2
);
1771 stat
= GdipGetImageThumbnail(bitmap1
, 0, 0, &bitmap2
, NULL
, NULL
);
1776 stat
= GdipGetImageWidth(bitmap2
, &width
);
1780 stat
= GdipGetImageHeight(bitmap2
, &height
);
1782 expect(120, height
);
1784 GdipDisposeImage(bitmap2
);
1787 GdipDisposeImage(bitmap1
);
1790 static void test_getsetpixel(void)
1795 BYTE bits
[16] = {0x00,0x00,0x00,0x00, 0x00,0xff,0xff,0x00,
1796 0xff,0x00,0x00,0x00, 0xff,0xff,0xff,0x00};
1798 stat
= GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB
, bits
, &bitmap
);
1801 /* null parameters */
1802 stat
= GdipBitmapGetPixel(NULL
, 1, 1, &color
);
1803 expect(InvalidParameter
, stat
);
1805 stat
= GdipBitmapGetPixel(bitmap
, 1, 1, NULL
);
1806 expect(InvalidParameter
, stat
);
1808 stat
= GdipBitmapSetPixel(NULL
, 1, 1, 0);
1809 expect(InvalidParameter
, stat
);
1812 stat
= GdipBitmapGetPixel(bitmap
, -1, 1, &color
);
1813 expect(InvalidParameter
, stat
);
1815 stat
= GdipBitmapSetPixel(bitmap
, -1, 1, 0);
1816 expect(InvalidParameter
, stat
);
1818 stat
= GdipBitmapGetPixel(bitmap
, 1, -1, &color
);
1819 ok(stat
== InvalidParameter
||
1820 broken(stat
== Ok
), /* Older gdiplus */
1821 "Expected InvalidParameter, got %.8x\n", stat
);
1823 if (0) /* crashes some gdiplus implementations */
1825 stat
= GdipBitmapSetPixel(bitmap
, 1, -1, 0);
1826 ok(stat
== InvalidParameter
||
1827 broken(stat
== Ok
), /* Older gdiplus */
1828 "Expected InvalidParameter, got %.8x\n", stat
);
1831 stat
= GdipBitmapGetPixel(bitmap
, 2, 1, &color
);
1832 expect(InvalidParameter
, stat
);
1834 stat
= GdipBitmapSetPixel(bitmap
, 2, 1, 0);
1835 expect(InvalidParameter
, stat
);
1837 stat
= GdipBitmapGetPixel(bitmap
, 1, 2, &color
);
1838 expect(InvalidParameter
, stat
);
1840 stat
= GdipBitmapSetPixel(bitmap
, 1, 2, 0);
1841 expect(InvalidParameter
, stat
);
1844 stat
= GdipBitmapGetPixel(bitmap
, 1, 1, &color
);
1846 expect(0xffffffff, color
);
1848 stat
= GdipBitmapGetPixel(bitmap
, 0, 1, &color
);
1850 expect(0xff0000ff, color
);
1852 stat
= GdipBitmapSetPixel(bitmap
, 1, 1, 0xff676869);
1855 stat
= GdipBitmapSetPixel(bitmap
, 0, 0, 0xff474849);
1858 stat
= GdipBitmapGetPixel(bitmap
, 1, 1, &color
);
1860 expect(0xff676869, color
);
1862 stat
= GdipBitmapGetPixel(bitmap
, 0, 0, &color
);
1864 expect(0xff474849, color
);
1866 stat
= GdipDisposeImage((GpImage
*)bitmap
);
1870 static void check_halftone_palette(ColorPalette
*palette
)
1872 static const BYTE halftone_values
[6]={0x00,0x33,0x66,0x99,0xcc,0xff};
1875 for (i
=0; i
<palette
->Count
; i
++)
1877 ARGB expected
=0xff000000;
1880 if (i
&1) expected
|= 0x800000;
1881 if (i
&2) expected
|= 0x8000;
1882 if (i
&4) expected
|= 0x80;
1886 expected
= 0xffc0c0c0;
1890 if (i
&1) expected
|= 0xff0000;
1891 if (i
&2) expected
|= 0xff00;
1892 if (i
&4) expected
|= 0xff;
1896 expected
= 0x00000000;
1900 expected
|= halftone_values
[(i
-40)%6];
1901 expected
|= halftone_values
[((i
-40)/6)%6] << 8;
1902 expected
|= halftone_values
[((i
-40)/36)%6] << 16;
1904 ok(expected
== palette
->Entries
[i
], "Expected %.8x, got %.8x, i=%u/%u\n",
1905 expected
, palette
->Entries
[i
], i
, palette
->Count
);
1909 static void test_palette(void)
1915 ColorPalette
*palette
=(ColorPalette
*)buffer
;
1916 ARGB
*entries
= palette
->Entries
;
1919 /* test initial palette from non-indexed bitmap */
1920 stat
= GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB
, NULL
, &bitmap
);
1923 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
1925 expect(sizeof(UINT
)*2+sizeof(ARGB
), size
);
1927 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
1929 expect(0, palette
->Count
);
1931 /* test setting palette on not-indexed bitmap */
1934 stat
= GdipSetImagePalette((GpImage
*)bitmap
, palette
);
1937 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
1939 expect(sizeof(UINT
)*2+sizeof(ARGB
)*3, size
);
1941 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
1943 expect(3, palette
->Count
);
1945 GdipDisposeImage((GpImage
*)bitmap
);
1947 /* test initial palette on 1-bit bitmap */
1948 stat
= GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat1bppIndexed
, NULL
, &bitmap
);
1951 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
1953 expect(sizeof(UINT
)*2+sizeof(ARGB
)*2, size
);
1955 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
1957 expect(PaletteFlagsGrayScale
, palette
->Flags
);
1958 expect(2, palette
->Count
);
1960 expect(0xff000000, entries
[0]);
1961 expect(0xffffffff, entries
[1]);
1963 /* test getting/setting pixels */
1964 stat
= GdipBitmapGetPixel(bitmap
, 0, 0, &color
);
1966 expect(0xff000000, color
);
1968 stat
= GdipBitmapSetPixel(bitmap
, 0, 1, 0xffffffff);
1970 broken(stat
== InvalidParameter
) /* pre-win7 */, "stat=%.8x\n", stat
);
1974 stat
= GdipBitmapGetPixel(bitmap
, 0, 1, &color
);
1976 expect(0xffffffff, color
);
1979 GdipDisposeImage((GpImage
*)bitmap
);
1981 /* test initial palette on 4-bit bitmap */
1982 stat
= GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat4bppIndexed
, NULL
, &bitmap
);
1985 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
1987 expect(sizeof(UINT
)*2+sizeof(ARGB
)*16, size
);
1989 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
1991 expect(0, palette
->Flags
);
1992 expect(16, palette
->Count
);
1994 check_halftone_palette(palette
);
1996 /* test getting/setting pixels */
1997 stat
= GdipBitmapGetPixel(bitmap
, 0, 0, &color
);
1999 expect(0xff000000, color
);
2001 stat
= GdipBitmapSetPixel(bitmap
, 0, 1, 0xffff00ff);
2003 broken(stat
== InvalidParameter
) /* pre-win7 */, "stat=%.8x\n", stat
);
2007 stat
= GdipBitmapGetPixel(bitmap
, 0, 1, &color
);
2009 expect(0xffff00ff, color
);
2012 GdipDisposeImage((GpImage
*)bitmap
);
2014 /* test initial palette on 8-bit bitmap */
2015 stat
= GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat8bppIndexed
, NULL
, &bitmap
);
2018 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
2020 expect(sizeof(UINT
)*2+sizeof(ARGB
)*256, size
);
2022 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
2024 expect(PaletteFlagsHalftone
, palette
->Flags
);
2025 expect(256, palette
->Count
);
2027 check_halftone_palette(palette
);
2029 /* test getting/setting pixels */
2030 stat
= GdipBitmapGetPixel(bitmap
, 0, 0, &color
);
2032 expect(0xff000000, color
);
2034 stat
= GdipBitmapSetPixel(bitmap
, 0, 1, 0xffcccccc);
2036 broken(stat
== InvalidParameter
) /* pre-win7 */, "stat=%.8x\n", stat
);
2040 stat
= GdipBitmapGetPixel(bitmap
, 0, 1, &color
);
2042 expect(0xffcccccc, color
);
2045 /* test setting/getting a different palette */
2046 entries
[1] = 0xffcccccc;
2048 stat
= GdipSetImagePalette((GpImage
*)bitmap
, palette
);
2053 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
2055 expect(sizeof(UINT
)*2+sizeof(ARGB
)*256, size
);
2057 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
2059 expect(PaletteFlagsHalftone
, palette
->Flags
);
2060 expect(256, palette
->Count
);
2061 expect(0xffcccccc, entries
[1]);
2063 /* test count < 256 */
2064 palette
->Flags
= 12345;
2067 stat
= GdipSetImagePalette((GpImage
*)bitmap
, palette
);
2071 entries
[3] = 0xdeadbeef;
2073 stat
= GdipGetImagePaletteSize((GpImage
*)bitmap
, &size
);
2075 expect(sizeof(UINT
)*2+sizeof(ARGB
)*3, size
);
2077 stat
= GdipGetImagePalette((GpImage
*)bitmap
, palette
, size
);
2079 expect(12345, palette
->Flags
);
2080 expect(3, palette
->Count
);
2081 expect(0xffcccccc, entries
[1]);
2082 expect(0xdeadbeef, entries
[3]);
2084 /* test count > 256 */
2085 palette
->Count
= 257;
2087 stat
= GdipSetImagePalette((GpImage
*)bitmap
, palette
);
2088 ok(stat
== InvalidParameter
||
2089 broken(stat
== Ok
), /* Old gdiplus behavior */
2090 "Expected %.8x, got %.8x\n", InvalidParameter
, stat
);
2092 GdipDisposeImage((GpImage
*)bitmap
);
2095 static void test_colormatrix(void)
2098 ColorMatrix colormatrix
, graymatrix
;
2099 GpImageAttributes
*imageattr
;
2100 const ColorMatrix identity
= {{
2101 {1.0,0.0,0.0,0.0,0.0},
2102 {0.0,1.0,0.0,0.0,0.0},
2103 {0.0,0.0,1.0,0.0,0.0},
2104 {0.0,0.0,0.0,1.0,0.0},
2105 {0.0,0.0,0.0,0.0,1.0}}};
2106 const ColorMatrix double_red
= {{
2107 {2.0,0.0,0.0,0.0,0.0},
2108 {0.0,1.0,0.0,0.0,0.0},
2109 {0.0,0.0,1.0,0.0,0.0},
2110 {0.0,0.0,0.0,1.0,0.0},
2111 {0.0,0.0,0.0,0.0,1.0}}};
2112 const ColorMatrix asymmetric
= {{
2113 {0.0,1.0,0.0,0.0,0.0},
2114 {0.0,0.0,1.0,0.0,0.0},
2115 {0.0,0.0,0.0,1.0,0.0},
2116 {1.0,0.0,0.0,0.0,0.0},
2117 {0.0,0.0,0.0,0.0,1.0}}};
2118 GpBitmap
*bitmap1
, *bitmap2
;
2119 GpGraphics
*graphics
;
2122 colormatrix
= identity
;
2123 graymatrix
= identity
;
2125 stat
= GdipSetImageAttributesColorMatrix(NULL
, ColorAdjustTypeDefault
,
2126 TRUE
, &colormatrix
, &graymatrix
, ColorMatrixFlagsDefault
);
2127 expect(InvalidParameter
, stat
);
2129 stat
= GdipCreateImageAttributes(&imageattr
);
2132 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2133 TRUE
, &colormatrix
, NULL
, ColorMatrixFlagsDefault
);
2136 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2137 TRUE
, NULL
, NULL
, ColorMatrixFlagsDefault
);
2138 expect(InvalidParameter
, stat
);
2140 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2141 TRUE
, &colormatrix
, &graymatrix
, ColorMatrixFlagsDefault
);
2144 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2145 TRUE
, &colormatrix
, NULL
, ColorMatrixFlagsSkipGrays
);
2148 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2149 TRUE
, &colormatrix
, NULL
, ColorMatrixFlagsAltGray
);
2150 expect(InvalidParameter
, stat
);
2152 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2153 TRUE
, &colormatrix
, &graymatrix
, ColorMatrixFlagsAltGray
);
2156 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2157 TRUE
, &colormatrix
, &graymatrix
, 3);
2158 expect(InvalidParameter
, stat
);
2160 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeCount
,
2161 TRUE
, &colormatrix
, &graymatrix
, ColorMatrixFlagsDefault
);
2162 expect(InvalidParameter
, stat
);
2164 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeAny
,
2165 TRUE
, &colormatrix
, &graymatrix
, ColorMatrixFlagsDefault
);
2166 expect(InvalidParameter
, stat
);
2168 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2169 FALSE
, NULL
, NULL
, ColorMatrixFlagsDefault
);
2172 /* Drawing a bitmap transforms the colors */
2173 colormatrix
= double_red
;
2174 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2175 TRUE
, &colormatrix
, NULL
, ColorMatrixFlagsDefault
);
2178 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB
, NULL
, &bitmap1
);
2181 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB
, NULL
, &bitmap2
);
2184 stat
= GdipBitmapSetPixel(bitmap1
, 0, 0, 0xff40ccee);
2187 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap2
, &graphics
);
2190 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2191 UnitPixel
, imageattr
, NULL
, NULL
);
2194 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2196 expect(0xff80ccee, color
);
2198 colormatrix
= asymmetric
;
2199 stat
= GdipSetImageAttributesColorMatrix(imageattr
, ColorAdjustTypeDefault
,
2200 TRUE
, &colormatrix
, NULL
, ColorMatrixFlagsDefault
);
2203 stat
= GdipBitmapSetPixel(bitmap2
, 0, 0, 0);
2206 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2207 UnitPixel
, imageattr
, NULL
, NULL
);
2210 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2212 ok(color_match(0xeeff40cc, color
, 3), "expected 0xeeff40cc, got 0x%08x\n", color
);
2214 stat
= GdipResetImageAttributes(imageattr
, ColorAdjustTypeDefault
);
2217 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2218 UnitPixel
, imageattr
, NULL
, NULL
);
2221 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2223 ok(color_match(0xff40ccee, color
, 1), "Expected ff40ccee, got %.8x\n", color
);
2225 GdipDeleteGraphics(graphics
);
2226 GdipDisposeImage((GpImage
*)bitmap1
);
2227 GdipDisposeImage((GpImage
*)bitmap2
);
2228 GdipDisposeImageAttributes(imageattr
);
2231 static void test_gamma(void)
2234 GpImageAttributes
*imageattr
;
2235 GpBitmap
*bitmap1
, *bitmap2
;
2236 GpGraphics
*graphics
;
2239 stat
= GdipSetImageAttributesGamma(NULL
, ColorAdjustTypeDefault
, TRUE
, 1.0);
2240 expect(InvalidParameter
, stat
);
2242 stat
= GdipCreateImageAttributes(&imageattr
);
2245 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, TRUE
, 1.0);
2248 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeAny
, TRUE
, 1.0);
2249 expect(InvalidParameter
, stat
);
2251 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, TRUE
, -1.0);
2252 expect(InvalidParameter
, stat
);
2254 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, TRUE
, 0.0);
2255 expect(InvalidParameter
, stat
);
2257 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, TRUE
, 0.5);
2260 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, FALSE
, 0.0);
2263 /* Drawing a bitmap transforms the colors */
2264 stat
= GdipSetImageAttributesGamma(imageattr
, ColorAdjustTypeDefault
, TRUE
, 3.0);
2267 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB
, NULL
, &bitmap1
);
2270 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB
, NULL
, &bitmap2
);
2273 stat
= GdipBitmapSetPixel(bitmap1
, 0, 0, 0xff80ffff);
2276 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap2
, &graphics
);
2279 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2280 UnitPixel
, imageattr
, NULL
, NULL
);
2283 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2285 ok(color_match(0xff20ffff, color
, 1), "Expected ff20ffff, got %.8x\n", color
);
2287 stat
= GdipResetImageAttributes(imageattr
, ColorAdjustTypeDefault
);
2290 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2291 UnitPixel
, imageattr
, NULL
, NULL
);
2294 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2296 ok(color_match(0xff80ffff, color
, 1), "Expected ff80ffff, got %.8x\n", color
);
2298 GdipDeleteGraphics(graphics
);
2299 GdipDisposeImage((GpImage
*)bitmap1
);
2300 GdipDisposeImage((GpImage
*)bitmap2
);
2301 GdipDisposeImageAttributes(imageattr
);
2304 /* 1x1 pixel gif, 2 frames; first frame is white, second is black */
2305 static const unsigned char gifanimation
[72] = {
2306 0x47,0x49,0x46,0x38,0x39,0x61,0x01,0x00,0x01,0x00,0xa1,0x00,0x00,0x00,0x00,0x00,
2307 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xf9,0x04,0x00,0x0a,0x00,0xff,
2308 0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x4c,0x01,0x00,
2309 0x21,0xf9,0x04,0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,
2310 0x00,0x00,0x02,0x02,0x44,0x01,0x00,0x3b
2313 static void test_multiframegif(void)
2325 /* Test frame functions with an animated GIF */
2326 hglob
= GlobalAlloc (0, sizeof(gifanimation
));
2327 data
= GlobalLock (hglob
);
2328 memcpy(data
, gifanimation
, sizeof(gifanimation
));
2329 GlobalUnlock(hglob
);
2331 hres
= CreateStreamOnHGlobal(hglob
, TRUE
, &stream
);
2332 ok(hres
== S_OK
, "Failed to create a stream\n");
2333 if(hres
!= S_OK
) return;
2335 stat
= GdipCreateBitmapFromStream(stream
, &bmp
);
2336 ok(stat
== Ok
, "Failed to create a Bitmap\n");
2338 IStream_Release(stream
);
2342 /* Bitmap starts at frame 0 */
2344 stat
= GdipBitmapGetPixel(bmp
, 0, 0, &color
);
2346 expect(0xffffffff, color
);
2348 /* Check that we get correct metadata */
2349 stat
= GdipImageGetFrameDimensionsCount((GpImage
*)bmp
,&count
);
2353 stat
= GdipImageGetFrameDimensionsList((GpImage
*)bmp
, &dimension
, 1);
2355 expect_guid(&FrameDimensionTime
, &dimension
, __LINE__
, FALSE
);
2358 stat
= GdipImageGetFrameCount((GpImage
*)bmp
, &dimension
, &count
);
2362 /* SelectActiveFrame overwrites our current data */
2363 stat
= GdipImageSelectActiveFrame((GpImage
*)bmp
, &dimension
, 1);
2367 GdipBitmapGetPixel(bmp
, 0, 0, &color
);
2369 expect(0xff000000, color
);
2371 stat
= GdipImageSelectActiveFrame((GpImage
*)bmp
, &dimension
, 0);
2375 GdipBitmapGetPixel(bmp
, 0, 0, &color
);
2377 expect(0xffffffff, color
);
2379 /* Write over the image data */
2380 stat
= GdipBitmapSetPixel(bmp
, 0, 0, 0xff000000);
2383 /* Switching to the same frame does not overwrite our changes */
2384 stat
= GdipImageSelectActiveFrame((GpImage
*)bmp
, &dimension
, 0);
2387 stat
= GdipBitmapGetPixel(bmp
, 0, 0, &color
);
2389 expect(0xff000000, color
);
2391 /* But switching to another frame and back does */
2392 stat
= GdipImageSelectActiveFrame((GpImage
*)bmp
, &dimension
, 1);
2395 stat
= GdipImageSelectActiveFrame((GpImage
*)bmp
, &dimension
, 0);
2398 stat
= GdipBitmapGetPixel(bmp
, 0, 0, &color
);
2400 expect(0xffffffff, color
);
2402 /* rotate/flip discards the information about other frames */
2403 stat
= GdipImageRotateFlip((GpImage
*)bmp
, Rotate90FlipNone
);
2407 stat
= GdipImageGetFrameCount((GpImage
*)bmp
, &dimension
, &count
);
2411 expect_rawformat(&ImageFormatMemoryBMP
, (GpImage
*)bmp
, __LINE__
, FALSE
);
2413 GdipDisposeImage((GpImage
*)bmp
);
2414 IStream_Release(stream
);
2416 /* Test with a non-animated gif */
2417 hglob
= GlobalAlloc (0, sizeof(gifimage
));
2418 data
= GlobalLock (hglob
);
2419 memcpy(data
, gifimage
, sizeof(gifimage
));
2420 GlobalUnlock(hglob
);
2422 hres
= CreateStreamOnHGlobal(hglob
, TRUE
, &stream
);
2423 ok(hres
== S_OK
, "Failed to create a stream\n");
2424 if(hres
!= S_OK
) return;
2426 stat
= GdipCreateBitmapFromStream(stream
, &bmp
);
2427 ok(stat
== Ok
, "Failed to create a Bitmap\n");
2429 IStream_Release(stream
);
2433 /* Check metadata */
2434 stat
= GdipImageGetFrameDimensionsCount((GpImage
*)bmp
,&count
);
2438 stat
= GdipImageGetFrameDimensionsList((GpImage
*)bmp
, &dimension
, 1);
2440 expect_guid(&FrameDimensionTime
, &dimension
, __LINE__
, FALSE
);
2443 stat
= GdipImageGetFrameCount((GpImage
*)bmp
, &dimension
, &count
);
2447 GdipDisposeImage((GpImage
*)bmp
);
2448 IStream_Release(stream
);
2451 static void test_rotateflip(void)
2456 static const BYTE orig_bits
[24] = {
2457 0,0,0xff, 0,0xff,0, 0xff,0,0, 23,23,23,
2458 0xff,0xff,0, 0xff,0,0xff, 0,0xff,0xff, 23,23,23};
2462 memcpy(bits
, orig_bits
, sizeof(bits
));
2463 stat
= GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB
, bits
, (GpBitmap
**)&bitmap
);
2466 stat
= GdipImageRotateFlip(bitmap
, Rotate90FlipNone
);
2469 stat
= GdipGetImageWidth(bitmap
, &width
);
2471 stat
= GdipGetImageHeight(bitmap
, &height
);
2476 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 0, &color
);
2478 expect(0xff00ffff, color
);
2480 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 1, 0, &color
);
2482 expect(0xffff0000, color
);
2484 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 2, &color
);
2486 expect(0xffffff00, color
);
2488 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 1, 2, &color
);
2490 expect(0xff0000ff, color
);
2494 expect(0xff, bits
[2]);
2496 GdipDisposeImage(bitmap
);
2498 memcpy(bits
, orig_bits
, sizeof(bits
));
2499 stat
= GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB
, bits
, (GpBitmap
**)&bitmap
);
2502 stat
= GdipImageRotateFlip(bitmap
, RotateNoneFlipX
);
2505 stat
= GdipGetImageWidth(bitmap
, &width
);
2507 stat
= GdipGetImageHeight(bitmap
, &height
);
2512 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 0, &color
);
2514 expect(0xff0000ff, color
);
2516 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 2, 0, &color
);
2518 expect(0xffff0000, color
);
2520 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 1, &color
);
2522 expect(0xffffff00, color
);
2524 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 2, 1, &color
);
2526 expect(0xff00ffff, color
);
2530 expect(0xff, bits
[2]);
2532 GdipDisposeImage(bitmap
);
2534 memcpy(bits
, orig_bits
, sizeof(bits
));
2535 stat
= GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB
, bits
, (GpBitmap
**)&bitmap
);
2538 stat
= GdipImageRotateFlip(bitmap
, RotateNoneFlipY
);
2541 stat
= GdipGetImageWidth(bitmap
, &width
);
2543 stat
= GdipGetImageHeight(bitmap
, &height
);
2548 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 0, &color
);
2550 expect(0xff00ffff, color
);
2552 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 2, 0, &color
);
2554 expect(0xffffff00, color
);
2556 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 0, 1, &color
);
2558 expect(0xffff0000, color
);
2560 stat
= GdipBitmapGetPixel((GpBitmap
*)bitmap
, 2, 1, &color
);
2562 expect(0xff0000ff, color
);
2566 expect(0xff, bits
[2]);
2568 GdipDisposeImage(bitmap
);
2571 static void test_remaptable(void)
2574 GpImageAttributes
*imageattr
;
2575 GpBitmap
*bitmap1
, *bitmap2
;
2576 GpGraphics
*graphics
;
2580 map
= GdipAlloc(sizeof(ColorMap
));
2582 map
->oldColor
.Argb
= 0xff00ff00;
2583 map
->newColor
.Argb
= 0xffff00ff;
2585 stat
= GdipSetImageAttributesRemapTable(NULL
, ColorAdjustTypeDefault
, TRUE
, 1, map
);
2586 expect(InvalidParameter
, stat
);
2588 stat
= GdipCreateImageAttributes(&imageattr
);
2591 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeDefault
, TRUE
, 1, NULL
);
2592 expect(InvalidParameter
, stat
);
2594 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeCount
, TRUE
, 1, map
);
2595 expect(InvalidParameter
, stat
);
2597 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeAny
, TRUE
, 1, map
);
2598 expect(InvalidParameter
, stat
);
2600 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeDefault
, TRUE
, 0, map
);
2601 expect(InvalidParameter
, stat
);
2603 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeDefault
, FALSE
, 0, NULL
);
2606 stat
= GdipSetImageAttributesRemapTable(imageattr
, ColorAdjustTypeDefault
, TRUE
, 1, map
);
2609 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB
, NULL
, &bitmap1
);
2612 stat
= GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB
, NULL
, &bitmap2
);
2615 stat
= GdipBitmapSetPixel(bitmap1
, 0, 0, 0xff00ff00);
2618 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap2
, &graphics
);
2621 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2622 UnitPixel
, imageattr
, NULL
, NULL
);
2625 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2627 ok(color_match(0xffff00ff, color
, 1), "Expected ffff00ff, got %.8x\n", color
);
2629 stat
= GdipResetImageAttributes(imageattr
, ColorAdjustTypeDefault
);
2632 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,1,1, 0,0,1,1,
2633 UnitPixel
, imageattr
, NULL
, NULL
);
2636 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2638 ok(color_match(0xff00ff00, color
, 1), "Expected ff00ff00, got %.8x\n", color
);
2640 GdipDeleteGraphics(graphics
);
2641 GdipDisposeImage((GpImage
*)bitmap1
);
2642 GdipDisposeImage((GpImage
*)bitmap2
);
2643 GdipDisposeImageAttributes(imageattr
);
2647 static void test_colorkey(void)
2650 GpImageAttributes
*imageattr
;
2651 GpBitmap
*bitmap1
, *bitmap2
;
2652 GpGraphics
*graphics
;
2655 stat
= GdipSetImageAttributesColorKeys(NULL
, ColorAdjustTypeDefault
, TRUE
, 0xff405060, 0xff708090);
2656 expect(InvalidParameter
, stat
);
2658 stat
= GdipCreateImageAttributes(&imageattr
);
2661 stat
= GdipSetImageAttributesColorKeys(imageattr
, ColorAdjustTypeCount
, TRUE
, 0xff405060, 0xff708090);
2662 expect(InvalidParameter
, stat
);
2664 stat
= GdipSetImageAttributesColorKeys(imageattr
, ColorAdjustTypeAny
, TRUE
, 0xff405060, 0xff708090);
2665 expect(InvalidParameter
, stat
);
2667 stat
= GdipSetImageAttributesColorKeys(imageattr
, ColorAdjustTypeDefault
, TRUE
, 0xff405060, 0xff708090);
2670 stat
= GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB
, NULL
, &bitmap1
);
2673 stat
= GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB
, NULL
, &bitmap2
);
2676 stat
= GdipBitmapSetPixel(bitmap1
, 0, 0, 0x20405060);
2679 stat
= GdipBitmapSetPixel(bitmap1
, 0, 1, 0x40506070);
2682 stat
= GdipBitmapSetPixel(bitmap1
, 1, 0, 0x60708090);
2685 stat
= GdipBitmapSetPixel(bitmap1
, 1, 1, 0xffffffff);
2688 stat
= GdipGetImageGraphicsContext((GpImage
*)bitmap2
, &graphics
);
2691 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,2,2, 0,0,2,2,
2692 UnitPixel
, imageattr
, NULL
, NULL
);
2695 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2697 ok(color_match(0x00000000, color
, 1), "Expected 00000000, got %.8x\n", color
);
2699 stat
= GdipBitmapGetPixel(bitmap2
, 0, 1, &color
);
2701 ok(color_match(0x00000000, color
, 1), "Expected 00000000, got %.8x\n", color
);
2703 stat
= GdipBitmapGetPixel(bitmap2
, 1, 0, &color
);
2705 ok(color_match(0x00000000, color
, 1), "Expected 00000000, got %.8x\n", color
);
2707 stat
= GdipBitmapGetPixel(bitmap2
, 1, 1, &color
);
2709 ok(color_match(0xffffffff, color
, 1), "Expected ffffffff, got %.8x\n", color
);
2711 stat
= GdipResetImageAttributes(imageattr
, ColorAdjustTypeDefault
);
2714 stat
= GdipDrawImageRectRectI(graphics
, (GpImage
*)bitmap1
, 0,0,2,2, 0,0,2,2,
2715 UnitPixel
, imageattr
, NULL
, NULL
);
2718 stat
= GdipBitmapGetPixel(bitmap2
, 0, 0, &color
);
2720 ok(color_match(0x20405060, color
, 1), "Expected 20405060, got %.8x\n", color
);
2722 stat
= GdipBitmapGetPixel(bitmap2
, 0, 1, &color
);
2724 ok(color_match(0x40506070, color
, 1), "Expected 40506070, got %.8x\n", color
);
2726 stat
= GdipBitmapGetPixel(bitmap2
, 1, 0, &color
);
2728 ok(color_match(0x60708090, color
, 1), "Expected 60708090, got %.8x\n", color
);
2730 stat
= GdipBitmapGetPixel(bitmap2
, 1, 1, &color
);
2732 ok(color_match(0xffffffff, color
, 1), "Expected ffffffff, got %.8x\n", color
);
2735 GdipDeleteGraphics(graphics
);
2736 GdipDisposeImage((GpImage
*)bitmap1
);
2737 GdipDisposeImage((GpImage
*)bitmap2
);
2738 GdipDisposeImageAttributes(imageattr
);
2741 static void test_dispose(void)
2745 char invalid_image
[256];
2747 stat
= GdipDisposeImage(NULL
);
2748 expect(InvalidParameter
, stat
);
2750 stat
= GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB
, NULL
, (GpBitmap
**)&image
);
2753 stat
= GdipDisposeImage(image
);
2756 stat
= GdipDisposeImage(image
);
2757 expect(ObjectBusy
, stat
);
2759 memset(invalid_image
, 0, 256);
2760 stat
= GdipDisposeImage((GpImage
*)invalid_image
);
2761 expect(ObjectBusy
, stat
);
2764 static LONG
obj_refcount(void *obj
)
2766 IUnknown_AddRef((IUnknown
*)obj
);
2767 return IUnknown_Release((IUnknown
*)obj
);
2770 static GpImage
*load_image(const BYTE
*image_data
, UINT image_size
)
2777 GpImage
*image
= NULL
, *clone
;
2778 ImageType image_type
;
2779 LONG refcount
, old_refcount
;
2781 hmem
= GlobalAlloc(0, image_size
);
2782 data
= GlobalLock(hmem
);
2783 memcpy(data
, image_data
, image_size
);
2786 hr
= CreateStreamOnHGlobal(hmem
, TRUE
, &stream
);
2787 ok(hr
== S_OK
, "CreateStreamOnHGlobal error %#x\n", hr
);
2788 if (hr
!= S_OK
) return NULL
;
2790 refcount
= obj_refcount(stream
);
2791 ok(refcount
== 1, "expected stream refcount 1, got %d\n", refcount
);
2793 status
= GdipLoadImageFromStream(stream
, &image
);
2794 ok(status
== Ok
|| broken(status
== InvalidParameter
), /* XP */
2795 "GdipLoadImageFromStream error %d\n", status
);
2798 IStream_Release(stream
);
2802 status
= GdipGetImageType(image
, &image_type
);
2803 ok(status
== Ok
, "GdipGetImageType error %d\n", status
);
2805 refcount
= obj_refcount(stream
);
2806 if (image_type
== ImageTypeBitmap
)
2807 ok(refcount
> 1, "expected stream refcount > 1, got %d\n", refcount
);
2809 ok(refcount
== 1, "expected stream refcount 1, got %d\n", refcount
);
2810 old_refcount
= refcount
;
2812 status
= GdipCloneImage(image
, &clone
);
2813 ok(status
== Ok
, "GdipCloneImage error %d\n", status
);
2814 refcount
= obj_refcount(stream
);
2815 ok(refcount
== old_refcount
, "expected stream refcount %d, got %d\n", old_refcount
, refcount
);
2816 status
= GdipDisposeImage(clone
);
2817 ok(status
== Ok
, "GdipDisposeImage error %d\n", status
);
2818 refcount
= obj_refcount(stream
);
2819 ok(refcount
== old_refcount
, "expected stream refcount %d, got %d\n", old_refcount
, refcount
);
2821 refcount
= IStream_Release(stream
);
2822 if (image_type
== ImageTypeBitmap
)
2823 ok(refcount
>= 1, "expected stream refcount != 0\n");
2825 ok(refcount
== 0, "expected stream refcount 0, got %d\n", refcount
);
2830 static void test_image_properties(void)
2832 static const struct test_data
2834 const BYTE
*image_data
;
2836 ImageType image_type
;
2838 UINT prop_count2
; /* if win7 behaves differently */
2839 /* 1st property attributes */
2841 UINT prop_size2
; /* if win7 behaves differently */
2843 UINT prop_id2
; /* if win7 behaves differently */
2847 { pngimage
, sizeof(pngimage
), ImageTypeBitmap
, 4, ~0, 1, 20, 0x5110, 0x132 },
2848 { jpgimage
, sizeof(jpgimage
), ImageTypeBitmap
, 2, ~0, 128, 0, 0x5090, 0x5091 },
2849 { tiffimage
, sizeof(tiffimage
), ImageTypeBitmap
, 16, 0, 4, 0, 0xfe, 0 },
2850 { bmpimage
, sizeof(bmpimage
), ImageTypeBitmap
, 0, 0, 0, 0, 0, 0 },
2851 { wmfimage
, sizeof(wmfimage
), ImageTypeMetafile
, 0, 0, 0, 0, 0, 0 }
2855 UINT prop_count
, prop_size
, i
;
2856 PROPID prop_id
[16] = { 0 };
2857 ImageType image_type
;
2864 for (i
= 0; i
< sizeof(td
)/sizeof(td
[0]); i
++)
2866 image
= load_image(td
[i
].image_data
, td
[i
].image_size
);
2869 trace("%u: failed to load image data\n", i
);
2873 status
= GdipGetImageType(image
, &image_type
);
2874 ok(status
== Ok
, "%u: GdipGetImageType error %d\n", i
, status
);
2875 ok(td
[i
].image_type
== image_type
, "%u: expected image_type %d, got %d\n",
2876 i
, td
[i
].image_type
, image_type
);
2878 status
= GdipGetPropertyCount(image
, &prop_count
);
2879 ok(status
== Ok
, "%u: GdipGetPropertyCount error %d\n", i
, status
);
2880 if (td
[i
].image_data
== pngimage
|| td
[i
].image_data
== jpgimage
)
2882 ok(td
[i
].prop_count
== prop_count
|| td
[i
].prop_count2
== prop_count
,
2883 " %u: expected property count %u or %u, got %u\n",
2884 i
, td
[i
].prop_count
, td
[i
].prop_count2
, prop_count
);
2886 ok(td
[i
].prop_count
== prop_count
|| td
[i
].prop_count2
== prop_count
,
2887 " %u: expected property count %u or %u, got %u\n",
2888 i
, td
[i
].prop_count
, td
[i
].prop_count2
, prop_count
);
2890 status
= GdipGetPropertyItemSize(NULL
, 0, &prop_size
);
2891 expect(InvalidParameter
, status
);
2892 status
= GdipGetPropertyItemSize(image
, 0, NULL
);
2893 expect(InvalidParameter
, status
);
2894 status
= GdipGetPropertyItemSize(image
, 0, &prop_size
);
2895 if (image_type
== ImageTypeMetafile
)
2896 expect(NotImplemented
, status
);
2898 expect(PropertyNotFound
, status
);
2900 status
= GdipGetPropertyItem(NULL
, 0, 0, &item
.data
);
2901 expect(InvalidParameter
, status
);
2902 status
= GdipGetPropertyItem(image
, 0, 0, NULL
);
2903 expect(InvalidParameter
, status
);
2904 status
= GdipGetPropertyItem(image
, 0, 0, &item
.data
);
2905 if (image_type
== ImageTypeMetafile
)
2906 expect(NotImplemented
, status
);
2908 expect(PropertyNotFound
, status
);
2910 /* FIXME: remove once Wine is fixed */
2911 if (td
[i
].prop_count
!= prop_count
)
2913 GdipDisposeImage(image
);
2917 status
= GdipGetPropertyIdList(NULL
, prop_count
, prop_id
);
2918 expect(InvalidParameter
, status
);
2919 status
= GdipGetPropertyIdList(image
, prop_count
, NULL
);
2920 expect(InvalidParameter
, status
);
2921 status
= GdipGetPropertyIdList(image
, 0, prop_id
);
2922 if (image_type
== ImageTypeMetafile
)
2923 expect(NotImplemented
, status
);
2924 else if (prop_count
== 0)
2927 expect(InvalidParameter
, status
);
2928 status
= GdipGetPropertyIdList(image
, prop_count
- 1, prop_id
);
2929 if (image_type
== ImageTypeMetafile
)
2930 expect(NotImplemented
, status
);
2932 expect(InvalidParameter
, status
);
2933 status
= GdipGetPropertyIdList(image
, prop_count
+ 1, prop_id
);
2934 if (image_type
== ImageTypeMetafile
)
2935 expect(NotImplemented
, status
);
2937 expect(InvalidParameter
, status
);
2938 status
= GdipGetPropertyIdList(image
, prop_count
, prop_id
);
2939 if (image_type
== ImageTypeMetafile
)
2940 expect(NotImplemented
, status
);
2944 if (prop_count
!= 0)
2945 ok(td
[i
].prop_id
== prop_id
[0] || td
[i
].prop_id2
== prop_id
[0],
2946 " %u: expected property id %#x or %#x, got %#x\n",
2947 i
, td
[i
].prop_id
, td
[i
].prop_id2
, prop_id
[0]);
2952 status
= GdipGetPropertyItemSize(image
, prop_id
[0], &prop_size
);
2953 if (prop_count
== 0)
2954 expect(PropertyNotFound
, status
);
2959 assert(sizeof(item
) >= prop_size
);
2960 ok(prop_size
> sizeof(PropertyItem
), "%u: got too small prop_size %u\n",
2962 ok(td
[i
].prop_size
+ sizeof(PropertyItem
) == prop_size
||
2963 td
[i
].prop_size2
+ sizeof(PropertyItem
) == prop_size
,
2964 " %u: expected property size %u or %u, got %u\n",
2965 i
, td
[i
].prop_size
, td
[i
].prop_size2
, prop_size
);
2967 status
= GdipGetPropertyItem(image
, prop_id
[0], 0, &item
.data
);
2968 ok(status
== InvalidParameter
|| status
== GenericError
/* Win7 */,
2969 "%u: expected InvalidParameter, got %d\n", i
, status
);
2970 status
= GdipGetPropertyItem(image
, prop_id
[0], prop_size
- 1, &item
.data
);
2971 ok(status
== InvalidParameter
|| status
== GenericError
/* Win7 */,
2972 "%u: expected InvalidParameter, got %d\n", i
, status
);
2973 status
= GdipGetPropertyItem(image
, prop_id
[0], prop_size
+ 1, &item
.data
);
2974 ok(status
== InvalidParameter
|| status
== GenericError
/* Win7 */,
2975 "%u: expected InvalidParameter, got %d\n", i
, status
);
2976 status
= GdipGetPropertyItem(image
, prop_id
[0], prop_size
, &item
.data
);
2978 ok(prop_id
[0] == item
.data
.id
,
2979 "%u: expected property id %#x, got %#x\n", i
, prop_id
[0], item
.data
.id
);
2983 GdipDisposeImage(image
);
2991 #define IFD_RATIONAL 5
2993 #define IFD_UNDEFINED 7
2994 #define IFD_SSHORT 8
2996 #define IFD_SRATIONAL 10
2997 #define IFD_FLOAT 11
2998 #define IFD_DOUBLE 12
3000 #ifndef PropertyTagTypeSByte
3001 #define PropertyTagTypeSByte 6
3002 #define PropertyTagTypeSShort 8
3003 #define PropertyTagTypeFloat 11
3004 #define PropertyTagTypeDouble 12
3007 static UINT
documented_type(UINT type
)
3011 case PropertyTagTypeSByte
: return PropertyTagTypeByte
;
3012 case PropertyTagTypeSShort
: return PropertyTagTypeShort
;
3013 case PropertyTagTypeFloat
: return PropertyTagTypeUndefined
;
3014 case PropertyTagTypeDouble
: return PropertyTagTypeUndefined
;
3015 default: return type
;
3019 #include "pshpack2.h"
3034 static const struct tiff_data
3039 USHORT number_of_entries
;
3040 struct IFD_entry entry
[40];
3042 struct IFD_rational xres
;
3044 struct IFD_rational srational_val
;
3049 struct IFD_rational rational
[3];
3053 #ifdef WORDS_BIGENDIAN
3059 FIELD_OFFSET(struct tiff_data
, number_of_entries
),
3062 { 0xff, IFD_SHORT
, 1, 0 }, /* SUBFILETYPE */
3063 { 0x100, IFD_LONG
, 1, 1 }, /* IMAGEWIDTH */
3064 { 0x101, IFD_LONG
, 1, 1 }, /* IMAGELENGTH */
3065 { 0x102, IFD_SHORT
, 1, 1 }, /* BITSPERSAMPLE */
3066 { 0x103, IFD_SHORT
, 1, 1 }, /* COMPRESSION: XP doesn't accept IFD_LONG here */
3067 { 0x106, IFD_SHORT
, 1, 1 }, /* PHOTOMETRIC */
3068 { 0x111, IFD_LONG
, 1, FIELD_OFFSET(struct tiff_data
, pixel_data
) }, /* STRIPOFFSETS */
3069 { 0x115, IFD_SHORT
, 1, 1 }, /* SAMPLESPERPIXEL */
3070 { 0x116, IFD_LONG
, 1, 1 }, /* ROWSPERSTRIP */
3071 { 0x117, IFD_LONG
, 1, 1 }, /* STRIPBYTECOUNT */
3072 { 0x11a, IFD_RATIONAL
, 1, FIELD_OFFSET(struct tiff_data
, xres
) },
3073 { 0x11b, IFD_RATIONAL
, 1, FIELD_OFFSET(struct tiff_data
, xres
) },
3074 { 0x128, IFD_SHORT
, 1, 2 }, /* RESOLUTIONUNIT */
3075 { 0xf001, IFD_BYTE
, 1, 0x11223344 },
3076 { 0xf002, IFD_BYTE
, 4, 0x11223344 },
3077 { 0xf003, IFD_SBYTE
, 1, 0x11223344 },
3078 { 0xf004, IFD_SSHORT
, 1, 0x11223344 },
3079 { 0xf005, IFD_SSHORT
, 2, 0x11223344 },
3080 { 0xf006, IFD_SLONG
, 1, 0x11223344 },
3081 { 0xf007, IFD_FLOAT
, 1, 0x11223344 },
3082 { 0xf008, IFD_DOUBLE
, 1, FIELD_OFFSET(struct tiff_data
, double_val
) },
3083 { 0xf009, IFD_SRATIONAL
, 1, FIELD_OFFSET(struct tiff_data
, srational_val
) },
3084 { 0xf00a, IFD_BYTE
, 13, FIELD_OFFSET(struct tiff_data
, string
) },
3085 { 0xf00b, IFD_SSHORT
, 4, FIELD_OFFSET(struct tiff_data
, short_val
) },
3086 { 0xf00c, IFD_SLONG
, 2, FIELD_OFFSET(struct tiff_data
, long_val
) },
3087 { 0xf00e, IFD_ASCII
, 13, FIELD_OFFSET(struct tiff_data
, string
) },
3088 { 0xf00f, IFD_ASCII
, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 },
3089 { 0xf010, IFD_UNDEFINED
, 13, FIELD_OFFSET(struct tiff_data
, string
) },
3090 { 0xf011, IFD_UNDEFINED
, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 },
3091 /* Some gdiplus versions ignore these fields.
3092 { 0xf012, IFD_BYTE, 0, 0x11223344 },
3093 { 0xf013, IFD_SHORT, 0, 0x11223344 },
3094 { 0xf014, IFD_LONG, 0, 0x11223344 },
3095 { 0xf015, IFD_FLOAT, 0, 0x11223344 },*/
3096 { 0xf016, IFD_SRATIONAL
, 3, FIELD_OFFSET(struct tiff_data
, rational
) },
3097 /* Win7 before SP1 doesn't recognize this field, everybody else does. */
3098 { 0xf017, IFD_FLOAT
, 2, FIELD_OFFSET(struct tiff_data
, float_val
) },
3102 1234567890.0987654321,
3103 { 0x1a2b3c4d, 0x5a6b7c8d },
3105 { 0x0101, 0x0202, 0x0303, 0x0404 },
3106 { 0x11223344, 0x55667788 },
3107 { (FLOAT
)1234.5678, (FLOAT
)8765.4321 },
3108 { { 0x01020304, 0x05060708 }, { 0x10203040, 0x50607080 }, { 0x11223344, 0x55667788 } },
3109 { 0x11, 0x22, 0x33, 0 }
3111 #include "poppack.h"
3113 static void test_tiff_properties(void)
3115 static const struct test_data
3117 ULONG type
, id
, length
;
3118 const BYTE value
[24];
3121 { PropertyTagTypeShort
, 0xff, 2, { 0 } },
3122 { PropertyTagTypeLong
, 0x100, 4, { 1 } },
3123 { PropertyTagTypeLong
, 0x101, 4, { 1 } },
3124 { PropertyTagTypeShort
, 0x102, 2, { 1 } },
3125 { PropertyTagTypeShort
, 0x103, 2, { 1 } },
3126 { PropertyTagTypeShort
, 0x106, 2, { 1 } },
3127 { PropertyTagTypeLong
, 0x111, 4, { 0x44,0x02 } },
3128 { PropertyTagTypeShort
, 0x115, 2, { 1 } },
3129 { PropertyTagTypeLong
, 0x116, 4, { 1 } },
3130 { PropertyTagTypeLong
, 0x117, 4, { 1 } },
3131 { PropertyTagTypeRational
, 0x11a, 8, { 0x84,0x03,0,0,0x03 } },
3132 { PropertyTagTypeRational
, 0x11b, 8, { 0x84,0x03,0,0,0x03 } },
3133 { PropertyTagTypeShort
, 0x128, 2, { 2 } },
3134 { PropertyTagTypeByte
, 0xf001, 1, { 0x44 } },
3135 { PropertyTagTypeByte
, 0xf002, 4, { 0x44,0x33,0x22,0x11 } },
3136 { PropertyTagTypeSByte
, 0xf003, 1, { 0x44 } },
3137 { PropertyTagTypeSShort
, 0xf004, 2, { 0x44,0x33 } },
3138 { PropertyTagTypeSShort
, 0xf005, 4, { 0x44,0x33,0x22,0x11 } },
3139 { PropertyTagTypeSLONG
, 0xf006, 4, { 0x44,0x33,0x22,0x11 } },
3140 { PropertyTagTypeFloat
, 0xf007, 4, { 0x44,0x33,0x22,0x11 } },
3141 { PropertyTagTypeDouble
, 0xf008, 8, { 0x2c,0x52,0x86,0xb4,0x80,0x65,0xd2,0x41 } },
3142 { PropertyTagTypeSRational
, 0xf009, 8, { 0x4d, 0x3c, 0x2b, 0x1a, 0x8d, 0x7c, 0x6b, 0x5a } },
3143 { PropertyTagTypeByte
, 0xf00a, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3144 { PropertyTagTypeSShort
, 0xf00b, 8, { 0x01,0x01,0x02,0x02,0x03,0x03,0x04,0x04 } },
3145 { PropertyTagTypeSLONG
, 0xf00c, 8, { 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } },
3146 { PropertyTagTypeASCII
, 0xf00e, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3147 { PropertyTagTypeASCII
, 0xf00f, 5, { 'a','b','c','d' } },
3148 { PropertyTagTypeUndefined
, 0xf010, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
3149 { PropertyTagTypeUndefined
, 0xf011, 4, { 'a','b','c','d' } },
3150 { PropertyTagTypeSRational
, 0xf016, 24,
3151 { 0x04,0x03,0x02,0x01,0x08,0x07,0x06,0x05,
3152 0x40,0x30,0x20,0x10,0x80,0x70,0x60,0x50,
3153 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } },
3154 /* Win7 before SP1 doesn't recognize this field, everybody else does. */
3155 { PropertyTagTypeFloat
, 0xf017, 8, { 0x2b,0x52,0x9a,0x44,0xba,0xf5,0x08,0x46 } },
3160 UINT dim_count
, frame_count
, prop_count
, prop_size
, i
;
3162 PropertyItem
*prop_item
;
3164 image
= load_image((const BYTE
*)&TIFF_data
, sizeof(TIFF_data
));
3167 win_skip("Failed to load TIFF image data. Might not be supported. Skipping.\n");
3171 status
= GdipImageGetFrameDimensionsCount(image
, &dim_count
);
3173 expect(1, dim_count
);
3175 status
= GdipImageGetFrameDimensionsList(image
, &guid
, 1);
3177 expect_guid(&FrameDimensionPage
, &guid
, __LINE__
, FALSE
);
3179 frame_count
= 0xdeadbeef;
3180 status
= GdipImageGetFrameCount(image
, &guid
, &frame_count
);
3182 expect(1, frame_count
);
3184 prop_count
= 0xdeadbeef;
3185 status
= GdipGetPropertyCount(image
, &prop_count
);
3187 ok(prop_count
== sizeof(td
)/sizeof(td
[0]) ||
3188 broken(prop_count
== sizeof(td
)/sizeof(td
[0]) - 1) /* Win7 SP0 */,
3189 "expected property count %u, got %u\n", (UINT
)(sizeof(td
)/sizeof(td
[0])), prop_count
);
3191 prop_id
= HeapAlloc(GetProcessHeap(), 0, prop_count
* sizeof(*prop_id
));
3193 status
= GdipGetPropertyIdList(image
, prop_count
, prop_id
);
3196 for (i
= 0; i
< prop_count
; i
++)
3198 status
= GdipGetPropertyItemSize(image
, prop_id
[i
], &prop_size
);
3200 if (status
!= Ok
) break;
3201 ok(prop_size
> sizeof(*prop_item
), "%u: too small item length %u\n", i
, prop_size
);
3203 prop_item
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, prop_size
);
3204 status
= GdipGetPropertyItem(image
, prop_id
[i
], prop_size
, prop_item
);
3206 ok(prop_item
->value
== prop_item
+ 1, "expected item->value %p, got %p\n", prop_item
+ 1, prop_item
->value
);
3207 ok(td
[i
].type
== prop_item
->type
||
3208 /* Win7 stopped using proper but not documented types, and it
3209 looks broken since TypeFloat and TypeDouble now reported as
3210 TypeUndefined, and signed types reported as unsigned. */
3211 broken(prop_item
->type
== documented_type(td
[i
].type
)),
3212 "%u: expected type %u, got %u\n", i
, td
[i
].type
, prop_item
->type
);
3213 ok(td
[i
].id
== prop_item
->id
, "%u: expected id %#x, got %#x\n", i
, td
[i
].id
, prop_item
->id
);
3214 prop_size
-= sizeof(*prop_item
);
3215 ok(prop_item
->length
== prop_size
, "%u: expected length %u, got %u\n", i
, prop_size
, prop_item
->length
);
3216 ok(td
[i
].length
== prop_item
->length
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_item
->length
);
3217 ok(td
[i
].length
== prop_size
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_size
);
3218 if (td
[i
].length
== prop_item
->length
)
3220 int match
= memcmp(td
[i
].value
, prop_item
->value
, td
[i
].length
) == 0;
3221 ok(match
|| broken(td
[i
].length
<= 4 && !match
), "%u: data mismatch\n", i
);
3225 BYTE
*data
= prop_item
->value
;
3226 printf("id %#x:", prop_item
->id
);
3227 for (j
= 0; j
< prop_item
->length
; j
++)
3228 printf(" %02x", data
[j
]);
3232 HeapFree(GetProcessHeap(), 0, prop_item
);
3235 HeapFree(GetProcessHeap(), 0, prop_id
);
3237 GdipDisposeImage(image
);
3240 static void test_GdipGetAllPropertyItems(void)
3242 static const struct test_data
3244 ULONG type
, id
, length
;
3248 { PropertyTagTypeLong
, 0xfe, 4, { 0 } },
3249 { PropertyTagTypeShort
, 0x100, 2, { 1 } },
3250 { PropertyTagTypeShort
, 0x101, 2, { 1 } },
3251 { PropertyTagTypeShort
, 0x102, 6, { 8,0,8,0,8,0 } },
3252 { PropertyTagTypeShort
, 0x103, 2, { 1 } },
3253 { PropertyTagTypeShort
, 0x106, 2, { 2,0 } },
3254 { PropertyTagTypeASCII
, 0x10d, 27, "/home/meh/Desktop/test.tif" },
3255 { PropertyTagTypeLong
, 0x111, 4, { 8,0,0,0 } },
3256 { PropertyTagTypeShort
, 0x112, 2, { 1 } },
3257 { PropertyTagTypeShort
, 0x115, 2, { 3,0 } },
3258 { PropertyTagTypeShort
, 0x116, 2, { 0x40,0 } },
3259 { PropertyTagTypeLong
, 0x117, 4, { 3,0,0,0 } },
3260 { PropertyTagTypeRational
, 0x11a, 8, { 0,0,0,72,0,0,0,1 } },
3261 { PropertyTagTypeRational
, 0x11b, 8, { 0,0,0,72,0,0,0,1 } },
3262 { PropertyTagTypeShort
, 0x11c, 2, { 1 } },
3263 { PropertyTagTypeShort
, 0x128, 2, { 2 } }
3268 UINT dim_count
, frame_count
, prop_count
, prop_size
, i
;
3269 UINT total_size
, total_count
;
3271 PropertyItem
*prop_item
;
3272 const char *item_data
;
3274 image
= load_image(tiffimage
, sizeof(tiffimage
));
3275 ok(image
!= 0, "Failed to load TIFF image data\n");
3278 dim_count
= 0xdeadbeef;
3279 status
= GdipImageGetFrameDimensionsCount(image
, &dim_count
);
3281 expect(1, dim_count
);
3283 status
= GdipImageGetFrameDimensionsList(image
, &guid
, 1);
3285 expect_guid(&FrameDimensionPage
, &guid
, __LINE__
, FALSE
);
3287 frame_count
= 0xdeadbeef;
3288 status
= GdipImageGetFrameCount(image
, &guid
, &frame_count
);
3290 expect(1, frame_count
);
3292 prop_count
= 0xdeadbeef;
3293 status
= GdipGetPropertyCount(image
, &prop_count
);
3295 ok(prop_count
== sizeof(td
)/sizeof(td
[0]),
3296 "expected property count %u, got %u\n", (UINT
)(sizeof(td
)/sizeof(td
[0])), prop_count
);
3298 prop_id
= HeapAlloc(GetProcessHeap(), 0, prop_count
* sizeof(*prop_id
));
3300 status
= GdipGetPropertyIdList(image
, prop_count
, prop_id
);
3304 for (i
= 0; i
< prop_count
; i
++)
3307 status
= GdipGetPropertyItemSize(image
, prop_id
[i
], &size
);
3309 if (status
!= Ok
) break;
3310 ok(size
> sizeof(*prop_item
), "%u: too small item length %u\n", i
, size
);
3314 prop_item
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
3315 status
= GdipGetPropertyItem(image
, prop_id
[i
], size
, prop_item
);
3317 ok(prop_item
->value
== prop_item
+ 1, "expected item->value %p, got %p\n", prop_item
+ 1, prop_item
->value
);
3318 ok(td
[i
].type
== prop_item
->type
,
3319 "%u: expected type %u, got %u\n", i
, td
[i
].type
, prop_item
->type
);
3320 ok(td
[i
].id
== prop_item
->id
, "%u: expected id %#x, got %#x\n", i
, td
[i
].id
, prop_item
->id
);
3321 size
-= sizeof(*prop_item
);
3322 ok(prop_item
->length
== size
, "%u: expected length %u, got %u\n", i
, size
, prop_item
->length
);
3323 ok(td
[i
].length
== prop_item
->length
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_item
->length
);
3324 if (td
[i
].length
== prop_item
->length
)
3326 int match
= memcmp(td
[i
].value
, prop_item
->value
, td
[i
].length
) == 0;
3327 ok(match
, "%u: data mismatch\n", i
);
3331 BYTE
*data
= prop_item
->value
;
3332 printf("id %#x:", prop_item
->id
);
3333 for (j
= 0; j
< prop_item
->length
; j
++)
3334 printf(" %02x", data
[j
]);
3338 HeapFree(GetProcessHeap(), 0, prop_item
);
3341 HeapFree(GetProcessHeap(), 0, prop_id
);
3343 status
= GdipGetPropertySize(NULL
, &total_size
, &total_count
);
3344 expect(InvalidParameter
, status
);
3345 status
= GdipGetPropertySize(image
, &total_size
, NULL
);
3346 expect(InvalidParameter
, status
);
3347 status
= GdipGetPropertySize(image
, NULL
, &total_count
);
3348 expect(InvalidParameter
, status
);
3349 status
= GdipGetPropertySize(image
, NULL
, NULL
);
3350 expect(InvalidParameter
, status
);
3351 total_size
= 0xdeadbeef;
3352 total_count
= 0xdeadbeef;
3353 status
= GdipGetPropertySize(image
, &total_size
, &total_count
);
3355 ok(prop_count
== total_count
,
3356 "expected total property count %u, got %u\n", prop_count
, total_count
);
3357 ok(prop_size
== total_size
,
3358 "expected total property size %u, got %u\n", prop_size
, total_size
);
3360 prop_item
= HeapAlloc(GetProcessHeap(), 0, prop_size
);
3362 status
= GdipGetAllPropertyItems(image
, 0, prop_count
, prop_item
);
3363 expect(InvalidParameter
, status
);
3364 status
= GdipGetAllPropertyItems(image
, prop_size
, 1, prop_item
);
3365 expect(InvalidParameter
, status
);
3366 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, NULL
);
3367 expect(InvalidParameter
, status
);
3368 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, NULL
);
3369 expect(InvalidParameter
, status
);
3370 status
= GdipGetAllPropertyItems(image
, 0, 0, NULL
);
3371 expect(InvalidParameter
, status
);
3372 status
= GdipGetAllPropertyItems(image
, prop_size
+ 1, prop_count
, prop_item
);
3373 expect(InvalidParameter
, status
);
3374 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, prop_item
);
3377 item_data
= (const char *)(prop_item
+ prop_count
);
3378 for (i
= 0; i
< prop_count
; i
++)
3380 ok(prop_item
[i
].value
== item_data
, "%u: expected value %p, got %p\n",
3381 i
, item_data
, prop_item
[i
].value
);
3382 ok(td
[i
].type
== prop_item
[i
].type
,
3383 "%u: expected type %u, got %u\n", i
, td
[i
].type
, prop_item
[i
].type
);
3384 ok(td
[i
].id
== prop_item
[i
].id
, "%u: expected id %#x, got %#x\n", i
, td
[i
].id
, prop_item
[i
].id
);
3385 ok(td
[i
].length
== prop_item
[i
].length
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_item
[i
].length
);
3386 if (td
[i
].length
== prop_item
[i
].length
)
3388 int match
= memcmp(td
[i
].value
, prop_item
[i
].value
, td
[i
].length
) == 0;
3389 ok(match
, "%u: data mismatch\n", i
);
3393 BYTE
*data
= prop_item
[i
].value
;
3394 printf("id %#x:", prop_item
[i
].id
);
3395 for (j
= 0; j
< prop_item
[i
].length
; j
++)
3396 printf(" %02x", data
[j
]);
3400 item_data
+= prop_item
[i
].length
;
3403 HeapFree(GetProcessHeap(), 0, prop_item
);
3405 GdipDisposeImage(image
);
3408 static void test_tiff_palette(void)
3419 ARGB
*entries
= palette
.pal
.Entries
;
3421 /* 1bpp TIFF without palette */
3422 image
= load_image((const BYTE
*)&TIFF_data
, sizeof(TIFF_data
));
3425 win_skip("Failed to load TIFF image data. Might not be supported. Skipping.\n");
3429 status
= GdipGetImagePixelFormat(image
, &format
);
3431 ok(format
== PixelFormat1bppIndexed
, "expected PixelFormat1bppIndexed, got %#x\n", format
);
3433 status
= GdipGetImagePaletteSize(image
, &size
);
3434 ok(status
== Ok
|| broken(status
== GenericError
), /* XP */
3435 "GdipGetImagePaletteSize error %d\n", status
);
3436 if (status
== GenericError
)
3438 GdipDisposeImage(image
);
3441 expect(sizeof(ColorPalette
) + sizeof(ARGB
), size
);
3443 status
= GdipGetImagePalette(image
, &palette
.pal
, size
);
3445 expect(0, palette
.pal
.Flags
);
3446 expect(2, palette
.pal
.Count
);
3447 if (palette
.pal
.Count
== 2)
3449 ok(entries
[0] == 0xff000000, "expected 0xff000000, got %#x\n", entries
[0]);
3450 ok(entries
[1] == 0xffffffff, "expected 0xffffffff, got %#x\n", entries
[1]);
3453 GdipDisposeImage(image
);
3456 static void test_bitmapbits(void)
3459 static const BYTE pixels_24
[48] =
3461 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3462 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3463 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3464 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0
3466 static const BYTE pixels_00
[48] =
3468 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3469 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3470 0,0,0, 0,0,0, 0,0,0, 0,0,0,
3471 0,0,0, 0,0,0, 0,0,0, 0,0,0
3473 static const BYTE pixels_24_77
[64] =
3475 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3476 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3477 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3478 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3479 0xff,0xff,0xff, 0,0,0, 0xff,0xff,0xff, 0,0,0,
3480 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3482 static const BYTE pixels_77
[64] =
3484 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3485 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3486 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3487 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3488 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3489 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3490 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3491 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3493 static const BYTE pixels_8
[16] =
3495 0x01,0,0x01,0,0x01,0,0x01,0,
3496 0x01,0,0x01,0,0x01,0,0x01,0
3498 static const BYTE pixels_8_77
[64] =
3500 0x01,0,0x01,0,0x01,0,0x01,0,
3501 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3502 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3503 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3504 0x01,0,0x01,0,0x01,0,0x01,0,
3505 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3506 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3507 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3509 static const BYTE pixels_1_77
[64] =
3511 0xaa,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3512 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3513 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3514 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3515 0xaa,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3516 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3517 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77,
3518 0x77,0x77,0x77,0x77,0x77,0x77,0x77,0x77
3520 static const BYTE pixels_1
[8] = {0xaa,0,0,0,0xaa,0,0,0};
3521 static const struct test_data
3528 const BYTE
*pixels_unlocked
;
3532 { PixelFormat24bppRGB
, 24, 0xfff0, 24, 48, pixels_24
, pixels_00
},
3534 { PixelFormat24bppRGB
, 24, 0, 24, 48, pixels_24
, pixels_00
},
3535 { PixelFormat24bppRGB
, 24, ImageLockModeRead
, 24, 48, pixels_24
, pixels_00
},
3536 { PixelFormat24bppRGB
, 24, ImageLockModeWrite
, 24, 48, pixels_24
, pixels_00
},
3537 { PixelFormat24bppRGB
, 24, ImageLockModeRead
|ImageLockModeWrite
, 24, 48, pixels_24
, pixels_00
},
3538 { PixelFormat24bppRGB
, 24, ImageLockModeRead
|ImageLockModeUserInputBuf
, 32, 64, pixels_24_77
, pixels_24
},
3539 { PixelFormat24bppRGB
, 24, ImageLockModeWrite
|ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_00
},
3540 { PixelFormat24bppRGB
, 24, ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_24
},
3542 { PixelFormat8bppIndexed
, 8, 0, 8, 16, pixels_8
, pixels_24
},
3543 { PixelFormat8bppIndexed
, 8, ImageLockModeRead
, 8, 16, pixels_8
, pixels_24
},
3544 { PixelFormat8bppIndexed
, 8, ImageLockModeWrite
, 8, 16, pixels_8
, pixels_00
},
3545 { PixelFormat8bppIndexed
, 8, ImageLockModeRead
|ImageLockModeWrite
, 8, 16, pixels_8
, pixels_00
},
3546 { PixelFormat8bppIndexed
, 8, ImageLockModeRead
|ImageLockModeUserInputBuf
, 32, 64, pixels_8_77
, pixels_24
},
3547 { PixelFormat8bppIndexed
, 8, ImageLockModeWrite
|ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_00
},
3548 { PixelFormat8bppIndexed
, 8, ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_24
},
3550 { PixelFormat1bppIndexed
, 1, 0, 4, 8, pixels_1
, pixels_24
},
3551 { PixelFormat1bppIndexed
, 1, ImageLockModeRead
, 4, 8, pixels_1
, pixels_24
},
3552 { PixelFormat1bppIndexed
, 1, ImageLockModeWrite
, 4, 8, pixels_1
, pixels_00
},
3553 { PixelFormat1bppIndexed
, 1, ImageLockModeRead
|ImageLockModeWrite
, 4, 8, pixels_1
, pixels_00
},
3554 { PixelFormat1bppIndexed
, 1, ImageLockModeRead
|ImageLockModeUserInputBuf
, 32, 64, pixels_1_77
, pixels_24
},
3555 { PixelFormat1bppIndexed
, 1, ImageLockModeWrite
|ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_00
},
3556 { PixelFormat1bppIndexed
, 1, ImageLockModeUserInputBuf
, 32, 64, pixels_77
, pixels_24
},
3568 ARGB
*entries
= palette
.pal
.Entries
;
3570 for (i
= 0; i
< sizeof(td
)/sizeof(td
[0]); i
++)
3572 BYTE pixels
[sizeof(pixels_24
)];
3573 memcpy(pixels
, pixels_24
, sizeof(pixels_24
));
3574 status
= GdipCreateBitmapFromScan0(8, 2, 24, PixelFormat24bppRGB
, pixels
, &bitmap
);
3577 /* associate known palette with pixel data */
3578 palette
.pal
.Flags
= PaletteFlagsGrayScale
;
3579 palette
.pal
.Count
= 2;
3580 entries
[0] = 0xff000000;
3581 entries
[1] = 0xffffffff;
3582 status
= GdipSetImagePalette((GpImage
*)bitmap
, &palette
.pal
);
3585 memset(&data
, 0xfe, sizeof(data
));
3586 if (td
[i
].mode
& ImageLockModeUserInputBuf
)
3588 memset(buf
, 0x77, sizeof(buf
));
3592 status
= GdipBitmapLockBits(bitmap
, NULL
, td
[i
].mode
, td
[i
].format
, &data
);
3593 ok(status
== Ok
|| broken(status
== InvalidParameter
) /* XP */, "%u: GdipBitmapLockBits error %d\n", i
, status
);
3596 GdipDisposeImage((GpImage
*)bitmap
);
3599 ok(data
.Width
== 8, "%u: expected 8, got %d\n", i
, data
.Width
);
3600 ok(data
.Height
== 2, "%u: expected 2, got %d\n", i
, data
.Height
);
3601 ok(td
[i
].stride
== data
.Stride
, "%u: expected %d, got %d\n", i
, td
[i
].stride
, data
.Stride
);
3602 ok(td
[i
].format
== data
.PixelFormat
, "%u: expected %d, got %d\n", i
, td
[i
].format
, data
.PixelFormat
);
3603 ok(td
[i
].size
== data
.Height
* data
.Stride
, "%u: expected %d, got %d\n", i
, td
[i
].size
, data
.Height
* data
.Stride
);
3604 if (td
[i
].mode
& ImageLockModeUserInputBuf
)
3605 ok(data
.Scan0
== buf
, "%u: got wrong buffer\n", i
);
3606 if (td
[i
].size
== data
.Height
* data
.Stride
)
3608 UINT j
, match
, width_bytes
= (data
.Width
* td
[i
].bpp
) / 8;
3611 for (j
= 0; j
< data
.Height
; j
++)
3613 if (memcmp((const BYTE
*)data
.Scan0
+ j
* data
.Stride
, td
[i
].pixels
+ j
* data
.Stride
, width_bytes
) != 0)
3619 if ((td
[i
].mode
& (ImageLockModeRead
|ImageLockModeUserInputBuf
)) || td
[i
].format
== PixelFormat24bppRGB
)
3622 "%u: data should match\n", i
);
3625 BYTE
*bits
= data
.Scan0
;
3626 printf("%u: data mismatch for format %#x:", i
, td
[i
].format
);
3627 for (j
= 0; j
< td
[i
].size
; j
++)
3628 printf(" %02x", bits
[j
]);
3633 ok(!match
, "%u: data shouldn't match\n", i
);
3635 memset(data
.Scan0
, 0, td
[i
].size
);
3638 status
= GdipBitmapUnlockBits(bitmap
, &data
);
3639 ok(status
== Ok
, "%u: GdipBitmapUnlockBits error %d\n", i
, status
);
3641 memset(&data
, 0xfe, sizeof(data
));
3642 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, PixelFormat24bppRGB
, &data
);
3643 ok(status
== Ok
, "%u: GdipBitmapLockBits error %d\n", i
, status
);
3644 ok(data
.Width
== 8, "%u: expected 8, got %d\n", i
, data
.Width
);
3645 ok(data
.Height
== 2, "%u: expected 2, got %d\n", i
, data
.Height
);
3646 ok(data
.Stride
== 24, "%u: expected 24, got %d\n", i
, data
.Stride
);
3647 ok(data
.PixelFormat
== PixelFormat24bppRGB
, "%u: got wrong pixel format %d\n", i
, data
.PixelFormat
);
3648 ok(data
.Height
* data
.Stride
== 48, "%u: expected 48, got %d\n", i
, data
.Height
* data
.Stride
);
3649 if (data
.Height
* data
.Stride
== 48)
3651 int match
= memcmp(data
.Scan0
, td
[i
].pixels_unlocked
, 48) == 0;
3652 ok(match
, "%u: data should match\n", i
);
3656 BYTE
*bits
= data
.Scan0
;
3657 printf("%u: data mismatch for format %#x:", i
, td
[i
].format
);
3658 for (j
= 0; j
< 48; j
++)
3659 printf(" %02x", bits
[j
]);
3664 status
= GdipBitmapUnlockBits(bitmap
, &data
);
3665 ok(status
== Ok
, "%u: GdipBitmapUnlockBits error %d\n", i
, status
);
3667 status
= GdipDisposeImage((GpImage
*)bitmap
);
3672 static void test_DrawImage(void)
3674 BYTE black_1x1
[4] = { 0,0,0,0 };
3675 BYTE white_2x2
[16] = { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
3676 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff };
3677 BYTE black_2x2
[16] = { 0,0,0,0,0,0,0xff,0xff,
3678 0,0,0,0,0,0,0xff,0xff };
3685 GpGraphics
*graphics
;
3688 status
= GdipCreateBitmapFromScan0(1, 1, 4, PixelFormat24bppRGB
, black_1x1
, &u1
.bitmap
);
3690 status
= GdipBitmapSetResolution(u1
.bitmap
, 100.0, 100.0);
3693 status
= GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat24bppRGB
, white_2x2
, &u2
.bitmap
);
3695 status
= GdipBitmapSetResolution(u2
.bitmap
, 300.0, 300.0);
3697 status
= GdipGetImageGraphicsContext(u2
.image
, &graphics
);
3699 status
= GdipSetInterpolationMode(graphics
, InterpolationModeNearestNeighbor
);
3702 status
= GdipDrawImageI(graphics
, u1
.image
, 0, 0);
3705 match
= memcmp(white_2x2
, black_2x2
, sizeof(black_2x2
)) == 0;
3706 ok(match
, "data should match\n");
3709 UINT i
, size
= sizeof(white_2x2
);
3710 BYTE
*bits
= white_2x2
;
3711 for (i
= 0; i
< size
; i
++)
3712 printf(" %02x", bits
[i
]);
3716 status
= GdipDeleteGraphics(graphics
);
3718 status
= GdipDisposeImage(u1
.image
);
3720 status
= GdipDisposeImage(u2
.image
);
3724 static void test_GdipDrawImagePointRect(void)
3726 BYTE black_1x1
[4] = { 0,0,0,0 };
3727 BYTE white_2x2
[16] = { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
3728 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff };
3729 BYTE black_2x2
[16] = { 0,0,0,0,0,0,0xff,0xff,
3730 0,0,0,0,0,0,0xff,0xff };
3737 GpGraphics
*graphics
;
3740 status
= GdipCreateBitmapFromScan0(1, 1, 4, PixelFormat24bppRGB
, black_1x1
, &u1
.bitmap
);
3742 status
= GdipBitmapSetResolution(u1
.bitmap
, 100.0, 100.0);
3745 status
= GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat24bppRGB
, white_2x2
, &u2
.bitmap
);
3747 status
= GdipBitmapSetResolution(u2
.bitmap
, 300.0, 300.0);
3749 status
= GdipGetImageGraphicsContext(u2
.image
, &graphics
);
3751 status
= GdipSetInterpolationMode(graphics
, InterpolationModeNearestNeighbor
);
3754 status
= GdipDrawImagePointRectI(graphics
, u1
.image
, 0, 0, 0, 0, 1, 1, UnitPixel
);
3757 match
= memcmp(white_2x2
, black_2x2
, sizeof(black_2x2
)) == 0;
3758 ok(match
, "data should match\n");
3761 UINT i
, size
= sizeof(white_2x2
);
3762 BYTE
*bits
= white_2x2
;
3763 for (i
= 0; i
< size
; i
++)
3764 printf(" %02x", bits
[i
]);
3768 status
= GdipDeleteGraphics(graphics
);
3770 status
= GdipDisposeImage(u1
.image
);
3772 status
= GdipDisposeImage(u2
.image
);
3776 static void test_image_format(void)
3778 static const PixelFormat fmt
[] =
3780 PixelFormat1bppIndexed
, PixelFormat4bppIndexed
, PixelFormat8bppIndexed
,
3781 PixelFormat16bppGrayScale
, PixelFormat16bppRGB555
, PixelFormat16bppRGB565
,
3782 PixelFormat16bppARGB1555
, PixelFormat24bppRGB
, PixelFormat32bppRGB
,
3783 PixelFormat32bppARGB
, PixelFormat32bppPARGB
, PixelFormat48bppRGB
,
3784 PixelFormat64bppARGB
, PixelFormat64bppPARGB
, PixelFormat32bppCMYK
3795 for (i
= 0; i
< sizeof(fmt
)/sizeof(fmt
[0]); i
++)
3797 status
= GdipCreateBitmapFromScan0(1, 1, 0, fmt
[i
], NULL
, &bitmap
);
3798 ok(status
== Ok
|| broken(status
== InvalidParameter
) /* before win7 */,
3799 "GdipCreateBitmapFromScan0 error %d\n", status
);
3800 if (status
!= Ok
) continue;
3802 status
= GdipGetImagePixelFormat((GpImage
*)bitmap
, &format
);
3804 expect(fmt
[i
], format
);
3806 status
= GdipCreateHBITMAPFromBitmap(bitmap
, &hbitmap
, 0);
3807 if (fmt
[i
] == PixelFormat16bppGrayScale
|| fmt
[i
] == PixelFormat32bppCMYK
)
3808 todo_wine
expect(InvalidParameter
, status
);
3812 ret
= GetObject(hbitmap
, sizeof(bm
), &bm
);
3813 expect(sizeof(bm
), ret
);
3814 expect(0, bm
.bmType
);
3815 expect(1, bm
.bmWidth
);
3816 expect(1, bm
.bmHeight
);
3817 expect(4, bm
.bmWidthBytes
);
3818 expect(1, bm
.bmPlanes
);
3819 expect(32, bm
.bmBitsPixel
);
3820 DeleteObject(hbitmap
);
3823 status
= GdipGetImageThumbnail((GpImage
*)bitmap
, 0, 0, &thumb
, NULL
, NULL
);
3824 if (fmt
[i
] == PixelFormat16bppGrayScale
|| fmt
[i
] == PixelFormat32bppCMYK
)
3826 ok(status
== OutOfMemory
|| broken(status
== InvalidParameter
) /* before win7 */,
3827 "expected OutOfMemory, got %d\n", status
);
3831 status
= GdipGetImagePixelFormat(thumb
, &format
);
3833 ok(format
== PixelFormat32bppPARGB
|| broken(format
!= PixelFormat32bppPARGB
) /* before win7 */,
3834 "expected PixelFormat32bppPARGB, got %#x\n", format
);
3835 status
= GdipDisposeImage(thumb
);
3839 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, PixelFormat32bppPARGB
, &data
);
3840 if (fmt
[i
] == PixelFormat16bppGrayScale
|| fmt
[i
] == PixelFormat32bppCMYK
)
3841 todo_wine
expect(InvalidParameter
, status
);
3845 status
= GdipBitmapUnlockBits(bitmap
, &data
);
3849 status
= GdipDisposeImage((GpImage
*)bitmap
);
3854 static void test_DrawImage_scale(void)
3856 static const BYTE back_8x1
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
3857 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3858 static const BYTE image_080
[24] = { 0x40,0x40,0x40,0x80,0x80,0x80,0x40,0x40,0x40,0x40,0x40,0x40,
3859 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3860 static const BYTE image_100
[24] = { 0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x40,
3861 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3862 static const BYTE image_120
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x40,0x40,0x40,
3863 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3864 static const BYTE image_150
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,
3865 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3866 static const BYTE image_180
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,
3867 0x80,0x80,0x80,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3868 static const BYTE image_200
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,
3869 0x80,0x80,0x80,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3870 static const BYTE image_250
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,
3871 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x40 };
3872 static const BYTE image_120_half
[24] = { 0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
3873 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3874 static const BYTE image_150_half
[24] = { 0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
3875 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 };
3876 static const BYTE image_200_half
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,
3877 0x80,0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x40,0x40,0x40,0x40 };
3878 static const BYTE image_250_half
[24] = { 0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,
3879 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x40 };
3880 static const struct test_data
3883 PixelOffsetMode pixel_offset_mode
;
3888 { 0.8, PixelOffsetModeNone
, image_080
}, /* 0 */
3889 { 1.0, PixelOffsetModeNone
, image_100
},
3890 { 1.2, PixelOffsetModeNone
, image_120
},
3891 { 1.5, PixelOffsetModeNone
, image_150
},
3892 { 1.8, PixelOffsetModeNone
, image_180
},
3893 { 2.0, PixelOffsetModeNone
, image_200
},
3894 { 2.5, PixelOffsetModeNone
, image_250
},
3896 { 0.8, PixelOffsetModeHighSpeed
, image_080
}, /* 7 */
3897 { 1.0, PixelOffsetModeHighSpeed
, image_100
},
3898 { 1.2, PixelOffsetModeHighSpeed
, image_120
},
3899 { 1.5, PixelOffsetModeHighSpeed
, image_150
},
3900 { 1.8, PixelOffsetModeHighSpeed
, image_180
},
3901 { 2.0, PixelOffsetModeHighSpeed
, image_200
},
3902 { 2.5, PixelOffsetModeHighSpeed
, image_250
},
3904 { 0.8, PixelOffsetModeHalf
, image_080
}, /* 14 */
3905 { 1.0, PixelOffsetModeHalf
, image_100
},
3906 { 1.2, PixelOffsetModeHalf
, image_120_half
, TRUE
},
3907 { 1.5, PixelOffsetModeHalf
, image_150_half
, TRUE
},
3908 { 1.8, PixelOffsetModeHalf
, image_180
},
3909 { 2.0, PixelOffsetModeHalf
, image_200_half
, TRUE
},
3910 { 2.5, PixelOffsetModeHalf
, image_250_half
, TRUE
},
3912 { 0.8, PixelOffsetModeHighQuality
, image_080
}, /* 21 */
3913 { 1.0, PixelOffsetModeHighQuality
, image_100
},
3914 { 1.2, PixelOffsetModeHighQuality
, image_120_half
, TRUE
},
3915 { 1.5, PixelOffsetModeHighQuality
, image_150_half
, TRUE
},
3916 { 1.8, PixelOffsetModeHighQuality
, image_180
},
3917 { 2.0, PixelOffsetModeHighQuality
, image_200_half
, TRUE
},
3918 { 2.5, PixelOffsetModeHighQuality
, image_250_half
, TRUE
},
3920 BYTE src_2x1
[6] = { 0x80,0x80,0x80,0x80,0x80,0x80 };
3928 GpGraphics
*graphics
;
3932 status
= GdipCreateBitmapFromScan0(2, 1, 4, PixelFormat24bppRGB
, src_2x1
, &u1
.bitmap
);
3934 status
= GdipBitmapSetResolution(u1
.bitmap
, 100.0, 100.0);
3937 status
= GdipCreateBitmapFromScan0(8, 1, 24, PixelFormat24bppRGB
, dst_8x1
, &u2
.bitmap
);
3939 status
= GdipBitmapSetResolution(u2
.bitmap
, 100.0, 100.0);
3941 status
= GdipGetImageGraphicsContext(u2
.image
, &graphics
);
3943 status
= GdipSetInterpolationMode(graphics
, InterpolationModeNearestNeighbor
);
3946 for (i
= 0; i
< sizeof(td
)/sizeof(td
[0]); i
++)
3948 status
= GdipSetPixelOffsetMode(graphics
, td
[i
].pixel_offset_mode
);
3951 status
= GdipCreateMatrix2(td
[i
].scale_x
, 0.0, 0.0, 1.0, 0.0, 0.0, &matrix
);
3953 status
= GdipSetWorldTransform(graphics
, matrix
);
3955 GdipDeleteMatrix(matrix
);
3957 memcpy(dst_8x1
, back_8x1
, sizeof(dst_8x1
));
3958 status
= GdipDrawImageI(graphics
, u1
.image
, 1, 0);
3961 match
= memcmp(dst_8x1
, td
[i
].image
, sizeof(dst_8x1
)) == 0;
3962 if (!match
&& td
[i
].todo
)
3963 todo_wine
ok(match
, "%d: data should match\n", i
);
3965 ok(match
, "%d: data should match\n", i
);
3968 UINT i
, size
= sizeof(dst_8x1
);
3969 const BYTE
*bits
= dst_8x1
;
3970 for (i
= 0; i
< size
; i
++)
3971 printf(" %02x", bits
[i
]);
3976 status
= GdipDeleteGraphics(graphics
);
3978 status
= GdipDisposeImage(u1
.image
);
3980 status
= GdipDisposeImage(u2
.image
);
3984 static const BYTE animatedgif
[] = {
3985 'G','I','F','8','9','a',0x01,0x00,0x01,0x00,0xA1,0x02,0x00,
3986 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,
3987 /*0x21,0xFF,0x0B,'A','N','I','M','E','X','T','S','1','.','0',*/
3988 0x21,0xFF,0x0B,'N','E','T','S','C','A','P','E','2','.','0',
3989 0x03,0x01,0x05,0x00,0x00,
3990 0x21,0xFE,0x0C,'H','e','l','l','o',' ','W','o','r','l','d','!',0x00,
3991 0x21,0x01,0x0D,'a','n','i','m','a','t','i','o','n','.','g','i','f',0x00,
3992 0x21,0xF9,0x04,0xff,0x0A,0x00,0x08,0x00,
3993 0x2C,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x81,
3994 0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xab,0xac,
3995 0x02,0x02,0x4C,0x01,0x00,
3996 0x21,0xFE,0x08,'i','m','a','g','e',' ','#','1',0x00,
3997 0x21,0x01,0x0C,'p','l','a','i','n','t','e','x','t',' ','#','1',0x00,
3998 0x21,0xF9,0x04,0x00,0x14,0x00,0x01,0x00,
3999 0x2C,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x81,
4000 0xb1,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xbb,0xbc,
4001 0x02,0x02,0x44,0x01,0x00,
4002 0x21,0xFE,0x08,'i','m','a','g','e',' ','#','2',0x00,
4003 0x21,0x01,0x0C,'p','l','a','i','n','t','e','x','t',' ','#','2',0x00,0x3B
4006 static void test_gif_properties(void)
4008 static const struct test_data
4010 ULONG type
, id
, length
;
4011 const BYTE value
[13];
4014 { PropertyTagTypeLong
, PropertyTagFrameDelay
, 8, { 10,0,0,0,20,0,0,0 } },
4015 { PropertyTagTypeASCII
, PropertyTagExifUserComment
, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } },
4016 { PropertyTagTypeShort
, PropertyTagLoopCount
, 2, { 5,0 } },
4017 { PropertyTagTypeByte
, PropertyTagGlobalPalette
, 12, { 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c } },
4018 { PropertyTagTypeByte
, PropertyTagIndexBackground
, 1, { 2 } },
4019 { PropertyTagTypeByte
, PropertyTagIndexTransparent
, 1, { 8 } }
4024 UINT dim_count
, frame_count
, prop_count
, prop_size
, i
;
4025 UINT total_size
, total_count
;
4027 PropertyItem
*prop_item
;
4028 const char *item_data
;
4030 image
= load_image(animatedgif
, sizeof(animatedgif
));
4031 if (!image
) /* XP fails to load this GIF image */
4033 trace("Failed to load GIF image data\n");
4037 status
= GdipImageGetFrameDimensionsCount(image
, &dim_count
);
4039 expect(1, dim_count
);
4041 status
= GdipImageGetFrameDimensionsList(image
, &guid
, 1);
4043 expect_guid(&FrameDimensionTime
, &guid
, __LINE__
, FALSE
);
4045 status
= GdipImageGetFrameCount(image
, &guid
, &frame_count
);
4047 expect(2, frame_count
);
4049 status
= GdipImageSelectActiveFrame(image
, &guid
, 1);
4052 status
= GdipGetPropertyCount(image
, &prop_count
);
4054 ok(prop_count
== sizeof(td
)/sizeof(td
[0]) || broken(prop_count
== 1) /* before win7 */,
4055 "expected property count %u, got %u\n", (UINT
)(sizeof(td
)/sizeof(td
[0])), prop_count
);
4057 if (prop_count
!= sizeof(td
)/sizeof(td
[0]))
4059 GdipDisposeImage(image
);
4063 prop_id
= HeapAlloc(GetProcessHeap(), 0, prop_count
* sizeof(*prop_id
));
4065 status
= GdipGetPropertyIdList(image
, prop_count
, prop_id
);
4069 for (i
= 0; i
< prop_count
; i
++)
4072 status
= GdipGetPropertyItemSize(image
, prop_id
[i
], &size
);
4074 if (status
!= Ok
) break;
4075 ok(size
> sizeof(*prop_item
), "%u: too small item length %u\n", i
, size
);
4079 prop_item
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
4080 status
= GdipGetPropertyItem(image
, prop_id
[i
], size
, prop_item
);
4082 ok(prop_item
->value
== prop_item
+ 1, "expected item->value %p, got %p\n", prop_item
+ 1, prop_item
->value
);
4083 ok(td
[i
].type
== prop_item
->type
,
4084 "%u: expected type %u, got %u\n", i
, td
[i
].type
, prop_item
->type
);
4085 ok(td
[i
].id
== prop_item
->id
, "%u: expected id %#x, got %#x\n", i
, td
[i
].id
, prop_item
->id
);
4086 size
-= sizeof(*prop_item
);
4087 ok(prop_item
->length
== size
, "%u: expected length %u, got %u\n", i
, size
, prop_item
->length
);
4088 ok(td
[i
].length
== prop_item
->length
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_item
->length
);
4089 if (td
[i
].length
== prop_item
->length
)
4091 int match
= memcmp(td
[i
].value
, prop_item
->value
, td
[i
].length
) == 0;
4092 ok(match
, "%u: data mismatch\n", i
);
4096 BYTE
*data
= prop_item
->value
;
4097 printf("id %#x:", prop_item
->id
);
4098 for (j
= 0; j
< prop_item
->length
; j
++)
4099 printf(" %02x", data
[j
]);
4103 HeapFree(GetProcessHeap(), 0, prop_item
);
4106 HeapFree(GetProcessHeap(), 0, prop_id
);
4108 status
= GdipGetPropertySize(NULL
, &total_size
, &total_count
);
4109 expect(InvalidParameter
, status
);
4110 status
= GdipGetPropertySize(image
, &total_size
, NULL
);
4111 expect(InvalidParameter
, status
);
4112 status
= GdipGetPropertySize(image
, NULL
, &total_count
);
4113 expect(InvalidParameter
, status
);
4114 status
= GdipGetPropertySize(image
, NULL
, NULL
);
4115 expect(InvalidParameter
, status
);
4116 total_size
= 0xdeadbeef;
4117 total_count
= 0xdeadbeef;
4118 status
= GdipGetPropertySize(image
, &total_size
, &total_count
);
4120 ok(prop_count
== total_count
,
4121 "expected total property count %u, got %u\n", prop_count
, total_count
);
4122 ok(prop_size
== total_size
,
4123 "expected total property size %u, got %u\n", prop_size
, total_size
);
4125 prop_item
= HeapAlloc(GetProcessHeap(), 0, prop_size
);
4127 status
= GdipGetAllPropertyItems(image
, 0, prop_count
, prop_item
);
4128 expect(InvalidParameter
, status
);
4129 status
= GdipGetAllPropertyItems(image
, prop_size
, 1, prop_item
);
4130 expect(InvalidParameter
, status
);
4131 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, NULL
);
4132 expect(InvalidParameter
, status
);
4133 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, NULL
);
4134 expect(InvalidParameter
, status
);
4135 status
= GdipGetAllPropertyItems(image
, 0, 0, NULL
);
4136 expect(InvalidParameter
, status
);
4137 status
= GdipGetAllPropertyItems(image
, prop_size
+ 1, prop_count
, prop_item
);
4138 expect(InvalidParameter
, status
);
4139 status
= GdipGetAllPropertyItems(image
, prop_size
, prop_count
, prop_item
);
4142 item_data
= (const char *)(prop_item
+ prop_count
);
4143 for (i
= 0; i
< prop_count
; i
++)
4145 ok(prop_item
[i
].value
== item_data
, "%u: expected value %p, got %p\n",
4146 i
, item_data
, prop_item
[i
].value
);
4147 ok(td
[i
].type
== prop_item
[i
].type
,
4148 "%u: expected type %u, got %u\n", i
, td
[i
].type
, prop_item
[i
].type
);
4149 ok(td
[i
].id
== prop_item
[i
].id
, "%u: expected id %#x, got %#x\n", i
, td
[i
].id
, prop_item
[i
].id
);
4150 ok(td
[i
].length
== prop_item
[i
].length
, "%u: expected length %u, got %u\n", i
, td
[i
].length
, prop_item
[i
].length
);
4151 if (td
[i
].length
== prop_item
[i
].length
)
4153 int match
= memcmp(td
[i
].value
, prop_item
[i
].value
, td
[i
].length
) == 0;
4154 ok(match
, "%u: data mismatch\n", i
);
4158 BYTE
*data
= prop_item
[i
].value
;
4159 printf("id %#x:", prop_item
[i
].id
);
4160 for (j
= 0; j
< prop_item
[i
].length
; j
++)
4161 printf(" %02x", data
[j
]);
4165 item_data
+= prop_item
[i
].length
;
4168 HeapFree(GetProcessHeap(), 0, prop_item
);
4170 GdipDisposeImage(image
);
4173 static void test_ARGB_conversion(void)
4175 BYTE argb
[8] = { 0x11,0x22,0x33,0x80, 0xff,0xff,0xff,0 };
4176 BYTE pargb
[8] = { 0x09,0x11,0x1a,0x80, 0,0,0,0 };
4177 BYTE rgb32_xp
[8] = { 0x11,0x22,0x33,0xff, 0xff,0xff,0xff,0xff };
4178 BYTE rgb24
[6] = { 0x11,0x22,0x33, 0xff,0xff,0xff };
4185 status
= GdipCreateBitmapFromScan0(2, 1, 8, PixelFormat32bppARGB
, argb
, &bitmap
);
4188 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, PixelFormat32bppPARGB
, &data
);
4190 ok(data
.Width
== 2, "expected 2, got %d\n", data
.Width
);
4191 ok(data
.Height
== 1, "expected 1, got %d\n", data
.Height
);
4192 ok(data
.Stride
== 8, "expected 8, got %d\n", data
.Stride
);
4193 ok(data
.PixelFormat
== PixelFormat32bppPARGB
, "expected PixelFormat32bppPARGB, got %d\n", data
.PixelFormat
);
4194 match
= !memcmp(data
.Scan0
, pargb
, sizeof(pargb
));
4195 ok(match
, "bits don't match\n");
4199 trace("format %#x, bits %02x,%02x,%02x,%02x %02x,%02x,%02x,%02x\n", PixelFormat32bppPARGB
,
4200 bits
[0], bits
[1], bits
[2], bits
[3], bits
[4], bits
[5], bits
[6], bits
[7]);
4202 status
= GdipBitmapUnlockBits(bitmap
, &data
);
4205 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, PixelFormat32bppRGB
, &data
);
4207 ok(data
.Width
== 2, "expected 2, got %d\n", data
.Width
);
4208 ok(data
.Height
== 1, "expected 1, got %d\n", data
.Height
);
4209 ok(data
.Stride
== 8, "expected 8, got %d\n", data
.Stride
);
4210 ok(data
.PixelFormat
== PixelFormat32bppRGB
, "expected PixelFormat32bppRGB, got %d\n", data
.PixelFormat
);
4211 match
= !memcmp(data
.Scan0
, argb
, sizeof(argb
)) ||
4212 !memcmp(data
.Scan0
, rgb32_xp
, sizeof(rgb32_xp
));
4213 ok(match
, "bits don't match\n");
4217 trace("format %#x, bits %02x,%02x,%02x,%02x %02x,%02x,%02x,%02x\n", PixelFormat32bppRGB
,
4218 bits
[0], bits
[1], bits
[2], bits
[3], bits
[4], bits
[5], bits
[6], bits
[7]);
4220 status
= GdipBitmapUnlockBits(bitmap
, &data
);
4223 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, PixelFormat24bppRGB
, &data
);
4225 ok(data
.Width
== 2, "expected 2, got %d\n", data
.Width
);
4226 ok(data
.Height
== 1, "expected 1, got %d\n", data
.Height
);
4227 ok(data
.Stride
== 8, "expected 8, got %d\n", data
.Stride
);
4228 ok(data
.PixelFormat
== PixelFormat24bppRGB
, "expected PixelFormat24bppRGB, got %d\n", data
.PixelFormat
);
4229 match
= !memcmp(data
.Scan0
, rgb24
, sizeof(rgb24
));
4230 ok(match
, "bits don't match\n");
4234 trace("format %#x, bits %02x,%02x,%02x,%02x %02x,%02x,%02x,%02x\n", PixelFormat24bppRGB
,
4235 bits
[0], bits
[1], bits
[2], bits
[3], bits
[4], bits
[5], bits
[6], bits
[7]);
4237 status
= GdipBitmapUnlockBits(bitmap
, &data
);
4240 GdipDisposeImage((GpImage
*)bitmap
);
4245 struct GdiplusStartupInput gdiplusStartupInput
;
4246 ULONG_PTR gdiplusToken
;
4248 gdiplusStartupInput
.GdiplusVersion
= 1;
4249 gdiplusStartupInput
.DebugEventCallback
= NULL
;
4250 gdiplusStartupInput
.SuppressBackgroundThread
= 0;
4251 gdiplusStartupInput
.SuppressExternalCodecs
= 0;
4253 GdiplusStartup(&gdiplusToken
, &gdiplusStartupInput
, NULL
);
4255 test_ARGB_conversion();
4256 test_DrawImage_scale();
4257 test_image_format();
4259 test_GdipDrawImagePointRect();
4261 test_tiff_palette();
4262 test_GdipGetAllPropertyItems();
4263 test_tiff_properties();
4264 test_gif_properties();
4265 test_image_properties();
4268 test_GetImageDimension();
4269 test_GdipImageGetFrameDimensionsCount();
4270 test_LoadingImages();
4271 test_SavingImages();
4274 test_LockBits_UserBuf();
4275 test_GdipCreateBitmapFromHBITMAP();
4276 test_GdipGetImageFlags();
4277 test_GdipCloneImage();
4280 test_getrawformat();
4282 test_createfromwmf();
4284 test_createhbitmap();
4285 test_getthumbnail();
4290 test_multiframegif();
4296 GdiplusShutdown(gdiplusToken
);