| /* |
| * Unit test suite for images |
| * |
| * Copyright (C) 2007 Google (Evan Stade) |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| #define COBJMACROS |
| |
| #include <math.h> |
| #include <assert.h> |
| #include <stdio.h> |
| |
| #include "initguid.h" |
| #include "windows.h" |
| #include "gdiplus.h" |
| #include "wine/test.h" |
| |
| #define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (UINT)(expected), (UINT)(got)) |
| #define expectf(expected, got) ok(fabs((expected) - (got)) < 0.0001, "Expected %f, got %f\n", (expected), (got)) |
| |
| static BOOL color_match(ARGB c1, ARGB c2, BYTE max_diff) |
| { |
| if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; |
| c1 >>= 8; c2 >>= 8; |
| if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; |
| c1 >>= 8; c2 >>= 8; |
| if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; |
| c1 >>= 8; c2 >>= 8; |
| if (abs((c1 & 0xff) - (c2 & 0xff)) > max_diff) return FALSE; |
| return TRUE; |
| } |
| |
| static void expect_guid(REFGUID expected, REFGUID got, int line, BOOL todo) |
| { |
| WCHAR bufferW[39]; |
| char buffer[39]; |
| char buffer2[39]; |
| |
| StringFromGUID2(got, bufferW, sizeof(bufferW)/sizeof(bufferW[0])); |
| WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer, sizeof(buffer), NULL, NULL); |
| StringFromGUID2(expected, bufferW, sizeof(bufferW)/sizeof(bufferW[0])); |
| WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer2, sizeof(buffer2), NULL, NULL); |
| if(todo) |
| todo_wine ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer); |
| else |
| ok_(__FILE__, line)(IsEqualGUID(expected, got), "Expected %s, got %s\n", buffer2, buffer); |
| } |
| |
| static void expect_rawformat(REFGUID expected, GpImage *img, int line, BOOL todo) |
| { |
| GUID raw; |
| GpStatus stat; |
| |
| stat = GdipGetImageRawFormat(img, &raw); |
| ok_(__FILE__, line)(stat == Ok, "GdipGetImageRawFormat failed with %d\n", stat); |
| if(stat != Ok) return; |
| expect_guid(expected, &raw, line, todo); |
| } |
| |
| static void test_bufferrawformat(void* buff, int size, REFGUID expected, int line, BOOL todo) |
| { |
| LPSTREAM stream; |
| HGLOBAL hglob; |
| LPBYTE data; |
| HRESULT hres; |
| GpStatus stat; |
| GpImage *img; |
| |
| hglob = GlobalAlloc (0, size); |
| data = GlobalLock (hglob); |
| memcpy(data, buff, size); |
| GlobalUnlock(hglob); data = NULL; |
| |
| hres = CreateStreamOnHGlobal(hglob, TRUE, &stream); |
| ok_(__FILE__, line)(hres == S_OK, "Failed to create a stream\n"); |
| if(hres != S_OK) return; |
| |
| stat = GdipLoadImageFromStream(stream, &img); |
| ok_(__FILE__, line)(stat == Ok, "Failed to create a Bitmap\n"); |
| if(stat != Ok){ |
| IStream_Release(stream); |
| return; |
| } |
| |
| expect_rawformat(expected, img, line, todo); |
| |
| GdipDisposeImage(img); |
| IStream_Release(stream); |
| } |
| |
| static void test_Scan0(void) |
| { |
| GpBitmap *bm; |
| GpStatus stat; |
| BYTE buff[360]; |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)bm); |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(10, -10, 10, PixelFormat24bppRGB, NULL, &bm); |
| expect(InvalidParameter, stat); |
| ok( !bm, "expected null bitmap\n" ); |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(-10, 10, 10, PixelFormat24bppRGB, NULL, &bm); |
| expect(InvalidParameter, stat); |
| ok( !bm, "expected null bitmap\n" ); |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(10, 0, 10, PixelFormat24bppRGB, NULL, &bm); |
| expect(InvalidParameter, stat); |
| ok( !bm, "expected null bitmap\n" ); |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(10, 10, 12, PixelFormat24bppRGB, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)bm); |
| |
| bm = (GpBitmap*) 0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, buff, &bm); |
| expect(InvalidParameter, stat); |
| ok( !bm, "expected null bitmap\n" ); |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(10, 10, 0, PixelFormat24bppRGB, buff, &bm); |
| expect(InvalidParameter, stat); |
| ok( bm == (GpBitmap*)0xdeadbeef, "expected deadbeef bitmap\n" ); |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(10, 10, -8, PixelFormat24bppRGB, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)bm); |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(10, 10, -10, PixelFormat24bppRGB, buff, &bm); |
| expect(InvalidParameter, stat); |
| ok( !bm, "expected null bitmap\n" ); |
| } |
| |
| static void test_FromGdiDib(void) |
| { |
| GpBitmap *bm; |
| GpStatus stat; |
| BYTE buff[400]; |
| BYTE rbmi[sizeof(BITMAPINFOHEADER)+256*sizeof(RGBQUAD)]; |
| BITMAPINFO *bmi = (BITMAPINFO*)rbmi; |
| PixelFormat format; |
| |
| bm = NULL; |
| |
| memset(rbmi, 0, sizeof(rbmi)); |
| |
| bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); |
| bmi->bmiHeader.biWidth = 10; |
| bmi->bmiHeader.biHeight = 10; |
| bmi->bmiHeader.biPlanes = 1; |
| bmi->bmiHeader.biBitCount = 32; |
| bmi->bmiHeader.biCompression = BI_RGB; |
| |
| stat = GdipCreateBitmapFromGdiDib(NULL, buff, &bm); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromGdiDib(bmi, NULL, &bm); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat32bppRGB, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 24; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat24bppRGB, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 16; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat16bppRGB555, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 8; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat8bppIndexed, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 4; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat4bppIndexed, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 1; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(Ok, stat); |
| ok(NULL != bm, "Expected bitmap to be initialized\n"); |
| if (stat == Ok) |
| { |
| stat = GdipGetImagePixelFormat((GpImage*)bm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat1bppIndexed, format); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| bmi->bmiHeader.biBitCount = 0; |
| stat = GdipCreateBitmapFromGdiDib(bmi, buff, &bm); |
| expect(InvalidParameter, stat); |
| } |
| |
| static void test_GetImageDimension(void) |
| { |
| GpBitmap *bm; |
| GpStatus stat; |
| const REAL WIDTH = 10.0, HEIGHT = 20.0; |
| REAL w,h; |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm); |
| expect(Ok,stat); |
| ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n"); |
| ok(NULL != bm, "Expected bitmap to not be NULL\n"); |
| |
| stat = GdipGetImageDimension(NULL,&w,&h); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageDimension((GpImage*)bm,NULL,&h); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageDimension((GpImage*)bm,&w,NULL); |
| expect(InvalidParameter, stat); |
| |
| w = -1; |
| h = -1; |
| stat = GdipGetImageDimension((GpImage*)bm,&w,&h); |
| expect(Ok, stat); |
| expectf(WIDTH, w); |
| expectf(HEIGHT, h); |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| static void test_GdipImageGetFrameDimensionsCount(void) |
| { |
| GpBitmap *bm; |
| GpStatus stat; |
| const REAL WIDTH = 10.0, HEIGHT = 20.0; |
| UINT w; |
| GUID dimension = {0}; |
| UINT count; |
| ARGB color; |
| |
| bm = (GpBitmap*)0xdeadbeef; |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB,NULL, &bm); |
| expect(Ok,stat); |
| ok((GpBitmap*)0xdeadbeef != bm, "Expected bitmap to not be 0xdeadbeef\n"); |
| ok(NULL != bm, "Expected bitmap to not be NULL\n"); |
| |
| stat = GdipImageGetFrameDimensionsCount(NULL,&w); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,NULL); |
| expect(InvalidParameter, stat); |
| |
| w = -1; |
| stat = GdipImageGetFrameDimensionsCount((GpImage*)bm,&w); |
| expect(Ok, stat); |
| expect(1, w); |
| |
| stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 1); |
| expect(Ok, stat); |
| expect_guid(&FrameDimensionPage, &dimension, __LINE__, FALSE); |
| |
| stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 2); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipImageGetFrameDimensionsList((GpImage*)bm, &dimension, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipImageGetFrameCount(NULL, &dimension, &count); |
| expect(InvalidParameter, stat); |
| |
| /* WinXP crashes on this test */ |
| if(0) |
| { |
| stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, NULL); |
| expect(InvalidParameter, stat); |
| } |
| |
| stat = GdipImageGetFrameCount((GpImage*)bm, NULL, &count); |
| expect(Ok, stat); |
| |
| count = 12345; |
| stat = GdipImageGetFrameCount((GpImage*)bm, &dimension, &count); |
| expect(Ok, stat); |
| expect(1, count); |
| |
| GdipBitmapSetPixel(bm, 0, 0, 0xffffffff); |
| |
| stat = GdipImageSelectActiveFrame((GpImage*)bm, &dimension, 0); |
| expect(Ok, stat); |
| |
| /* SelectActiveFrame has no effect on image data of memory bitmaps */ |
| color = 0xdeadbeef; |
| GdipBitmapGetPixel(bm, 0, 0, &color); |
| expect(0xffffffff, color); |
| |
| GdipDisposeImage((GpImage*)bm); |
| } |
| |
| static void test_LoadingImages(void) |
| { |
| GpStatus stat; |
| |
| stat = GdipCreateBitmapFromFile(0, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromFile(0, (GpBitmap**)0xdeadbeef); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipLoadImageFromFile(0, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipLoadImageFromFile(0, (GpImage**)0xdeadbeef); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipLoadImageFromFileICM(0, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipLoadImageFromFileICM(0, (GpImage**)0xdeadbeef); |
| expect(InvalidParameter, stat); |
| } |
| |
| static void test_SavingImages(void) |
| { |
| GpStatus stat; |
| GpBitmap *bm; |
| UINT n; |
| UINT s; |
| const REAL WIDTH = 10.0, HEIGHT = 20.0; |
| REAL w, h; |
| ImageCodecInfo *codecs; |
| static const CHAR filenameA[] = "a.bmp"; |
| static const WCHAR filename[] = { 'a','.','b','m','p',0 }; |
| |
| codecs = NULL; |
| |
| stat = GdipSaveImageToFile(0, 0, 0, 0); |
| expect(InvalidParameter, stat); |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| if (!bm) |
| return; |
| |
| /* invalid params */ |
| stat = GdipSaveImageToFile((GpImage*)bm, 0, 0, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSaveImageToFile((GpImage*)bm, filename, 0, 0); |
| expect(InvalidParameter, stat); |
| |
| /* encoder tests should succeed -- already tested */ |
| stat = GdipGetImageEncodersSize(&n, &s); |
| if (stat != Ok || n == 0) goto cleanup; |
| |
| codecs = GdipAlloc(s); |
| if (!codecs) goto cleanup; |
| |
| stat = GdipGetImageEncoders(n, s, codecs); |
| if (stat != Ok) goto cleanup; |
| |
| stat = GdipSaveImageToFile((GpImage*)bm, filename, &codecs[0].Clsid, 0); |
| expect(Ok, stat); |
| |
| GdipDisposeImage((GpImage*)bm); |
| bm = 0; |
| |
| /* re-load and check image stats */ |
| stat = GdipLoadImageFromFile(filename, (GpImage**)&bm); |
| expect(Ok, stat); |
| if (stat != Ok) goto cleanup; |
| |
| stat = GdipGetImageDimension((GpImage*)bm, &w, &h); |
| if (stat != Ok) goto cleanup; |
| |
| expectf(WIDTH, w); |
| expectf(HEIGHT, h); |
| |
| cleanup: |
| GdipFree(codecs); |
| if (bm) |
| GdipDisposeImage((GpImage*)bm); |
| ok(DeleteFileA(filenameA), "Delete failed.\n"); |
| } |
| |
| static void test_encoders(void) |
| { |
| GpStatus stat; |
| UINT n; |
| UINT s; |
| ImageCodecInfo *codecs; |
| int i; |
| int bmp_found; |
| |
| static const CHAR bmp_format[] = "BMP"; |
| |
| stat = GdipGetImageEncodersSize(&n, &s); |
| expect(stat, Ok); |
| |
| codecs = GdipAlloc(s); |
| if (!codecs) |
| return; |
| |
| stat = GdipGetImageEncoders(n, s, NULL); |
| expect(GenericError, stat); |
| |
| stat = GdipGetImageEncoders(0, s, codecs); |
| expect(GenericError, stat); |
| |
| stat = GdipGetImageEncoders(n, s-1, codecs); |
| expect(GenericError, stat); |
| |
| stat = GdipGetImageEncoders(n, s+1, codecs); |
| expect(GenericError, stat); |
| |
| stat = GdipGetImageEncoders(n, s, codecs); |
| expect(stat, Ok); |
| |
| bmp_found = FALSE; |
| for (i = 0; i < n; i++) |
| { |
| CHAR desc[32]; |
| |
| WideCharToMultiByte(CP_ACP, 0, codecs[i].FormatDescription, -1, |
| desc, 32, 0, 0); |
| |
| if (CompareStringA(LOCALE_SYSTEM_DEFAULT, 0, |
| desc, -1, |
| bmp_format, -1) == CSTR_EQUAL) { |
| bmp_found = TRUE; |
| break; |
| } |
| } |
| if (!bmp_found) |
| ok(FALSE, "No BMP codec found.\n"); |
| |
| GdipFree(codecs); |
| } |
| |
| static void test_LockBits(void) |
| { |
| GpStatus stat; |
| GpBitmap *bm; |
| GpRect rect; |
| BitmapData bd; |
| const INT WIDTH = 10, HEIGHT = 20; |
| ARGB color; |
| int y; |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| rect.X = 2; |
| rect.Y = 3; |
| rect.Width = 4; |
| rect.Height = 5; |
| |
| stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bm, 2, 8, 0xff480000); |
| expect(Ok, stat); |
| |
| /* read-only */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| expect(0xc3, ((BYTE*)bd.Scan0)[2]); |
| expect(0x48, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]); |
| |
| ((char*)bd.Scan0)[2] = 0xff; |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| stat = GdipBitmapSetPixel(bm, 2, 3, 0xffc30000); |
| expect(Ok, stat); |
| |
| /* read-only, with NULL rect -> whole bitmap lock */ |
| stat = GdipBitmapLockBits(bm, NULL, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| expect(bd.Width, WIDTH); |
| expect(bd.Height, HEIGHT); |
| |
| if (stat == Ok) { |
| ((char*)bd.Scan0)[2 + 2*3 + 3*bd.Stride] = 0xff; |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| /* read-only, consecutive */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| /* read x2 */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(WrongState, stat); |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bm, 2, 3, 0xffff0000); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bm, 2, 8, 0xffc30000); |
| expect(Ok, stat); |
| |
| /* write, no conversion */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| /* all bits are readable, inside the rect or not */ |
| expect(0xff, ((BYTE*)bd.Scan0)[2]); |
| expect(0xc3, ((BYTE*)bd.Scan0)[2 + bd.Stride * 5]); |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| /* read, conversion */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| expect(0xff, ((BYTE*)bd.Scan0)[2]); |
| if (0) |
| /* Areas outside the rectangle appear to be uninitialized */ |
| ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n"); |
| |
| ((BYTE*)bd.Scan0)[2] = 0xc3; |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| /* writes do not work in read mode if there was a conversion */ |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| /* read/write, conversion */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| expect(0xff, ((BYTE*)bd.Scan0)[2]); |
| ((BYTE*)bd.Scan0)[1] = 0x88; |
| if (0) |
| /* Areas outside the rectangle appear to be uninitialized */ |
| ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n"); |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xffff8800, color); |
| |
| /* write, conversion */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| if (0) |
| { |
| /* This is completely uninitialized. */ |
| ok(0xff != ((BYTE*)bd.Scan0)[2], "original image bits are readable\n"); |
| ok(0xc3 != ((BYTE*)bd.Scan0)[2 + bd.Stride * 5], "original image bits are readable\n"); |
| } |
| |
| /* Initialize the buffer so the unlock doesn't access undefined memory */ |
| for (y=0; y<5; y++) |
| memset(((BYTE*)bd.Scan0) + bd.Stride * y, 0, 12); |
| |
| ((BYTE*)bd.Scan0)[0] = 0x12; |
| ((BYTE*)bd.Scan0)[1] = 0x34; |
| ((BYTE*)bd.Scan0)[2] = 0x56; |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xff563412, color); |
| |
| stat = GdipBitmapGetPixel(bm, 2, 8, &color); |
| expect(Ok, stat); |
| expect(0xffc30000, color); |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| /* write, no modification */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| /* write, consecutive */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| /* write, modify */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| |
| if (stat == Ok) { |
| if (bd.Scan0) |
| ((char*)bd.Scan0)[2] = 0xff; |
| |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| |
| /* dispose locked */ |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead, PixelFormat24bppRGB, &bd); |
| expect(Ok, stat); |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| } |
| |
| static void test_LockBits_UserBuf(void) |
| { |
| GpStatus stat; |
| GpBitmap *bm; |
| GpRect rect; |
| BitmapData bd; |
| const INT WIDTH = 10, HEIGHT = 20; |
| DWORD bits[200]; |
| ARGB color; |
| |
| bm = NULL; |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat32bppARGB, NULL, &bm); |
| expect(Ok, stat); |
| |
| memset(bits, 0xaa, sizeof(bits)); |
| |
| rect.X = 2; |
| rect.Y = 3; |
| rect.Width = 4; |
| rect.Height = 5; |
| |
| bd.Width = 4; |
| bd.Height = 6; |
| bd.Stride = WIDTH * 4; |
| bd.PixelFormat = PixelFormat32bppARGB; |
| bd.Scan0 = &bits[2+3*WIDTH]; |
| bd.Reserved = 0xaaaaaaaa; |
| |
| /* read-only */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| expect(0xaaaaaaaa, bits[0]); |
| expect(0, bits[2+3*WIDTH]); |
| |
| bits[2+3*WIDTH] = 0xdeadbeef; |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0, color); |
| |
| /* write-only */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| expect(0xdeadbeef, bits[2+3*WIDTH]); |
| bits[2+3*WIDTH] = 0x12345678; |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0x12345678, color); |
| |
| bits[2+3*WIDTH] = 0; |
| |
| /* read/write */ |
| stat = GdipBitmapLockBits(bm, &rect, ImageLockModeRead|ImageLockModeWrite|ImageLockModeUserInputBuf, PixelFormat32bppARGB, &bd); |
| expect(Ok, stat); |
| |
| expect(0x12345678, bits[2+3*WIDTH]); |
| bits[2+3*WIDTH] = 0xdeadbeef; |
| |
| if (stat == Ok) { |
| stat = GdipBitmapUnlockBits(bm, &bd); |
| expect(Ok, stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bm, 2, 3, &color); |
| expect(Ok, stat); |
| expect(0xdeadbeef, color); |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| } |
| |
| struct BITMAPINFOWITHBITFIELDS |
| { |
| BITMAPINFOHEADER bmiHeader; |
| DWORD masks[3]; |
| }; |
| |
| union BITMAPINFOUNION |
| { |
| BITMAPINFO bi; |
| struct BITMAPINFOWITHBITFIELDS bf; |
| }; |
| |
| static void test_GdipCreateBitmapFromHBITMAP(void) |
| { |
| GpBitmap* gpbm = NULL; |
| HBITMAP hbm = NULL; |
| HPALETTE hpal = NULL; |
| GpStatus stat; |
| BYTE buff[1000]; |
| LOGPALETTE* LogPal = NULL; |
| REAL width, height; |
| const REAL WIDTH1 = 5; |
| const REAL HEIGHT1 = 15; |
| const REAL WIDTH2 = 10; |
| const REAL HEIGHT2 = 20; |
| HDC hdc; |
| union BITMAPINFOUNION bmi; |
| BYTE *bits; |
| PixelFormat format; |
| |
| stat = GdipCreateBitmapFromHBITMAP(NULL, NULL, NULL); |
| expect(InvalidParameter, stat); |
| |
| hbm = CreateBitmap(WIDTH1, HEIGHT1, 1, 1, NULL); |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height)); |
| expectf(WIDTH1, width); |
| expectf(HEIGHT1, height); |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)gpbm); |
| DeleteObject(hbm); |
| |
| memset(buff, 0, sizeof(buff)); |
| hbm = CreateBitmap(WIDTH2, HEIGHT2, 1, 1, &buff); |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| /* raw format */ |
| expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)gpbm, __LINE__, FALSE); |
| |
| expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height)); |
| expectf(WIDTH2, width); |
| expectf(HEIGHT2, height); |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)gpbm); |
| DeleteObject(hbm); |
| |
| hdc = CreateCompatibleDC(0); |
| ok(hdc != NULL, "CreateCompatibleDC failed\n"); |
| bmi.bi.bmiHeader.biSize = sizeof(bmi.bi.bmiHeader); |
| bmi.bi.bmiHeader.biHeight = HEIGHT1; |
| bmi.bi.bmiHeader.biWidth = WIDTH1; |
| bmi.bi.bmiHeader.biBitCount = 24; |
| bmi.bi.bmiHeader.biPlanes = 1; |
| bmi.bi.bmiHeader.biCompression = BI_RGB; |
| bmi.bi.bmiHeader.biClrUsed = 0; |
| |
| hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0); |
| ok(hbm != NULL, "CreateDIBSection failed\n"); |
| |
| bits[0] = 0; |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| expect(Ok, GdipGetImageDimension((GpImage*) gpbm, &width, &height)); |
| expectf(WIDTH1, width); |
| expectf(HEIGHT1, height); |
| if (stat == Ok) |
| { |
| /* test whether writing to the bitmap affects the original */ |
| stat = GdipBitmapSetPixel(gpbm, 0, 0, 0xffffffff); |
| expect(Ok, stat); |
| |
| expect(0, bits[0]); |
| |
| GdipDisposeImage((GpImage*)gpbm); |
| } |
| |
| LogPal = GdipAlloc(sizeof(LOGPALETTE)); |
| ok(LogPal != NULL, "unable to allocate LOGPALETTE\n"); |
| LogPal->palVersion = 0x300; |
| LogPal->palNumEntries = 1; |
| hpal = CreatePalette(LogPal); |
| ok(hpal != NULL, "CreatePalette failed\n"); |
| GdipFree(LogPal); |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, hpal, &gpbm); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| GdipDisposeImage((GpImage*)gpbm); |
| |
| DeleteObject(hpal); |
| DeleteObject(hbm); |
| |
| /* 16-bit 555 dib, rgb */ |
| bmi.bi.bmiHeader.biBitCount = 16; |
| bmi.bi.bmiHeader.biCompression = BI_RGB; |
| |
| hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0); |
| ok(hbm != NULL, "CreateDIBSection failed\n"); |
| |
| bits[0] = 0; |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height); |
| expect(Ok, stat); |
| expectf(WIDTH1, width); |
| expectf(HEIGHT1, height); |
| |
| stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat16bppRGB555, format); |
| |
| GdipDisposeImage((GpImage*)gpbm); |
| } |
| DeleteObject(hbm); |
| |
| /* 16-bit 555 dib, with bitfields */ |
| bmi.bi.bmiHeader.biSize = sizeof(bmi); |
| bmi.bi.bmiHeader.biCompression = BI_BITFIELDS; |
| bmi.bf.masks[0] = 0x7c00; |
| bmi.bf.masks[1] = 0x3e0; |
| bmi.bf.masks[2] = 0x1f; |
| |
| hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0); |
| ok(hbm != NULL, "CreateDIBSection failed\n"); |
| |
| bits[0] = 0; |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height); |
| expect(Ok, stat); |
| expectf(WIDTH1, width); |
| expectf(HEIGHT1, height); |
| |
| stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat16bppRGB555, format); |
| |
| GdipDisposeImage((GpImage*)gpbm); |
| } |
| DeleteObject(hbm); |
| |
| /* 16-bit 565 dib, with bitfields */ |
| bmi.bf.masks[0] = 0xf800; |
| bmi.bf.masks[1] = 0x7e0; |
| bmi.bf.masks[2] = 0x1f; |
| |
| hbm = CreateDIBSection(hdc, &bmi.bi, DIB_RGB_COLORS, (void**)&bits, NULL, 0); |
| ok(hbm != NULL, "CreateDIBSection failed\n"); |
| |
| bits[0] = 0; |
| |
| stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, &gpbm); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageDimension((GpImage*) gpbm, &width, &height); |
| expect(Ok, stat); |
| expectf(WIDTH1, width); |
| expectf(HEIGHT1, height); |
| |
| stat = GdipGetImagePixelFormat((GpImage*) gpbm, &format); |
| expect(Ok, stat); |
| expect(PixelFormat16bppRGB565, format); |
| |
| GdipDisposeImage((GpImage*)gpbm); |
| } |
| DeleteObject(hbm); |
| |
| DeleteDC(hdc); |
| } |
| |
| static void test_GdipGetImageFlags(void) |
| { |
| GpImage *img; |
| GpStatus stat; |
| UINT flags; |
| |
| img = (GpImage*)0xdeadbeef; |
| |
| stat = GdipGetImageFlags(NULL, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageFlags(NULL, &flags); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageFlags(img, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat1bppIndexed, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat4bppIndexed, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat8bppIndexed, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppGrayScale, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB555, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppRGB565, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat16bppARGB1555, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat24bppRGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppRGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppARGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat32bppPARGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat48bppRGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| if (stat == Ok) |
| { |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsNone, flags); |
| GdipDisposeImage(img); |
| } |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppARGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| if (stat == Ok) |
| { |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| } |
| |
| stat = GdipCreateBitmapFromScan0(10, 10, 10, PixelFormat64bppPARGB, NULL, (GpBitmap**)&img); |
| expect(Ok, stat); |
| if (stat == Ok) |
| { |
| expect(Ok, stat); |
| stat = GdipGetImageFlags(img, &flags); |
| expect(Ok, stat); |
| expect(ImageFlagsHasAlpha, flags); |
| GdipDisposeImage(img); |
| } |
| } |
| |
| static void test_GdipCloneImage(void) |
| { |
| GpStatus stat; |
| GpRectF rectF; |
| GpUnit unit; |
| GpBitmap *bm; |
| GpImage *image_src, *image_dest = NULL; |
| const INT WIDTH = 10, HEIGHT = 20; |
| |
| /* Create an image, clone it, delete the original, make sure the copy works */ |
| stat = GdipCreateBitmapFromScan0(WIDTH, HEIGHT, 0, PixelFormat24bppRGB, NULL, &bm); |
| expect(Ok, stat); |
| expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bm, __LINE__, FALSE); |
| |
| image_src = ((GpImage*)bm); |
| stat = GdipCloneImage(image_src, &image_dest); |
| expect(Ok, stat); |
| expect_rawformat(&ImageFormatMemoryBMP, image_dest, __LINE__, FALSE); |
| |
| stat = GdipDisposeImage((GpImage*)bm); |
| expect(Ok, stat); |
| stat = GdipGetImageBounds(image_dest, &rectF, &unit); |
| expect(Ok, stat); |
| |
| /* Treat FP values carefully */ |
| expectf((REAL)WIDTH, rectF.Width); |
| expectf((REAL)HEIGHT, rectF.Height); |
| |
| stat = GdipDisposeImage(image_dest); |
| expect(Ok, stat); |
| } |
| |
| static void test_testcontrol(void) |
| { |
| GpStatus stat; |
| DWORD param; |
| |
| param = 0; |
| stat = GdipTestControl(TestControlGetBuildNumber, ¶m); |
| expect(Ok, stat); |
| ok(param != 0, "Build number expected, got %u\n", param); |
| } |
| |
| static void test_fromhicon(void) |
| { |
| static const BYTE bmp_bits[1024]; |
| HBITMAP hbmMask, hbmColor; |
| ICONINFO info; |
| HICON hIcon; |
| GpStatus stat; |
| GpBitmap *bitmap = NULL; |
| UINT dim; |
| ImageType type; |
| PixelFormat format; |
| |
| /* NULL */ |
| stat = GdipCreateBitmapFromHICON(NULL, NULL); |
| expect(InvalidParameter, stat); |
| stat = GdipCreateBitmapFromHICON(NULL, &bitmap); |
| expect(InvalidParameter, stat); |
| |
| /* color icon 1 bit */ |
| hbmMask = CreateBitmap(16, 16, 1, 1, bmp_bits); |
| ok(hbmMask != 0, "CreateBitmap failed\n"); |
| hbmColor = CreateBitmap(16, 16, 1, 1, bmp_bits); |
| ok(hbmColor != 0, "CreateBitmap failed\n"); |
| info.fIcon = TRUE; |
| info.xHotspot = 8; |
| info.yHotspot = 8; |
| info.hbmMask = hbmMask; |
| info.hbmColor = hbmColor; |
| hIcon = CreateIconIndirect(&info); |
| ok(hIcon != 0, "CreateIconIndirect failed\n"); |
| DeleteObject(hbmMask); |
| DeleteObject(hbmColor); |
| |
| stat = GdipCreateBitmapFromHICON(hIcon, &bitmap); |
| ok(stat == Ok || |
| broken(stat == InvalidParameter), /* Win98 */ |
| "Expected Ok, got %.8x\n", stat); |
| if(stat == Ok){ |
| /* check attributes */ |
| stat = GdipGetImageHeight((GpImage*)bitmap, &dim); |
| expect(Ok, stat); |
| expect(16, dim); |
| stat = GdipGetImageWidth((GpImage*)bitmap, &dim); |
| expect(Ok, stat); |
| expect(16, dim); |
| stat = GdipGetImageType((GpImage*)bitmap, &type); |
| expect(Ok, stat); |
| expect(ImageTypeBitmap, type); |
| stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format); |
| expect(Ok, stat); |
| expect(PixelFormat32bppARGB, format); |
| /* raw format */ |
| expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE); |
| GdipDisposeImage((GpImage*)bitmap); |
| } |
| DestroyIcon(hIcon); |
| |
| /* color icon 8 bpp */ |
| hbmMask = CreateBitmap(16, 16, 1, 8, bmp_bits); |
| ok(hbmMask != 0, "CreateBitmap failed\n"); |
| hbmColor = CreateBitmap(16, 16, 1, 8, bmp_bits); |
| ok(hbmColor != 0, "CreateBitmap failed\n"); |
| info.fIcon = TRUE; |
| info.xHotspot = 8; |
| info.yHotspot = 8; |
| info.hbmMask = hbmMask; |
| info.hbmColor = hbmColor; |
| hIcon = CreateIconIndirect(&info); |
| ok(hIcon != 0, "CreateIconIndirect failed\n"); |
| DeleteObject(hbmMask); |
| DeleteObject(hbmColor); |
| |
| stat = GdipCreateBitmapFromHICON(hIcon, &bitmap); |
| expect(Ok, stat); |
| if(stat == Ok){ |
| /* check attributes */ |
| stat = GdipGetImageHeight((GpImage*)bitmap, &dim); |
| expect(Ok, stat); |
| expect(16, dim); |
| stat = GdipGetImageWidth((GpImage*)bitmap, &dim); |
| expect(Ok, stat); |
| expect(16, dim); |
| stat = GdipGetImageType((GpImage*)bitmap, &type); |
| expect(Ok, stat); |
| expect(ImageTypeBitmap, type); |
| stat = GdipGetImagePixelFormat((GpImage*)bitmap, &format); |
| expect(Ok, stat); |
| expect(PixelFormat32bppARGB, format); |
| /* raw format */ |
| expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bitmap, __LINE__, FALSE); |
| GdipDisposeImage((GpImage*)bitmap); |
| } |
| DestroyIcon(hIcon); |
| } |
| |
| /* 1x1 pixel png */ |
| static const unsigned char pngimage[285] = { |
| 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, |
| 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x90,0x77,0x53, |
| 0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b, |
| 0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,0x07,0xd5, |
| 0x06,0x03,0x0f,0x07,0x2d,0x12,0x10,0xf0,0xfd,0x00,0x00,0x00,0x0c,0x49,0x44,0x41, |
| 0x54,0x08,0xd7,0x63,0xf8,0xff,0xff,0x3f,0x00,0x05,0xfe,0x02,0xfe,0xdc,0xcc,0x59, |
| 0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 |
| }; |
| /* 1x1 pixel gif */ |
| static const unsigned char gifimage[35] = { |
| 0x47,0x49,0x46,0x38,0x37,0x61,0x01,0x00,0x01,0x00,0x80,0x00,0x00,0xff,0xff,0xff, |
| 0xff,0xff,0xff,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x44, |
| 0x01,0x00,0x3b |
| }; |
| /* 1x1 pixel bmp */ |
| static const unsigned char bmpimage[66] = { |
| 0x42,0x4d,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x28,0x00, |
| 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00, |
| 0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x0b,0x00,0x00,0x12,0x0b,0x00,0x00,0x02,0x00, |
| 0x00,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00, |
| 0x00,0x00 |
| }; |
| /* 1x1 pixel jpg */ |
| static const unsigned char jpgimage[285] = { |
| 0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x01,0x2c, |
| 0x01,0x2c,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x05,0x03,0x04,0x04,0x04,0x03,0x05, |
| 0x04,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x0c,0x08,0x07,0x07,0x07,0x07,0x0f,0x0b, |
| 0x0b,0x09,0x0c,0x11,0x0f,0x12,0x12,0x11,0x0f,0x11,0x11,0x13,0x16,0x1c,0x17,0x13, |
| 0x14,0x1a,0x15,0x11,0x11,0x18,0x21,0x18,0x1a,0x1d,0x1d,0x1f,0x1f,0x1f,0x13,0x17, |
| 0x22,0x24,0x22,0x1e,0x24,0x1c,0x1e,0x1f,0x1e,0xff,0xdb,0x00,0x43,0x01,0x05,0x05, |
| 0x05,0x07,0x06,0x07,0x0e,0x08,0x08,0x0e,0x1e,0x14,0x11,0x14,0x1e,0x1e,0x1e,0x1e, |
| 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e, |
| 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e, |
| 0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0xff,0xc0, |
| 0x00,0x11,0x08,0x00,0x01,0x00,0x01,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11, |
| 0x01,0xff,0xc4,0x00,0x15,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, |
| 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xff,0xc4,0x00,0x14,0x10,0x01,0x00,0x00, |
| 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc4, |
| 0x00,0x14,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, |
| 0x00,0x00,0x00,0x00,0xff,0xc4,0x00,0x14,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00, |
| 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xda,0x00,0x0c,0x03,0x01, |
| 0x00,0x02,0x11,0x03,0x11,0x00,0x3f,0x00,0xb2,0xc0,0x07,0xff,0xd9 |
| }; |
| /* 1x1 pixel tiff */ |
| static const unsigned char tiffimage[] = { |
| 0x49,0x49,0x2a,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xfe,0x00, |
| 0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x00, |
| 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00, |
| 0x00,0x00,0x02,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0xd2,0x00,0x00,0x00,0x03,0x01, |
| 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x01,0x00, |
| 0x00,0x00,0x02,0x00,0x00,0x00,0x0d,0x01,0x02,0x00,0x1b,0x00,0x00,0x00,0xd8,0x00, |
| 0x00,0x00,0x11,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x01, |
| 0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x15,0x01,0x03,0x00,0x01,0x00, |
| 0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x40,0x00, |
| 0x00,0x00,0x17,0x01,0x04,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1a,0x01, |
| 0x05,0x00,0x01,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0x1b,0x01,0x05,0x00,0x01,0x00, |
| 0x00,0x00,0xfc,0x00,0x00,0x00,0x1c,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00, |
| 0x00,0x00,0x28,0x01,0x03,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00, |
| 0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x6d,0x65, |
| 0x68,0x2f,0x44,0x65,0x73,0x6b,0x74,0x6f,0x70,0x2f,0x74,0x65,0x73,0x74,0x2e,0x74, |
| 0x69,0x66,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x48, |
| 0x00,0x00,0x00,0x01 |
| }; |
| /* 320x320 twip wmf */ |
| static const unsigned char wmfimage[180] = { |
| 0xd7,0xcd,0xc6,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x01,0x40,0x01,0xa0,0x05, |
| 0x00,0x00,0x00,0x00,0xb1,0x52,0x01,0x00,0x09,0x00,0x00,0x03,0x4f,0x00,0x00,0x00, |
| 0x0f,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x0b,0x02,0x00,0x00, |
| 0x00,0x00,0x05,0x00,0x00,0x00,0x0c,0x02,0x40,0x01,0x40,0x01,0x04,0x00,0x00,0x00, |
| 0x02,0x01,0x01,0x00,0x04,0x00,0x00,0x00,0x04,0x01,0x0d,0x00,0x08,0x00,0x00,0x00, |
| 0xfa,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00, |
| 0x2d,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x02,0x01,0x00,0x00,0x00,0x00,0x00, |
| 0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0xfc,0x02, |
| 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x2d,0x01,0x02,0x00, |
| 0x07,0x00,0x00,0x00,0x1b,0x04,0x40,0x01,0x40,0x01,0x00,0x00,0x00,0x00,0x04,0x00, |
| 0x00,0x00,0xf0,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0xf0,0x01,0x01,0x00,0x03,0x00, |
| 0x00,0x00,0x00,0x00 |
| }; |
| static void test_getrawformat(void) |
| { |
| test_bufferrawformat((void*)pngimage, sizeof(pngimage), &ImageFormatPNG, __LINE__, FALSE); |
| test_bufferrawformat((void*)gifimage, sizeof(gifimage), &ImageFormatGIF, __LINE__, FALSE); |
| test_bufferrawformat((void*)bmpimage, sizeof(bmpimage), &ImageFormatBMP, __LINE__, FALSE); |
| test_bufferrawformat((void*)jpgimage, sizeof(jpgimage), &ImageFormatJPEG, __LINE__, FALSE); |
| test_bufferrawformat((void*)tiffimage, sizeof(tiffimage), &ImageFormatTIFF, __LINE__, FALSE); |
| test_bufferrawformat((void*)wmfimage, sizeof(wmfimage), &ImageFormatWMF, __LINE__, FALSE); |
| } |
| |
| static void test_loadwmf(void) |
| { |
| LPSTREAM stream; |
| HGLOBAL hglob; |
| LPBYTE data; |
| HRESULT hres; |
| GpStatus stat; |
| GpImage *img; |
| GpRectF bounds; |
| GpUnit unit; |
| REAL res = 12345.0; |
| MetafileHeader header; |
| |
| hglob = GlobalAlloc (0, sizeof(wmfimage)); |
| data = GlobalLock (hglob); |
| memcpy(data, wmfimage, sizeof(wmfimage)); |
| GlobalUnlock(hglob); data = NULL; |
| |
| hres = CreateStreamOnHGlobal(hglob, TRUE, &stream); |
| ok(hres == S_OK, "Failed to create a stream\n"); |
| if(hres != S_OK) return; |
| |
| stat = GdipLoadImageFromStream(stream, &img); |
| ok(stat == Ok, "Failed to create a Bitmap\n"); |
| if(stat != Ok){ |
| IStream_Release(stream); |
| return; |
| } |
| |
| IStream_Release(stream); |
| |
| stat = GdipGetImageBounds(img, &bounds, &unit); |
| expect(Ok, stat); |
| todo_wine expect(UnitPixel, unit); |
| expectf(0.0, bounds.X); |
| expectf(0.0, bounds.Y); |
| todo_wine expectf(320.0, bounds.Width); |
| todo_wine expectf(320.0, bounds.Height); |
| |
| stat = GdipGetImageHorizontalResolution(img, &res); |
| expect(Ok, stat); |
| todo_wine expectf(1440.0, res); |
| |
| stat = GdipGetImageVerticalResolution(img, &res); |
| expect(Ok, stat); |
| todo_wine expectf(1440.0, res); |
| |
| memset(&header, 0, sizeof(header)); |
| stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header); |
| expect(Ok, stat); |
| if (stat == Ok) |
| { |
| todo_wine expect(MetafileTypeWmfPlaceable, header.Type); |
| todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size); |
| todo_wine expect(0x300, header.Version); |
| expect(0, header.EmfPlusFlags); |
| todo_wine expectf(1440.0, header.DpiX); |
| todo_wine expectf(1440.0, header.DpiY); |
| expect(0, header.X); |
| expect(0, header.Y); |
| todo_wine expect(320, header.Width); |
| todo_wine expect(320, header.Height); |
| todo_wine expect(1, U(header).WmfHeader.mtType); |
| expect(0, header.EmfPlusHeaderSize); |
| expect(0, header.LogicalDpiX); |
| expect(0, header.LogicalDpiY); |
| } |
| |
| GdipDisposeImage(img); |
| } |
| |
| static void test_createfromwmf(void) |
| { |
| HMETAFILE hwmf; |
| GpImage *img; |
| GpStatus stat; |
| GpRectF bounds; |
| GpUnit unit; |
| REAL res = 12345.0; |
| MetafileHeader header; |
| |
| hwmf = SetMetaFileBitsEx(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), |
| wmfimage+sizeof(WmfPlaceableFileHeader)); |
| ok(hwmf != 0, "SetMetaFileBitsEx failed\n"); |
| |
| stat = GdipCreateMetafileFromWmf(hwmf, TRUE, |
| (WmfPlaceableFileHeader*)wmfimage, (GpMetafile**)&img); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageBounds(img, &bounds, &unit); |
| expect(Ok, stat); |
| expect(UnitPixel, unit); |
| expectf(0.0, bounds.X); |
| expectf(0.0, bounds.Y); |
| expectf(320.0, bounds.Width); |
| expectf(320.0, bounds.Height); |
| |
| stat = GdipGetImageHorizontalResolution(img, &res); |
| expect(Ok, stat); |
| expectf(1440.0, res); |
| |
| stat = GdipGetImageVerticalResolution(img, &res); |
| expect(Ok, stat); |
| expectf(1440.0, res); |
| |
| memset(&header, 0, sizeof(header)); |
| stat = GdipGetMetafileHeaderFromMetafile((GpMetafile*)img, &header); |
| expect(Ok, stat); |
| if (stat == Ok) |
| { |
| todo_wine expect(MetafileTypeWmfPlaceable, header.Type); |
| todo_wine expect(sizeof(wmfimage)-sizeof(WmfPlaceableFileHeader), header.Size); |
| todo_wine expect(0x300, header.Version); |
| expect(0, header.EmfPlusFlags); |
| todo_wine expectf(1440.0, header.DpiX); |
| todo_wine expectf(1440.0, header.DpiY); |
| expect(0, header.X); |
| expect(0, header.Y); |
| todo_wine expect(320, header.Width); |
| todo_wine expect(320, header.Height); |
| todo_wine expect(1, U(header).WmfHeader.mtType); |
| expect(0, header.EmfPlusHeaderSize); |
| expect(0, header.LogicalDpiX); |
| expect(0, header.LogicalDpiY); |
| } |
| |
| GdipDisposeImage(img); |
| } |
| |
| static void test_resolution(void) |
| { |
| GpStatus stat; |
| GpBitmap *bitmap; |
| REAL res=-1.0; |
| HDC screendc; |
| int screenxres, screenyres; |
| |
| /* create Bitmap */ |
| stat = GdipCreateBitmapFromScan0(1, 1, 32, PixelFormat24bppRGB, NULL, &bitmap); |
| expect(Ok, stat); |
| |
| /* test invalid values */ |
| stat = GdipGetImageHorizontalResolution(NULL, &res); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageVerticalResolution(NULL, &res); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageVerticalResolution((GpImage*)bitmap, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetResolution(NULL, 96.0, 96.0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetResolution(bitmap, 0.0, 0.0); |
| expect(InvalidParameter, stat); |
| |
| /* defaults to screen resolution */ |
| screendc = GetDC(0); |
| |
| screenxres = GetDeviceCaps(screendc, LOGPIXELSX); |
| screenyres = GetDeviceCaps(screendc, LOGPIXELSY); |
| |
| ReleaseDC(0, screendc); |
| |
| stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res); |
| expect(Ok, stat); |
| expectf((REAL)screenxres, res); |
| |
| stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res); |
| expect(Ok, stat); |
| expectf((REAL)screenyres, res); |
| |
| /* test changing the resolution */ |
| stat = GdipBitmapSetResolution(bitmap, screenxres*2.0, screenyres*3.0); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageHorizontalResolution((GpImage*)bitmap, &res); |
| expect(Ok, stat); |
| expectf(screenxres*2.0, res); |
| |
| stat = GdipGetImageVerticalResolution((GpImage*)bitmap, &res); |
| expect(Ok, stat); |
| expectf(screenyres*3.0, res); |
| |
| stat = GdipDisposeImage((GpImage*)bitmap); |
| expect(Ok, stat); |
| } |
| |
| static void test_createhbitmap(void) |
| { |
| GpStatus stat; |
| GpBitmap *bitmap; |
| HBITMAP hbitmap, oldhbitmap; |
| BITMAP bm; |
| int ret; |
| HDC hdc; |
| COLORREF pixel; |
| BYTE bits[640]; |
| |
| memset(bits, 0x68, 640); |
| |
| /* create Bitmap */ |
| stat = GdipCreateBitmapFromScan0(10, 20, 32, PixelFormat24bppRGB, bits, &bitmap); |
| expect(Ok, stat); |
| |
| /* test NULL values */ |
| stat = GdipCreateHBITMAPFromBitmap(NULL, &hbitmap, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateHBITMAPFromBitmap(bitmap, NULL, 0); |
| expect(InvalidParameter, stat); |
| |
| /* create HBITMAP */ |
| stat = GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| ret = GetObjectA(hbitmap, sizeof(BITMAP), &bm); |
| expect(sizeof(BITMAP), ret); |
| |
| expect(0, bm.bmType); |
| expect(10, bm.bmWidth); |
| expect(20, bm.bmHeight); |
| expect(40, bm.bmWidthBytes); |
| expect(1, bm.bmPlanes); |
| expect(32, bm.bmBitsPixel); |
| ok(bm.bmBits != NULL, "got DDB, expected DIB\n"); |
| |
| if (bm.bmBits) |
| { |
| DWORD val = *(DWORD*)bm.bmBits; |
| ok(val == 0xff686868, "got %x, expected 0xff686868\n", val); |
| } |
| |
| hdc = CreateCompatibleDC(NULL); |
| |
| oldhbitmap = SelectObject(hdc, hbitmap); |
| pixel = GetPixel(hdc, 5, 5); |
| SelectObject(hdc, oldhbitmap); |
| |
| DeleteDC(hdc); |
| |
| expect(0x686868, pixel); |
| |
| DeleteObject(hbitmap); |
| } |
| |
| stat = GdipDisposeImage((GpImage*)bitmap); |
| expect(Ok, stat); |
| |
| /* create alpha Bitmap */ |
| stat = GdipCreateBitmapFromScan0(8, 20, 32, PixelFormat32bppARGB, bits, &bitmap); |
| expect(Ok, stat); |
| |
| /* create HBITMAP */ |
| stat = GdipCreateHBITMAPFromBitmap(bitmap, &hbitmap, 0); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| ret = GetObjectA(hbitmap, sizeof(BITMAP), &bm); |
| expect(sizeof(BITMAP), ret); |
| |
| expect(0, bm.bmType); |
| expect(8, bm.bmWidth); |
| expect(20, bm.bmHeight); |
| expect(32, bm.bmWidthBytes); |
| expect(1, bm.bmPlanes); |
| expect(32, bm.bmBitsPixel); |
| ok(bm.bmBits != NULL, "got DDB, expected DIB\n"); |
| |
| if (bm.bmBits) |
| { |
| DWORD val = *(DWORD*)bm.bmBits; |
| ok(val == 0x682a2a2a, "got %x, expected 0x682a2a2a\n", val); |
| } |
| |
| hdc = CreateCompatibleDC(NULL); |
| |
| oldhbitmap = SelectObject(hdc, hbitmap); |
| pixel = GetPixel(hdc, 5, 5); |
| SelectObject(hdc, oldhbitmap); |
| |
| DeleteDC(hdc); |
| |
| expect(0x2a2a2a, pixel); |
| |
| DeleteObject(hbitmap); |
| } |
| |
| stat = GdipDisposeImage((GpImage*)bitmap); |
| expect(Ok, stat); |
| } |
| |
| static void test_getthumbnail(void) |
| { |
| GpStatus stat; |
| GpImage *bitmap1, *bitmap2; |
| UINT width, height; |
| |
| stat = GdipGetImageThumbnail(NULL, 0, 0, &bitmap2, NULL, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromScan0(128, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageThumbnail(bitmap1, 0, 0, NULL, NULL, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageWidth(bitmap2, &width); |
| expect(Ok, stat); |
| expect(120, width); |
| |
| stat = GdipGetImageHeight(bitmap2, &height); |
| expect(Ok, stat); |
| expect(120, height); |
| |
| GdipDisposeImage(bitmap2); |
| } |
| |
| GdipDisposeImage(bitmap1); |
| |
| |
| stat = GdipCreateBitmapFromScan0(64, 128, 0, PixelFormat32bppRGB, NULL, (GpBitmap**)&bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageThumbnail(bitmap1, 32, 32, &bitmap2, NULL, NULL); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageWidth(bitmap2, &width); |
| expect(Ok, stat); |
| expect(32, width); |
| |
| stat = GdipGetImageHeight(bitmap2, &height); |
| expect(Ok, stat); |
| expect(32, height); |
| |
| GdipDisposeImage(bitmap2); |
| } |
| |
| stat = GdipGetImageThumbnail(bitmap1, 0, 0, &bitmap2, NULL, NULL); |
| expect(Ok, stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipGetImageWidth(bitmap2, &width); |
| expect(Ok, stat); |
| expect(120, width); |
| |
| stat = GdipGetImageHeight(bitmap2, &height); |
| expect(Ok, stat); |
| expect(120, height); |
| |
| GdipDisposeImage(bitmap2); |
| } |
| |
| GdipDisposeImage(bitmap1); |
| } |
| |
| static void test_getsetpixel(void) |
| { |
| GpStatus stat; |
| GpBitmap *bitmap; |
| ARGB color; |
| BYTE bits[16] = {0x00,0x00,0x00,0x00, 0x00,0xff,0xff,0x00, |
| 0xff,0x00,0x00,0x00, 0xff,0xff,0xff,0x00}; |
| |
| stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, bits, &bitmap); |
| expect(Ok, stat); |
| |
| /* null parameters */ |
| stat = GdipBitmapGetPixel(NULL, 1, 1, &color); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap, 1, 1, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetPixel(NULL, 1, 1, 0); |
| expect(InvalidParameter, stat); |
| |
| /* out of bounds */ |
| stat = GdipBitmapGetPixel(bitmap, -1, 1, &color); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap, -1, 1, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap, 1, -1, &color); |
| ok(stat == InvalidParameter || |
| broken(stat == Ok), /* Older gdiplus */ |
| "Expected InvalidParameter, got %.8x\n", stat); |
| |
| if (0) /* crashes some gdiplus implementations */ |
| { |
| stat = GdipBitmapSetPixel(bitmap, 1, -1, 0); |
| ok(stat == InvalidParameter || |
| broken(stat == Ok), /* Older gdiplus */ |
| "Expected InvalidParameter, got %.8x\n", stat); |
| } |
| |
| stat = GdipBitmapGetPixel(bitmap, 2, 1, &color); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap, 2, 1, 0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap, 1, 2, &color); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap, 1, 2, 0); |
| expect(InvalidParameter, stat); |
| |
| /* valid use */ |
| stat = GdipBitmapGetPixel(bitmap, 1, 1, &color); |
| expect(Ok, stat); |
| expect(0xffffffff, color); |
| |
| stat = GdipBitmapGetPixel(bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xff0000ff, color); |
| |
| stat = GdipBitmapSetPixel(bitmap, 1, 1, 0xff676869); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap, 0, 0, 0xff474849); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap, 1, 1, &color); |
| expect(Ok, stat); |
| expect(0xff676869, color); |
| |
| stat = GdipBitmapGetPixel(bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff474849, color); |
| |
| stat = GdipDisposeImage((GpImage*)bitmap); |
| expect(Ok, stat); |
| } |
| |
| static void check_halftone_palette(ColorPalette *palette) |
| { |
| static const BYTE halftone_values[6]={0x00,0x33,0x66,0x99,0xcc,0xff}; |
| UINT i; |
| |
| for (i=0; i<palette->Count; i++) |
| { |
| ARGB expected=0xff000000; |
| if (i<8) |
| { |
| if (i&1) expected |= 0x800000; |
| if (i&2) expected |= 0x8000; |
| if (i&4) expected |= 0x80; |
| } |
| else if (i == 8) |
| { |
| expected = 0xffc0c0c0; |
| } |
| else if (i < 16) |
| { |
| if (i&1) expected |= 0xff0000; |
| if (i&2) expected |= 0xff00; |
| if (i&4) expected |= 0xff; |
| } |
| else if (i < 40) |
| { |
| expected = 0x00000000; |
| } |
| else |
| { |
| expected |= halftone_values[(i-40)%6]; |
| expected |= halftone_values[((i-40)/6)%6] << 8; |
| expected |= halftone_values[((i-40)/36)%6] << 16; |
| } |
| ok(expected == palette->Entries[i], "Expected %.8x, got %.8x, i=%u/%u\n", |
| expected, palette->Entries[i], i, palette->Count); |
| } |
| } |
| |
| static void test_palette(void) |
| { |
| GpStatus stat; |
| GpBitmap *bitmap; |
| INT size; |
| BYTE buffer[1040]; |
| ColorPalette *palette=(ColorPalette*)buffer; |
| ARGB *entries = palette->Entries; |
| ARGB color=0; |
| |
| /* test initial palette from non-indexed bitmap */ |
| stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat32bppRGB, NULL, &bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB), size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(0, palette->Count); |
| |
| /* test setting palette on not-indexed bitmap */ |
| palette->Count = 3; |
| |
| stat = GdipSetImagePalette((GpImage*)bitmap, palette); |
| expect(Ok, stat); |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*3, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(3, palette->Count); |
| |
| GdipDisposeImage((GpImage*)bitmap); |
| |
| /* test initial palette on 1-bit bitmap */ |
| stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat1bppIndexed, NULL, &bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*2, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(PaletteFlagsGrayScale, palette->Flags); |
| expect(2, palette->Count); |
| |
| expect(0xff000000, entries[0]); |
| expect(0xffffffff, entries[1]); |
| |
| /* test getting/setting pixels */ |
| stat = GdipBitmapGetPixel(bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff000000, color); |
| |
| stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffffffff); |
| ok((stat == Ok) || |
| broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipBitmapGetPixel(bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xffffffff, color); |
| } |
| |
| GdipDisposeImage((GpImage*)bitmap); |
| |
| /* test initial palette on 4-bit bitmap */ |
| stat = GdipCreateBitmapFromScan0(2, 2, 4, PixelFormat4bppIndexed, NULL, &bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*16, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(0, palette->Flags); |
| expect(16, palette->Count); |
| |
| check_halftone_palette(palette); |
| |
| /* test getting/setting pixels */ |
| stat = GdipBitmapGetPixel(bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff000000, color); |
| |
| stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffff00ff); |
| ok((stat == Ok) || |
| broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipBitmapGetPixel(bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xffff00ff, color); |
| } |
| |
| GdipDisposeImage((GpImage*)bitmap); |
| |
| /* test initial palette on 8-bit bitmap */ |
| stat = GdipCreateBitmapFromScan0(2, 2, 8, PixelFormat8bppIndexed, NULL, &bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*256, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(PaletteFlagsHalftone, palette->Flags); |
| expect(256, palette->Count); |
| |
| check_halftone_palette(palette); |
| |
| /* test getting/setting pixels */ |
| stat = GdipBitmapGetPixel(bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff000000, color); |
| |
| stat = GdipBitmapSetPixel(bitmap, 0, 1, 0xffcccccc); |
| ok((stat == Ok) || |
| broken(stat == InvalidParameter) /* pre-win7 */, "stat=%.8x\n", stat); |
| |
| if (stat == Ok) |
| { |
| stat = GdipBitmapGetPixel(bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xffcccccc, color); |
| } |
| |
| /* test setting/getting a different palette */ |
| entries[1] = 0xffcccccc; |
| |
| stat = GdipSetImagePalette((GpImage*)bitmap, palette); |
| expect(Ok, stat); |
| |
| entries[1] = 0; |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*256, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(PaletteFlagsHalftone, palette->Flags); |
| expect(256, palette->Count); |
| expect(0xffcccccc, entries[1]); |
| |
| /* test count < 256 */ |
| palette->Flags = 12345; |
| palette->Count = 3; |
| |
| stat = GdipSetImagePalette((GpImage*)bitmap, palette); |
| expect(Ok, stat); |
| |
| entries[1] = 0; |
| entries[3] = 0xdeadbeef; |
| |
| stat = GdipGetImagePaletteSize((GpImage*)bitmap, &size); |
| expect(Ok, stat); |
| expect(sizeof(UINT)*2+sizeof(ARGB)*3, size); |
| |
| stat = GdipGetImagePalette((GpImage*)bitmap, palette, size); |
| expect(Ok, stat); |
| expect(12345, palette->Flags); |
| expect(3, palette->Count); |
| expect(0xffcccccc, entries[1]); |
| expect(0xdeadbeef, entries[3]); |
| |
| /* test count > 256 */ |
| palette->Count = 257; |
| |
| stat = GdipSetImagePalette((GpImage*)bitmap, palette); |
| ok(stat == InvalidParameter || |
| broken(stat == Ok), /* Old gdiplus behavior */ |
| "Expected %.8x, got %.8x\n", InvalidParameter, stat); |
| |
| GdipDisposeImage((GpImage*)bitmap); |
| } |
| |
| static void test_colormatrix(void) |
| { |
| GpStatus stat; |
| ColorMatrix colormatrix, graymatrix; |
| GpImageAttributes *imageattr; |
| const ColorMatrix identity = {{ |
| {1.0,0.0,0.0,0.0,0.0}, |
| {0.0,1.0,0.0,0.0,0.0}, |
| {0.0,0.0,1.0,0.0,0.0}, |
| {0.0,0.0,0.0,1.0,0.0}, |
| {0.0,0.0,0.0,0.0,1.0}}}; |
| const ColorMatrix double_red = {{ |
| {2.0,0.0,0.0,0.0,0.0}, |
| {0.0,1.0,0.0,0.0,0.0}, |
| {0.0,0.0,1.0,0.0,0.0}, |
| {0.0,0.0,0.0,1.0,0.0}, |
| {0.0,0.0,0.0,0.0,1.0}}}; |
| const ColorMatrix asymmetric = {{ |
| {0.0,1.0,0.0,0.0,0.0}, |
| {0.0,0.0,1.0,0.0,0.0}, |
| {0.0,0.0,0.0,1.0,0.0}, |
| {1.0,0.0,0.0,0.0,0.0}, |
| {0.0,0.0,0.0,0.0,1.0}}}; |
| GpBitmap *bitmap1, *bitmap2; |
| GpGraphics *graphics; |
| ARGB color; |
| |
| colormatrix = identity; |
| graymatrix = identity; |
| |
| stat = GdipSetImageAttributesColorMatrix(NULL, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateImageAttributes(&imageattr); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, NULL, NULL, ColorMatrixFlagsDefault); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, NULL, ColorMatrixFlagsSkipGrays); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, NULL, ColorMatrixFlagsAltGray); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsAltGray); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, &graymatrix, 3); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeCount, |
| TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeAny, |
| TRUE, &colormatrix, &graymatrix, ColorMatrixFlagsDefault); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| FALSE, NULL, NULL, ColorMatrixFlagsDefault); |
| expect(Ok, stat); |
| |
| /* Drawing a bitmap transforms the colors */ |
| colormatrix = double_red; |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB, NULL, &bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppARGB, NULL, &bitmap2); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff40ccee); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics); |
| expect(Ok, stat); |
| |
| stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1, |
| UnitPixel, imageattr, NULL, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff80ccee, color); |
| |
| colormatrix = asymmetric; |
| stat = GdipSetImageAttributesColorMatrix(imageattr, ColorAdjustTypeDefault, |
| TRUE, &colormatrix, NULL, ColorMatrixFlagsDefault); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap2, 0, 0, 0); |
| expect(Ok, stat); |
| |
| stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1, |
| UnitPixel, imageattr, NULL, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color); |
| expect(Ok, stat); |
| ok(color_match(0xeeff40cc, color, 3), "expected 0xeeff40cc, got 0x%08x\n", color); |
| |
| GdipDeleteGraphics(graphics); |
| GdipDisposeImage((GpImage*)bitmap1); |
| GdipDisposeImage((GpImage*)bitmap2); |
| GdipDisposeImageAttributes(imageattr); |
| } |
| |
| static void test_gamma(void) |
| { |
| GpStatus stat; |
| GpImageAttributes *imageattr; |
| GpBitmap *bitmap1, *bitmap2; |
| GpGraphics *graphics; |
| ARGB color; |
| |
| stat = GdipSetImageAttributesGamma(NULL, ColorAdjustTypeDefault, TRUE, 1.0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateImageAttributes(&imageattr); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 1.0); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeAny, TRUE, 1.0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, -1.0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.0); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 0.5); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, FALSE, 0.0); |
| expect(Ok, stat); |
| |
| /* Drawing a bitmap transforms the colors */ |
| stat = GdipSetImageAttributesGamma(imageattr, ColorAdjustTypeDefault, TRUE, 3.0); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff80ffff); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics); |
| expect(Ok, stat); |
| |
| stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1, |
| UnitPixel, imageattr, NULL, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color); |
| expect(Ok, stat); |
| ok(color_match(0xff20ffff, color, 1), "Expected ff20ffff, got %.8x\n", color); |
| |
| GdipDeleteGraphics(graphics); |
| GdipDisposeImage((GpImage*)bitmap1); |
| GdipDisposeImage((GpImage*)bitmap2); |
| GdipDisposeImageAttributes(imageattr); |
| } |
| |
| /* 1x1 pixel gif, 2 frames; first frame is white, second is black */ |
| static const unsigned char gifanimation[72] = { |
| 0x47,0x49,0x46,0x38,0x39,0x61,0x01,0x00,0x01,0x00,0xa1,0x00,0x00,0x00,0x00,0x00, |
| 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xf9,0x04,0x00,0x0a,0x00,0xff, |
| 0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x4c,0x01,0x00, |
| 0x21,0xf9,0x04,0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x01, |
| 0x00,0x00,0x02,0x02,0x44,0x01,0x00,0x3b |
| }; |
| |
| static void test_multiframegif(void) |
| { |
| LPSTREAM stream; |
| HGLOBAL hglob; |
| LPBYTE data; |
| HRESULT hres; |
| GpStatus stat; |
| GpBitmap *bmp; |
| ARGB color; |
| UINT count; |
| GUID dimension; |
| |
| /* Test frame functions with an animated GIF */ |
| hglob = GlobalAlloc (0, sizeof(gifanimation)); |
| data = GlobalLock (hglob); |
| memcpy(data, gifanimation, sizeof(gifanimation)); |
| GlobalUnlock(hglob); |
| |
| hres = CreateStreamOnHGlobal(hglob, TRUE, &stream); |
| ok(hres == S_OK, "Failed to create a stream\n"); |
| if(hres != S_OK) return; |
| |
| stat = GdipCreateBitmapFromStream(stream, &bmp); |
| ok(stat == Ok, "Failed to create a Bitmap\n"); |
| if(stat != Ok){ |
| IStream_Release(stream); |
| return; |
| } |
| |
| /* Bitmap starts at frame 0 */ |
| color = 0xdeadbeef; |
| stat = GdipBitmapGetPixel(bmp, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xffffffff, color); |
| |
| /* Check that we get correct metadata */ |
| stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count); |
| expect(Ok, stat); |
| expect(1, count); |
| |
| stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1); |
| expect(Ok, stat); |
| expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE); |
| |
| count = 12345; |
| stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count); |
| expect(Ok, stat); |
| expect(2, count); |
| |
| /* SelectActiveFrame overwrites our current data */ |
| stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1); |
| expect(Ok, stat); |
| |
| color = 0xdeadbeef; |
| GdipBitmapGetPixel(bmp, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff000000, color); |
| |
| stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0); |
| expect(Ok, stat); |
| |
| color = 0xdeadbeef; |
| GdipBitmapGetPixel(bmp, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xffffffff, color); |
| |
| /* Write over the image data */ |
| stat = GdipBitmapSetPixel(bmp, 0, 0, 0xff000000); |
| expect(Ok, stat); |
| |
| /* Switching to the same frame does not overwrite our changes */ |
| stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bmp, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff000000, color); |
| |
| /* But switching to another frame and back does */ |
| stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 1); |
| expect(Ok, stat); |
| |
| stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 0); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bmp, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xffffffff, color); |
| |
| /* rotate/flip discards the information about other frames */ |
| stat = GdipImageRotateFlip((GpImage*)bmp, Rotate90FlipNone); |
| expect(Ok, stat); |
| |
| count = 12345; |
| stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count); |
| expect(Ok, stat); |
| expect(1, count); |
| |
| expect_rawformat(&ImageFormatMemoryBMP, (GpImage*)bmp, __LINE__, FALSE); |
| |
| GdipDisposeImage((GpImage*)bmp); |
| IStream_Release(stream); |
| |
| /* Test with a non-animated gif */ |
| hglob = GlobalAlloc (0, sizeof(gifimage)); |
| data = GlobalLock (hglob); |
| memcpy(data, gifimage, sizeof(gifimage)); |
| GlobalUnlock(hglob); |
| |
| hres = CreateStreamOnHGlobal(hglob, TRUE, &stream); |
| ok(hres == S_OK, "Failed to create a stream\n"); |
| if(hres != S_OK) return; |
| |
| stat = GdipCreateBitmapFromStream(stream, &bmp); |
| ok(stat == Ok, "Failed to create a Bitmap\n"); |
| if(stat != Ok){ |
| IStream_Release(stream); |
| return; |
| } |
| |
| /* Check metadata */ |
| stat = GdipImageGetFrameDimensionsCount((GpImage*)bmp,&count); |
| expect(Ok, stat); |
| expect(1, count); |
| |
| stat = GdipImageGetFrameDimensionsList((GpImage*)bmp, &dimension, 1); |
| expect(Ok, stat); |
| expect_guid(&FrameDimensionTime, &dimension, __LINE__, FALSE); |
| |
| count = 12345; |
| stat = GdipImageGetFrameCount((GpImage*)bmp, &dimension, &count); |
| expect(Ok, stat); |
| expect(1, count); |
| |
| GdipDisposeImage((GpImage*)bmp); |
| IStream_Release(stream); |
| } |
| |
| static void test_rotateflip(void) |
| { |
| GpImage *bitmap; |
| GpStatus stat; |
| BYTE bits[24]; |
| static const BYTE orig_bits[24] = { |
| 0,0,0xff, 0,0xff,0, 0xff,0,0, 23,23,23, |
| 0xff,0xff,0, 0xff,0,0xff, 0,0xff,0xff, 23,23,23}; |
| UINT width, height; |
| ARGB color; |
| |
| memcpy(bits, orig_bits, sizeof(bits)); |
| stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipImageRotateFlip(bitmap, Rotate90FlipNone); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageWidth(bitmap, &width); |
| expect(Ok, stat); |
| stat = GdipGetImageHeight(bitmap, &height); |
| expect(Ok, stat); |
| expect(2, width); |
| expect(3, height); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff00ffff, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 0, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 2, &color); |
| expect(Ok, stat); |
| expect(0xffffff00, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 1, 2, &color); |
| expect(Ok, stat); |
| expect(0xff0000ff, color); |
| |
| expect(0, bits[0]); |
| expect(0, bits[1]); |
| expect(0xff, bits[2]); |
| |
| GdipDisposeImage(bitmap); |
| |
| memcpy(bits, orig_bits, sizeof(bits)); |
| stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipImageRotateFlip(bitmap, RotateNoneFlipX); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageWidth(bitmap, &width); |
| expect(Ok, stat); |
| stat = GdipGetImageHeight(bitmap, &height); |
| expect(Ok, stat); |
| expect(3, width); |
| expect(2, height); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff0000ff, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xffffff00, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color); |
| expect(Ok, stat); |
| expect(0xff00ffff, color); |
| |
| expect(0, bits[0]); |
| expect(0, bits[1]); |
| expect(0xff, bits[2]); |
| |
| GdipDisposeImage(bitmap); |
| |
| memcpy(bits, orig_bits, sizeof(bits)); |
| stat = GdipCreateBitmapFromScan0(3, 2, 12, PixelFormat24bppRGB, bits, (GpBitmap**)&bitmap); |
| expect(Ok, stat); |
| |
| stat = GdipImageRotateFlip(bitmap, RotateNoneFlipY); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageWidth(bitmap, &width); |
| expect(Ok, stat); |
| stat = GdipGetImageHeight(bitmap, &height); |
| expect(Ok, stat); |
| expect(3, width); |
| expect(2, height); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 0, &color); |
| expect(Ok, stat); |
| expect(0xff00ffff, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 0, &color); |
| expect(Ok, stat); |
| expect(0xffffff00, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 0, 1, &color); |
| expect(Ok, stat); |
| expect(0xffff0000, color); |
| |
| stat = GdipBitmapGetPixel((GpBitmap*)bitmap, 2, 1, &color); |
| expect(Ok, stat); |
| expect(0xff0000ff, color); |
| |
| expect(0, bits[0]); |
| expect(0, bits[1]); |
| expect(0xff, bits[2]); |
| |
| GdipDisposeImage(bitmap); |
| } |
| |
| static void test_remaptable(void) |
| { |
| GpStatus stat; |
| GpImageAttributes *imageattr; |
| GpBitmap *bitmap1, *bitmap2; |
| GpGraphics *graphics; |
| ARGB color; |
| ColorMap *map; |
| |
| map = GdipAlloc(sizeof(ColorMap)); |
| |
| map->oldColor.Argb = 0xff00ff00; |
| map->newColor.Argb = 0xffff00ff; |
| |
| stat = GdipSetImageAttributesRemapTable(NULL, ColorAdjustTypeDefault, TRUE, 1, map); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateImageAttributes(&imageattr); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeCount, TRUE, 1, map); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeAny, TRUE, 1, map); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 0, map); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, FALSE, 0, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesRemapTable(imageattr, ColorAdjustTypeDefault, TRUE, 1, map); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(1, 1, 0, PixelFormat32bppRGB, NULL, &bitmap2); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0xff00ff00); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics); |
| expect(Ok, stat); |
| |
| stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,1,1, 0,0,1,1, |
| UnitPixel, imageattr, NULL, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color); |
| expect(Ok, stat); |
| ok(color_match(0xffff00ff, color, 1), "Expected ffff00ff, got %.8x\n", color); |
| |
| GdipDeleteGraphics(graphics); |
| GdipDisposeImage((GpImage*)bitmap1); |
| GdipDisposeImage((GpImage*)bitmap2); |
| GdipDisposeImageAttributes(imageattr); |
| GdipFree(map); |
| } |
| |
| static void test_colorkey(void) |
| { |
| GpStatus stat; |
| GpImageAttributes *imageattr; |
| GpBitmap *bitmap1, *bitmap2; |
| GpGraphics *graphics; |
| ARGB color; |
| |
| stat = GdipSetImageAttributesColorKeys(NULL, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateImageAttributes(&imageattr); |
| expect(Ok, stat); |
| |
| stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeCount, TRUE, 0xff405060, 0xff708090); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeAny, TRUE, 0xff405060, 0xff708090); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipSetImageAttributesColorKeys(imageattr, ColorAdjustTypeDefault, TRUE, 0xff405060, 0xff708090); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap1); |
| expect(Ok, stat); |
| |
| stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, &bitmap2); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 0, 0, 0x20405060); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 0, 1, 0x40506070); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 1, 0, 0x60708090); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapSetPixel(bitmap1, 1, 1, 0xffffffff); |
| expect(Ok, stat); |
| |
| stat = GdipGetImageGraphicsContext((GpImage*)bitmap2, &graphics); |
| expect(Ok, stat); |
| |
| stat = GdipDrawImageRectRectI(graphics, (GpImage*)bitmap1, 0,0,2,2, 0,0,2,2, |
| UnitPixel, imageattr, NULL, NULL); |
| expect(Ok, stat); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 0, &color); |
| expect(Ok, stat); |
| ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 0, 1, &color); |
| expect(Ok, stat); |
| ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 1, 0, &color); |
| expect(Ok, stat); |
| ok(color_match(0x00000000, color, 1), "Expected ffff00ff, got %.8x\n", color); |
| |
| stat = GdipBitmapGetPixel(bitmap2, 1, 1, &color); |
| expect(Ok, stat); |
| ok(color_match(0xffffffff, color, 1), "Expected ffff00ff, got %.8x\n", color); |
| |
| GdipDeleteGraphics(graphics); |
| GdipDisposeImage((GpImage*)bitmap1); |
| GdipDisposeImage((GpImage*)bitmap2); |
| GdipDisposeImageAttributes(imageattr); |
| } |
| |
| static void test_dispose(void) |
| { |
| GpStatus stat; |
| GpImage *image; |
| char invalid_image[256]; |
| |
| stat = GdipDisposeImage(NULL); |
| expect(InvalidParameter, stat); |
| |
| stat = GdipCreateBitmapFromScan0(2, 2, 0, PixelFormat32bppARGB, NULL, (GpBitmap**)&image); |
| expect(Ok, stat); |
| |
| stat = GdipDisposeImage(image); |
| expect(Ok, stat); |
| |
| stat = GdipDisposeImage(image); |
| expect(ObjectBusy, stat); |
| |
| memset(invalid_image, 0, 256); |
| stat = GdipDisposeImage((GpImage*)invalid_image); |
| expect(ObjectBusy, stat); |
| } |
| |
| static LONG obj_refcount(void *obj) |
| { |
| IUnknown_AddRef((IUnknown *)obj); |
| return IUnknown_Release((IUnknown *)obj); |
| } |
| |
| static GpImage *load_image(const BYTE *image_data, UINT image_size) |
| { |
| IStream *stream; |
| HGLOBAL hmem; |
| BYTE *data; |
| HRESULT hr; |
| GpStatus status; |
| GpImage *image = NULL, *clone; |
| ImageType image_type; |
| LONG refcount, old_refcount; |
| |
| hmem = GlobalAlloc(0, image_size); |
| data = GlobalLock(hmem); |
| memcpy(data, image_data, image_size); |
| GlobalUnlock(hmem); |
| |
| hr = CreateStreamOnHGlobal(hmem, TRUE, &stream); |
| ok(hr == S_OK, "CreateStreamOnHGlobal error %#x\n", hr); |
| if (hr != S_OK) return NULL; |
| |
| refcount = obj_refcount(stream); |
| ok(refcount == 1, "expected stream refcount 1, got %d\n", refcount); |
| |
| status = GdipLoadImageFromStream(stream, &image); |
| ok(status == Ok, "GdipLoadImageFromStream error %d\n", status); |
| |
| status = GdipGetImageType(image, &image_type); |
| ok(status == Ok, "GdipGetImageType error %d\n", status); |
| |
| refcount = obj_refcount(stream); |
| if (image_type == ImageTypeBitmap) |
| ok(refcount > 1, "expected stream refcount > 1, got %d\n", refcount); |
| else |
| ok(refcount == 1, "expected stream refcount 1, got %d\n", refcount); |
| old_refcount = refcount; |
| |
| status = GdipCloneImage(image, &clone); |
| ok(status == Ok, "GdipCloneImage error %d\n", status); |
| refcount = obj_refcount(stream); |
| ok(refcount == old_refcount, "expected stream refcount %d, got %d\n", old_refcount, refcount); |
| status = GdipDisposeImage(clone); |
| ok(status == Ok, "GdipDisposeImage error %d\n", status); |
| refcount = obj_refcount(stream); |
| ok(refcount == old_refcount, "expected stream refcount %d, got %d\n", old_refcount, refcount); |
| |
| refcount = IStream_Release(stream); |
| if (image_type == ImageTypeBitmap) |
| ok(refcount >= 1, "expected stream refcount != 0\n"); |
| else |
| ok(refcount == 0, "expected stream refcount 0, got %d\n", refcount); |
| |
| return image; |
| } |
| |
| static void test_image_properties(void) |
| { |
| static const struct test_data |
| { |
| const BYTE *image_data; |
| UINT image_size; |
| ImageType image_type; |
| UINT prop_count; |
| UINT prop_count2; /* if win7 behaves differently */ |
| /* 1st property attributes */ |
| UINT prop_size; |
| UINT prop_size2; /* if win7 behaves differently */ |
| UINT prop_id; |
| UINT prop_id2; /* if win7 behaves differently */ |
| } |
| td[] = |
| { |
| { pngimage, sizeof(pngimage), ImageTypeBitmap, 4, ~0, 1, 20, 0x5110, 0x132 }, |
| { gifimage, sizeof(gifimage), ImageTypeBitmap, 1, 4, 4, 0, 0x5100, 0 }, |
| { jpgimage, sizeof(jpgimage), ImageTypeBitmap, 2, ~0, 128, 0, 0x5090, 0x5091 }, |
| { tiffimage, sizeof(tiffimage), ImageTypeBitmap, 16, 0, 4, 0, 0xfe, 0 }, |
| { bmpimage, sizeof(bmpimage), ImageTypeBitmap, 0, 0, 0, 0, 0, 0 }, |
| { wmfimage, sizeof(wmfimage), ImageTypeMetafile, 0, 0, 0, 0, 0, 0 } |
| }; |
| GpStatus status; |
| GpImage *image; |
| UINT prop_count, prop_size, i; |
| PROPID prop_id[16] = { 0 }; |
| ImageType image_type; |
| union |
| { |
| PropertyItem data; |
| char buf[256]; |
| } item; |
| |
| for (i = 0; i < sizeof(td)/sizeof(td[0]); i++) |
| { |
| image = load_image(td[i].image_data, td[i].image_size); |
| ok(image != 0, "%u: failed to load image data\n", i); |
| if (!image) continue; |
| |
| status = GdipGetImageType(image, &image_type); |
| ok(status == Ok, "%u: GdipGetImageType error %d\n", i, status); |
| ok(td[i].image_type == image_type, "%u: expected image_type %d, got %d\n", |
| i, td[i].image_type, image_type); |
| |
| status = GdipGetPropertyCount(image, &prop_count); |
| ok(status == Ok, "%u: GdipGetPropertyCount error %d\n", i, status); |
| if (td[i].image_data == pngimage || td[i].image_data == gifimage || |
| td[i].image_data == jpgimage) |
| todo_wine |
| ok(td[i].prop_count == prop_count || td[i].prop_count2 == prop_count, |
| " %u: expected property count %u or %u, got %u\n", |
| i, td[i].prop_count, td[i].prop_count2, prop_count); |
| else |
| ok(td[i].prop_count == prop_count || td[i].prop_count2 == prop_count, |
| " %u: expected property count %u or %u, got %u\n", |
| i, td[i].prop_count, td[i].prop_count2, prop_count); |
| |
| status = GdipGetPropertyItemSize(NULL, 0, &prop_size); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyItemSize(image, 0, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyItemSize(image, 0, &prop_size); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else |
| expect(PropertyNotFound, status); |
| |
| status = GdipGetPropertyItem(NULL, 0, 0, &item.data); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyItem(image, 0, 0, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyItem(image, 0, 0, &item.data); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else |
| expect(PropertyNotFound, status); |
| |
| /* FIXME: remove once Wine is fixed */ |
| if (td[i].prop_count != prop_count) |
| { |
| GdipDisposeImage(image); |
| continue; |
| } |
| |
| status = GdipGetPropertyIdList(NULL, prop_count, prop_id); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyIdList(image, prop_count, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyIdList(image, 0, prop_id); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else if (prop_count == 0) |
| expect(Ok, status); |
| else |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyIdList(image, prop_count - 1, prop_id); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyIdList(image, prop_count + 1, prop_id); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else |
| expect(InvalidParameter, status); |
| status = GdipGetPropertyIdList(image, prop_count, prop_id); |
| if (image_type == ImageTypeMetafile) |
| expect(NotImplemented, status); |
| else |
| { |
| expect(Ok, status); |
| if (prop_count != 0) |
| ok(td[i].prop_id == prop_id[0] || td[i].prop_id2 == prop_id[0], |
| " %u: expected property id %#x or %#x, got %#x\n", |
| i, td[i].prop_id, td[i].prop_id2, prop_id[0]); |
| } |
| |
| if (status == Ok) |
| { |
| status = GdipGetPropertyItemSize(image, prop_id[0], &prop_size); |
| if (prop_count == 0) |
| expect(PropertyNotFound, status); |
| else |
| { |
| expect(Ok, status); |
| |
| assert(sizeof(item) >= prop_size); |
| ok(prop_size > sizeof(PropertyItem), "%u: got too small prop_size %u\n", |
| i, prop_size); |
| ok(td[i].prop_size + sizeof(PropertyItem) == prop_size || |
| td[i].prop_size2 + sizeof(PropertyItem) == prop_size, |
| " %u: expected property size %u or %u, got %u\n", |
| i, td[i].prop_size, td[i].prop_size2, prop_size); |
| |
| status = GdipGetPropertyItem(image, prop_id[0], 0, &item.data); |
| ok(status == InvalidParameter || status == GenericError /* Win7 */, |
| "%u: expected InvalidParameter, got %d\n", i, status); |
| status = GdipGetPropertyItem(image, prop_id[0], prop_size - 1, &item.data); |
| ok(status == InvalidParameter || status == GenericError /* Win7 */, |
| "%u: expected InvalidParameter, got %d\n", i, status); |
| status = GdipGetPropertyItem(image, prop_id[0], prop_size + 1, &item.data); |
| ok(status == InvalidParameter || status == GenericError /* Win7 */, |
| "%u: expected InvalidParameter, got %d\n", i, status); |
| status = GdipGetPropertyItem(image, prop_id[0], prop_size, &item.data); |
| expect(Ok, status); |
| ok(prop_id[0] == item.data.id, |
| "%u: expected property id %#x, got %#x\n", i, prop_id[0], item.data.id); |
| } |
| } |
| |
| GdipDisposeImage(image); |
| } |
| } |
| |
| #define IFD_BYTE 1 |
| #define IFD_ASCII 2 |
| #define IFD_SHORT 3 |
| #define IFD_LONG 4 |
| #define IFD_RATIONAL 5 |
| #define IFD_SBYTE 6 |
| #define IFD_UNDEFINED 7 |
| #define IFD_SSHORT 8 |
| #define IFD_SLONG 9 |
| #define IFD_SRATIONAL 10 |
| #define IFD_FLOAT 11 |
| #define IFD_DOUBLE 12 |
| |
| #ifndef PropertyTagTypeSByte |
| #define PropertyTagTypeSByte 6 |
| #define PropertyTagTypeSShort 8 |
| #define PropertyTagTypeFloat 11 |
| #define PropertyTagTypeDouble 12 |
| #endif |
| |
| static UINT documented_type(UINT type) |
| { |
| switch (type) |
| { |
| case PropertyTagTypeSByte: return PropertyTagTypeByte; |
| case PropertyTagTypeSShort: return PropertyTagTypeShort; |
| case PropertyTagTypeFloat: return PropertyTagTypeUndefined; |
| case PropertyTagTypeDouble: return PropertyTagTypeUndefined; |
| default: return type; |
| } |
| } |
| |
| #include "pshpack2.h" |
| struct IFD_entry |
| { |
| SHORT id; |
| SHORT type; |
| ULONG count; |
| LONG value; |
| }; |
| |
| struct IFD_rational |
| { |
| LONG numerator; |
| LONG denominator; |
| }; |
| |
| static const struct tiff_data |
| { |
| USHORT byte_order; |
| USHORT version; |
| ULONG dir_offset; |
| USHORT number_of_entries; |
| struct IFD_entry entry[40]; |
| ULONG next_IFD; |
| struct IFD_rational xres; |
| DOUBLE double_val; |
| struct IFD_rational srational_val; |
| char string[14]; |
| SHORT short_val[4]; |
| LONG long_val[2]; |
| FLOAT float_val[2]; |
| struct IFD_rational rational[3]; |
| BYTE pixel_data[4]; |
| } TIFF_data = |
| { |
| #ifdef WORDS_BIGENDIAN |
| 'M' | 'M' << 8, |
| #else |
| 'I' | 'I' << 8, |
| #endif |
| 42, |
| FIELD_OFFSET(struct tiff_data, number_of_entries), |
| 31, |
| { |
| { 0xff, IFD_SHORT, 1, 0 }, /* SUBFILETYPE */ |
| { 0x100, IFD_LONG, 1, 1 }, /* IMAGEWIDTH */ |
| { 0x101, IFD_LONG, 1, 1 }, /* IMAGELENGTH */ |
| { 0x102, IFD_SHORT, 1, 1 }, /* BITSPERSAMPLE */ |
| { 0x103, IFD_LONG, 1, 1 }, /* COMPRESSION */ |
| { 0x106, IFD_SHORT, 1, 1 }, /* PHOTOMETRIC */ |
| { 0x111, IFD_LONG, 1, FIELD_OFFSET(struct tiff_data, pixel_data) }, /* STRIPOFFSETS */ |
| { 0x115, IFD_SHORT, 1, 1 }, /* SAMPLESPERPIXEL */ |
| { 0x116, IFD_LONG, 1, 1 }, /* ROWSPERSTRIP */ |
| { 0x117, IFD_LONG, 1, 1 }, /* STRIPBYTECOUNT */ |
| { 0x11a, IFD_RATIONAL, 1, FIELD_OFFSET(struct tiff_data, xres) }, |
| { 0x11b, IFD_RATIONAL, 1, FIELD_OFFSET(struct tiff_data, xres) }, |
| { 0x128, IFD_SHORT, 1, 2 }, /* RESOLUTIONUNIT */ |
| { 0xf001, IFD_BYTE, 1, 0x11223344 }, |
| { 0xf002, IFD_BYTE, 4, 0x11223344 }, |
| { 0xf003, IFD_SBYTE, 1, 0x11223344 }, |
| { 0xf004, IFD_SSHORT, 1, 0x11223344 }, |
| { 0xf005, IFD_SSHORT, 2, 0x11223344 }, |
| { 0xf006, IFD_SLONG, 1, 0x11223344 }, |
| { 0xf007, IFD_FLOAT, 1, 0x11223344 }, |
| { 0xf008, IFD_DOUBLE, 1, FIELD_OFFSET(struct tiff_data, double_val) }, |
| { 0xf009, IFD_SRATIONAL, 1, FIELD_OFFSET(struct tiff_data, srational_val) }, |
| { 0xf00a, IFD_BYTE, 13, FIELD_OFFSET(struct tiff_data, string) }, |
| { 0xf00b, IFD_SSHORT, 4, FIELD_OFFSET(struct tiff_data, short_val) }, |
| { 0xf00c, IFD_SLONG, 2, FIELD_OFFSET(struct tiff_data, long_val) }, |
| { 0xf00e, IFD_ASCII, 13, FIELD_OFFSET(struct tiff_data, string) }, |
| { 0xf00f, IFD_ASCII, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 }, |
| { 0xf010, IFD_UNDEFINED, 13, FIELD_OFFSET(struct tiff_data, string) }, |
| { 0xf011, IFD_UNDEFINED, 4, 'a' | 'b' << 8 | 'c' << 16 | 'd' << 24 }, |
| /* Some gdiplus versions ignore these fields. |
| { 0xf012, IFD_BYTE, 0, 0x11223344 }, |
| { 0xf013, IFD_SHORT, 0, 0x11223344 }, |
| { 0xf014, IFD_LONG, 0, 0x11223344 }, |
| { 0xf015, IFD_FLOAT, 0, 0x11223344 },*/ |
| { 0xf016, IFD_SRATIONAL, 3, FIELD_OFFSET(struct tiff_data, rational) }, |
| /* Win7 before SP1 doesn't recognize this field, everybody else does. */ |
| { 0xf017, IFD_FLOAT, 2, FIELD_OFFSET(struct tiff_data, float_val) }, |
| }, |
| 0, |
| { 900, 3 }, |
| 1234567890.0987654321, |
| { 0x1a2b3c4d, 0x5a6b7c8d }, |
| "Hello World!", |
| { 0x0101, 0x0202, 0x0303, 0x0404 }, |
| { 0x11223344, 0x55667788 }, |
| { (FLOAT)1234.5678, (FLOAT)8765.4321 }, |
| { { 0x01020304, 0x05060708 }, { 0x10203040, 0x50607080 }, { 0x11223344, 0x55667788 } }, |
| { 0x11, 0x22, 0x33, 0 } |
| }; |
| #include "poppack.h" |
| |
| static void test_tiff_properties(void) |
| { |
| static const struct test_data |
| { |
| ULONG type, id, length; |
| const BYTE value[24]; |
| } td[31] = |
| { |
| { PropertyTagTypeShort, 0xff, 2, { 0 } }, |
| { PropertyTagTypeLong, 0x100, 4, { 1 } }, |
| { PropertyTagTypeLong, 0x101, 4, { 1 } }, |
| { PropertyTagTypeShort, 0x102, 2, { 1 } }, |
| { PropertyTagTypeLong, 0x103, 4, { 1 } }, |
| { PropertyTagTypeShort, 0x106, 2, { 1 } }, |
| { PropertyTagTypeLong, 0x111, 4, { 0x44,0x02 } }, |
| { PropertyTagTypeShort, 0x115, 2, { 1 } }, |
| { PropertyTagTypeLong, 0x116, 4, { 1 } }, |
| { PropertyTagTypeLong, 0x117, 4, { 1 } }, |
| { PropertyTagTypeRational, 0x11a, 8, { 0x84,0x03,0,0,0x03 } }, |
| { PropertyTagTypeRational, 0x11b, 8, { 0x84,0x03,0,0,0x03 } }, |
| { PropertyTagTypeShort, 0x128, 2, { 2 } }, |
| { PropertyTagTypeByte, 0xf001, 1, { 0x44 } }, |
| { PropertyTagTypeByte, 0xf002, 4, { 0x44,0x33,0x22,0x11 } }, |
| { PropertyTagTypeSByte, 0xf003, 1, { 0x44 } }, |
| { PropertyTagTypeSShort, 0xf004, 2, { 0x44,0x33 } }, |
| { PropertyTagTypeSShort, 0xf005, 4, { 0x44,0x33,0x22,0x11 } }, |
| { PropertyTagTypeSLONG, 0xf006, 4, { 0x44,0x33,0x22,0x11 } }, |
| { PropertyTagTypeFloat, 0xf007, 4, { 0x44,0x33,0x22,0x11 } }, |
| { PropertyTagTypeDouble, 0xf008, 8, { 0x2c,0x52,0x86,0xb4,0x80,0x65,0xd2,0x41 } }, |
| { PropertyTagTypeSRational, 0xf009, 8, { 0x4d, 0x3c, 0x2b, 0x1a, 0x8d, 0x7c, 0x6b, 0x5a } }, |
| { PropertyTagTypeByte, 0xf00a, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } }, |
| { PropertyTagTypeSShort, 0xf00b, 8, { 0x01,0x01,0x02,0x02,0x03,0x03,0x04,0x04 } }, |
| { PropertyTagTypeSLONG, 0xf00c, 8, { 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } }, |
| { PropertyTagTypeASCII, 0xf00e, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } }, |
| { PropertyTagTypeASCII, 0xf00f, 5, { 'a','b','c','d' } }, |
| { PropertyTagTypeUndefined, 0xf010, 13, { 'H','e','l','l','o',' ','W','o','r','l','d','!',0 } }, |
| { PropertyTagTypeUndefined, 0xf011, 4, { 'a','b','c','d' } }, |
| { PropertyTagTypeSRational, 0xf016, 24, |
| { 0x04,0x03,0x02,0x01,0x08,0x07,0x06,0x05, |
| 0x40,0x30,0x20,0x10,0x80,0x70,0x60,0x50, |
| 0x44,0x33,0x22,0x11,0x88,0x77,0x66,0x55 } }, |
| /* Win7 before SP1 doesn't recognize this field, everybody else does. */ |
| { PropertyTagTypeFloat, 0xf017, 8, { 0x2b,0x52,0x9a,0x44,0xba,0xf5,0x08,0x46 } }, |
| }; |
| GpStatus status; |
| GpImage *image; |
| GUID guid; |
| UINT dim_count, frame_count, prop_count, prop_size, i; |
| PROPID *prop_id; |
| PropertyItem *prop_item; |
| |
| image = load_image((const BYTE *)&TIFF_data, sizeof(TIFF_data)); |
| ok(image != 0, "Failed to load TIFF image data\n"); |
| if (!image) return; |
| |
| status = GdipImageGetFrameDimensionsCount(image, &dim_count); |
| expect(Ok, status); |
| expect(1, dim_count); |
| |
| status = GdipImageGetFrameDimensionsList(image, &guid, 1); |
| expect(Ok, status); |
| expect_guid(&FrameDimensionPage, &guid, __LINE__, FALSE); |
| |
| frame_count = 0xdeadbeef; |
| status = GdipImageGetFrameCount(image, &guid, &frame_count); |
| expect(Ok, status); |
| expect(1, frame_count); |
| |
| prop_count = 0xdeadbeef; |
| status = GdipGetPropertyCount(image, &prop_count); |
| expect(Ok, status); |
| ok(prop_count == sizeof(td)/sizeof(td[0]) || |
| broken(prop_count == sizeof(td)/sizeof(td[0]) - 1) /* Win7 SP0 */, |
| "expected property count %u, got %u\n", (UINT)(sizeof(td)/sizeof(td[0])), prop_count); |
| |
| prop_id = HeapAlloc(GetProcessHeap(), 0, prop_count * sizeof(*prop_id)); |
| |
| status = GdipGetPropertyIdList(image, prop_count, prop_id); |
| expect(Ok, status); |
| |
| for (i = 0; i < prop_count; i++) |
| { |
| status = GdipGetPropertyItemSize(image, prop_id[i], &prop_size); |
| expect(Ok, status); |
| if (status != Ok) break; |
| ok(prop_size > sizeof(*prop_item), "%u: too small item length %u\n", i, prop_size); |
| |
| prop_item = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, prop_size); |
| status = GdipGetPropertyItem(image, prop_id[i], prop_size, prop_item); |
| expect(Ok, status); |
| ok(prop_item->value == prop_item + 1, "expected item->value %p, got %p\n", prop_item + 1, prop_item->value); |
| ok(td[i].type == prop_item->type || |
| /* Win7 stopped using proper but not documented types, and it |
| looks broken since TypeFloat and TypeDouble now reported as |
| TypeUndefined, and signed types reported as unsigned. */ |
| broken(prop_item->type == documented_type(td[i].type)), |
| "%u: expected type %u, got %u\n", i, td[i].type, prop_item->type); |
| ok(td[i].id == prop_item->id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item->id); |
| prop_size -= sizeof(*prop_item); |
| ok(prop_item->length == prop_size, "%u: expected length %u, got %u\n", i, prop_size, prop_item->length); |
| ok(td[i].length == prop_item->length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item->length); |
| ok(td[i].length == prop_size, "%u: expected length %u, got %u\n", i, td[i].length, prop_size); |
| if (td[i].length == prop_item->length) |
| { |
| int match = memcmp(td[i].value, prop_item->value, td[i].length) == 0; |
| ok(match || broken(td[i].length <= 4 && !match), "%u: data mismatch\n", i); |
| if (!match) |
| { |
| UINT j; |
| BYTE *data = prop_item->value; |
| printf("id %#x:", prop_item->id); |
| for (j = 0; j < prop_item->length; j++) |
| printf(" %02x", data[j]); |
| printf("\n"); |
| } |
| } |
| HeapFree(GetProcessHeap(), 0, prop_item); |
| } |
| |
| HeapFree(GetProcessHeap(), 0, prop_id); |
| |
| GdipDisposeImage(image); |
| } |
| |
| static void test_GdipGetAllPropertyItems(void) |
| { |
| static const struct test_data |
| { |
| ULONG type, id, length; |
| BYTE value[32]; |
| } td[16] = |
| { |
| { PropertyTagTypeLong, 0xfe, 4, { 0 } }, |
| { PropertyTagTypeShort, 0x100, 2, { 1 } }, |
| { PropertyTagTypeShort, 0x101, 2, { 1 } }, |
| { PropertyTagTypeShort, 0x102, 6, { 8,0,8,0,8,0 } }, |
| { PropertyTagTypeShort, 0x103, 2, { 1 } }, |
| { PropertyTagTypeShort, 0x106, 2, { 2,0 } }, |
| { PropertyTagTypeASCII, 0x10d, 27, "/home/meh/Desktop/test.tif" }, |
| { PropertyTagTypeLong, 0x111, 4, { 8,0,0,0 } }, |
| { PropertyTagTypeShort, 0x112, 2, { 1 } }, |
| { PropertyTagTypeShort, 0x115, 2, { 3,0 } }, |
| { PropertyTagTypeShort, 0x116, 2, { 0x40,0 } }, |
| { PropertyTagTypeLong, 0x117, 4, { 3,0,0,0 } }, |
| { PropertyTagTypeRational, 0x11a, 8, { 0,0,0,72,0,0,0,1 } }, |
| { PropertyTagTypeRational, 0x11b, 8, { 0,0,0,72,0,0,0,1 } }, |
| { PropertyTagTypeShort, 0x11c, 2, { 1 } }, |
| { PropertyTagTypeShort, 0x128, 2, { 2 } } |
| }; |
| GpStatus status; |
| GpImage *image; |
| GUID guid; |
| UINT dim_count, frame_count, prop_count, prop_size, i; |
| UINT total_size, total_count; |
| PROPID *prop_id; |
| PropertyItem *prop_item; |
| const char *item_data; |
| |
| image = load_image(tiffimage, sizeof(tiffimage)); |
| ok(image != 0, "Failed to load TIFF image data\n"); |
| if (!image) return; |
| |
| dim_count = 0xdeadbeef; |
| status = GdipImageGetFrameDimensionsCount(image, &dim_count); |
| expect(Ok, status); |
| expect(1, dim_count); |
| |
| status = GdipImageGetFrameDimensionsList(image, &guid, 1); |
| expect(Ok, status); |
| expect_guid(&FrameDimensionPage, &guid, __LINE__, FALSE); |
| |
| frame_count = 0xdeadbeef; |
| status = GdipImageGetFrameCount(image, &guid, &frame_count); |
| expect(Ok, status); |
| expect(1, frame_count); |
| |
| prop_count = 0xdeadbeef; |
| status = GdipGetPropertyCount(image, &prop_count); |
| expect(Ok, status); |
| ok(prop_count == sizeof(td)/sizeof(td[0]), |
| "expected property count %u, got %u\n", (UINT)(sizeof(td)/sizeof(td[0])), prop_count); |
| |
| prop_id = HeapAlloc(GetProcessHeap(), 0, prop_count * sizeof(*prop_id)); |
| |
| status = GdipGetPropertyIdList(image, prop_count, prop_id); |
| expect(Ok, status); |
| |
| prop_size = 0; |
| for (i = 0; i < prop_count; i++) |
| { |
| UINT size; |
| status = GdipGetPropertyItemSize(image, prop_id[i], &size); |
| expect(Ok, status); |
| if (status != Ok) break; |
| ok(size > sizeof(*prop_item), "%u: too small item length %u\n", i, size); |
| |
| prop_size += size; |
| |
| prop_item = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size); |
| status = GdipGetPropertyItem(image, prop_id[i], size, prop_item); |
| expect(Ok, status); |
| ok(prop_item->value == prop_item + 1, "expected item->value %p, got %p\n", prop_item + 1, prop_item->value); |
| ok(td[i].type == prop_item->type, |
| "%u: expected type %u, got %u\n", i, td[i].type, prop_item->type); |
| ok(td[i].id == prop_item->id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item->id); |
| size -= sizeof(*prop_item); |
| ok(prop_item->length == size, "%u: expected length %u, got %u\n", i, size, prop_item->length); |
| ok(td[i].length == prop_item->length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item->length); |
| if (td[i].length == prop_item->length) |
| { |
| int match = memcmp(td[i].value, prop_item->value, td[i].length) == 0; |
| ok(match, "%u: data mismatch\n", i); |
| if (!match) |
| { |
| UINT j; |
| BYTE *data = prop_item->value; |
| printf("id %#x:", prop_item->id); |
| for (j = 0; j < prop_item->length; j++) |
| printf(" %02x", data[j]); |
| printf("\n"); |
| } |
| } |
| HeapFree(GetProcessHeap(), 0, prop_item); |
| } |
| |
| HeapFree(GetProcessHeap(), 0, prop_id); |
| |
| status = GdipGetPropertySize(NULL, &total_size, &total_count); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertySize(image, &total_size, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertySize(image, NULL, &total_count); |
| expect(InvalidParameter, status); |
| status = GdipGetPropertySize(image, NULL, NULL); |
| expect(InvalidParameter, status); |
| total_size = 0xdeadbeef; |
| total_count = 0xdeadbeef; |
| status = GdipGetPropertySize(image, &total_size, &total_count); |
| expect(Ok, status); |
| ok(prop_count == total_count, |
| "expected total property count %u, got %u\n", prop_count, total_count); |
| ok(prop_size == total_size, |
| "expected total property size %u, got %u\n", prop_size, total_size); |
| |
| prop_item = HeapAlloc(GetProcessHeap(), 0, prop_size); |
| |
| status = GdipGetAllPropertyItems(image, 0, prop_count, prop_item); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, prop_size, 1, prop_item); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, prop_size, prop_count, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, 0, 0, NULL); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, prop_size + 1, prop_count, prop_item); |
| expect(InvalidParameter, status); |
| status = GdipGetAllPropertyItems(image, prop_size, prop_count, prop_item); |
| expect(Ok, status); |
| |
| item_data = (const char *)(prop_item + prop_count); |
| for (i = 0; i < prop_count; i++) |
| { |
| ok(prop_item[i].value == item_data, "%u: expected value %p, got %p\n", |
| i, item_data, prop_item[i].value); |
| ok(td[i].type == prop_item[i].type, |
| "%u: expected type %u, got %u\n", i, td[i].type, prop_item[i].type); |
| ok(td[i].id == prop_item[i].id, "%u: expected id %#x, got %#x\n", i, td[i].id, prop_item[i].id); |
| ok(td[i].length == prop_item[i].length, "%u: expected length %u, got %u\n", i, td[i].length, prop_item[i].length); |
| if (td[i].length == prop_item[i].length) |
| { |
| int match = memcmp(td[i].value, prop_item[i].value, td[i].length) == 0; |
| ok(match, "%u: data mismatch\n", i); |
| if (!match) |
| { |
| UINT j; |
| BYTE *data = prop_item[i].value; |
| printf("id %#x:", prop_item[i].id); |
| for (j = 0; j < prop_item[i].length; j++) |
| printf(" %02x", data[j]); |
| printf("\n"); |
| } |
| } |
| item_data += prop_item[i].length; |
| } |
| |
| HeapFree(GetProcessHeap(), 0, prop_item); |
| |
| GdipDisposeImage(image); |
| } |
| |
| static void test_tiff_palette(void) |
| { |
| GpStatus status; |
| GpImage *image; |
| PixelFormat format; |
| INT size; |
| struct |
| { |
| ColorPalette pal; |
| ARGB entry[256]; |
| } palette; |
| ARGB *entries = palette.pal.Entries; |
| |
| /* 1bpp TIFF without palette */ |
| image = load_image((const BYTE *)&TIFF_data, sizeof(TIFF_data)); |
| ok(image != 0, "Failed to load TIFF image data\n"); |
| if (!image) return; |
| |
| status = GdipGetImagePixelFormat(image, &format); |
| expect(Ok, status); |
| ok(format == PixelFormat1bppIndexed, "expected PixelFormat1bppIndexed, got %#x\n", format); |
| |
| status = GdipGetImagePaletteSize(image, &size); |
| ok(status == Ok || broken(status == GenericError), /* XP */ |
| "GdipGetImagePaletteSize error %d\n", status); |
| if (status == GenericError) |
| { |
| GdipDisposeImage(image); |
| return; |
| } |
| expect(sizeof(ColorPalette) + sizeof(ARGB), size); |
| |
| status = GdipGetImagePalette(image, &palette.pal, size); |
| expect(Ok, status); |
| expect(0, palette.pal.Flags); |
| expect(2, palette.pal.Count); |
| if (palette.pal.Count == 2) |
| { |
| ok(entries[0] == 0xff000000, "expected 0xff000000, got %#x\n", entries[0]); |
| ok(entries[1] == 0xffffffff, "expected 0xffffffff, got %#x\n", entries[1]); |
| } |
| |
| GdipDisposeImage(image); |
| } |
| |
| START_TEST(image) |
| { |
| struct GdiplusStartupInput gdiplusStartupInput; |
| ULONG_PTR gdiplusToken; |
| |
| gdiplusStartupInput.GdiplusVersion = 1; |
| gdiplusStartupInput.DebugEventCallback = NULL; |
| gdiplusStartupInput.SuppressBackgroundThread = 0; |
| gdiplusStartupInput.SuppressExternalCodecs = 0; |
| |
| GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL); |
| |
| test_tiff_palette(); |
| test_GdipGetAllPropertyItems(); |
| test_tiff_properties(); |
| test_image_properties(); |
| test_Scan0(); |
| test_FromGdiDib(); |
| test_GetImageDimension(); |
| test_GdipImageGetFrameDimensionsCount(); |
| test_LoadingImages(); |
| test_SavingImages(); |
| test_encoders(); |
| test_LockBits(); |
| test_LockBits_UserBuf(); |
| test_GdipCreateBitmapFromHBITMAP(); |
| test_GdipGetImageFlags(); |
| test_GdipCloneImage(); |
| test_testcontrol(); |
| test_fromhicon(); |
| test_getrawformat(); |
| test_loadwmf(); |
| test_createfromwmf(); |
| test_resolution(); |
| test_createhbitmap(); |
| test_getthumbnail(); |
| test_getsetpixel(); |
| test_palette(); |
| test_colormatrix(); |
| test_gamma(); |
| test_multiframegif(); |
| test_rotateflip(); |
| test_remaptable(); |
| test_colorkey(); |
| test_dispose(); |
| |
| GdiplusShutdown(gdiplusToken); |
| } |