2 * Copyright (C) 2007 Google (Evan Stade)
3 * Copyright (C) 2012,2016 Dmitry Timoshkov
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define NONAMELESSUNION
38 #include "gdiplus_private.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus
);
43 HRESULT WINAPI
WICCreateImagingFactory_Proxy(UINT
, IWICImagingFactory
**);
45 #define PIXELFORMATBPP(x) ((x) ? ((x) >> 8) & 255 : 24)
46 #define WMF_PLACEABLE_KEY 0x9ac6cdd7
50 const WICPixelFormatGUID
*wic_format
;
51 PixelFormat gdip_format
;
52 /* predefined palette type to use for pixel format conversions */
53 WICBitmapPaletteType palette_type
;
56 { &GUID_WICPixelFormatBlackWhite
, PixelFormat1bppIndexed
, WICBitmapPaletteTypeFixedBW
},
57 { &GUID_WICPixelFormat1bppIndexed
, PixelFormat1bppIndexed
, WICBitmapPaletteTypeFixedBW
},
58 { &GUID_WICPixelFormat8bppGray
, PixelFormat8bppIndexed
, WICBitmapPaletteTypeFixedGray256
},
59 { &GUID_WICPixelFormat8bppIndexed
, PixelFormat8bppIndexed
, WICBitmapPaletteTypeFixedHalftone256
},
60 { &GUID_WICPixelFormat16bppBGR555
, PixelFormat16bppRGB555
, WICBitmapPaletteTypeFixedHalftone256
},
61 { &GUID_WICPixelFormat24bppBGR
, PixelFormat24bppRGB
, WICBitmapPaletteTypeFixedHalftone256
},
62 { &GUID_WICPixelFormat32bppBGR
, PixelFormat32bppRGB
, WICBitmapPaletteTypeFixedHalftone256
},
63 { &GUID_WICPixelFormat32bppBGRA
, PixelFormat32bppARGB
, WICBitmapPaletteTypeFixedHalftone256
},
64 { &GUID_WICPixelFormat32bppPBGRA
, PixelFormat32bppPARGB
, WICBitmapPaletteTypeFixedHalftone256
},
68 static ColorPalette
*get_palette(IWICBitmapFrameDecode
*frame
, WICBitmapPaletteType palette_type
)
71 IWICImagingFactory
*factory
;
72 IWICPalette
*wic_palette
;
73 ColorPalette
*palette
= NULL
;
75 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
76 if (hr
!= S_OK
) return NULL
;
78 hr
= IWICImagingFactory_CreatePalette(factory
, &wic_palette
);
81 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
83 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, wic_palette
);
86 TRACE("using predefined palette %#x\n", palette_type
);
87 hr
= IWICPalette_InitializePredefined(wic_palette
, palette_type
, FALSE
);
91 WICBitmapPaletteType type
;
95 IWICPalette_GetColorCount(wic_palette
, &count
);
96 palette
= heap_alloc(2 * sizeof(UINT
) + count
* sizeof(ARGB
));
97 IWICPalette_GetColors(wic_palette
, count
, palette
->Entries
, &palette
->Count
);
99 IWICPalette_GetType(wic_palette
, &type
);
101 case WICBitmapPaletteTypeFixedGray4
:
102 case WICBitmapPaletteTypeFixedGray16
:
103 case WICBitmapPaletteTypeFixedGray256
:
104 palette
->Flags
= PaletteFlagsGrayScale
;
106 case WICBitmapPaletteTypeFixedHalftone8
:
107 case WICBitmapPaletteTypeFixedHalftone27
:
108 case WICBitmapPaletteTypeFixedHalftone64
:
109 case WICBitmapPaletteTypeFixedHalftone125
:
110 case WICBitmapPaletteTypeFixedHalftone216
:
111 case WICBitmapPaletteTypeFixedHalftone252
:
112 case WICBitmapPaletteTypeFixedHalftone256
:
113 palette
->Flags
= PaletteFlagsHalftone
;
118 IWICPalette_HasAlpha(wic_palette
, &alpha
);
120 palette
->Flags
|= PaletteFlagsHasAlpha
;
122 IWICPalette_Release(wic_palette
);
124 IWICImagingFactory_Release(factory
);
128 GpStatus WINGDIPAPI
GdipBitmapApplyEffect(GpBitmap
* bitmap
, CGpEffect
* effect
,
129 RECT
* roi
, BOOL useAuxData
, VOID
** auxData
, INT
* auxDataSize
)
131 FIXME("(%p %p %p %d %p %p): stub\n", bitmap
, effect
, roi
, useAuxData
, auxData
, auxDataSize
);
133 * Note: According to Jose Roca's GDI+ docs, this function is not
134 * implemented in Windows's GDI+.
136 return NotImplemented
;
139 GpStatus WINGDIPAPI
GdipBitmapCreateApplyEffect(GpBitmap
** inputBitmaps
,
140 INT numInputs
, CGpEffect
* effect
, RECT
* roi
, RECT
* outputRect
,
141 GpBitmap
** outputBitmap
, BOOL useAuxData
, VOID
** auxData
, INT
* auxDataSize
)
143 FIXME("(%p %d %p %p %p %p %d %p %p): stub\n", inputBitmaps
, numInputs
, effect
, roi
, outputRect
, outputBitmap
, useAuxData
, auxData
, auxDataSize
);
145 * Note: According to Jose Roca's GDI+ docs, this function is not
146 * implemented in Windows's GDI+.
148 return NotImplemented
;
151 static inline void getpixel_1bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
153 *index
= (row
[x
/8]>>(7-x
%8)) & 1;
156 static inline void getpixel_4bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
159 *index
= row
[x
/2]&0xf;
161 *index
= row
[x
/2]>>4;
164 static inline void getpixel_8bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
169 static inline void getpixel_16bppGrayScale(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
170 const BYTE
*row
, UINT x
)
172 *r
= *g
= *b
= row
[x
*2+1];
176 static inline void getpixel_16bppRGB555(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
177 const BYTE
*row
, UINT x
)
179 WORD pixel
= *((const WORD
*)(row
)+x
);
180 *r
= (pixel
>>7&0xf8)|(pixel
>>12&0x7);
181 *g
= (pixel
>>2&0xf8)|(pixel
>>6&0x7);
182 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
186 static inline void getpixel_16bppRGB565(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
187 const BYTE
*row
, UINT x
)
189 WORD pixel
= *((const WORD
*)(row
)+x
);
190 *r
= (pixel
>>8&0xf8)|(pixel
>>13&0x7);
191 *g
= (pixel
>>3&0xfc)|(pixel
>>9&0x3);
192 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
196 static inline void getpixel_16bppARGB1555(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
197 const BYTE
*row
, UINT x
)
199 WORD pixel
= *((const WORD
*)(row
)+x
);
200 *r
= (pixel
>>7&0xf8)|(pixel
>>12&0x7);
201 *g
= (pixel
>>2&0xf8)|(pixel
>>6&0x7);
202 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
203 if ((pixel
&0x8000) == 0x8000)
209 static inline void getpixel_24bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
210 const BYTE
*row
, UINT x
)
218 static inline void getpixel_32bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
219 const BYTE
*row
, UINT x
)
227 static inline void getpixel_32bppARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
228 const BYTE
*row
, UINT x
)
236 static inline void getpixel_32bppPARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
237 const BYTE
*row
, UINT x
)
244 *r
= row
[x
*4+2] * 255 / *a
;
245 *g
= row
[x
*4+1] * 255 / *a
;
246 *b
= row
[x
*4] * 255 / *a
;
250 static inline void getpixel_48bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
251 const BYTE
*row
, UINT x
)
259 static inline void getpixel_64bppARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
260 const BYTE
*row
, UINT x
)
268 static inline void getpixel_64bppPARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
269 const BYTE
*row
, UINT x
)
276 *r
= row
[x
*8+5] * 255 / *a
;
277 *g
= row
[x
*8+3] * 255 / *a
;
278 *b
= row
[x
*8+1] * 255 / *a
;
282 GpStatus WINGDIPAPI
GdipBitmapGetPixel(GpBitmap
* bitmap
, INT x
, INT y
,
289 if(!bitmap
|| !color
||
290 x
< 0 || y
< 0 || x
>= bitmap
->width
|| y
>= bitmap
->height
)
291 return InvalidParameter
;
293 row
= bitmap
->bits
+bitmap
->stride
*y
;
295 switch (bitmap
->format
)
297 case PixelFormat1bppIndexed
:
298 getpixel_1bppIndexed(&index
,row
,x
);
300 case PixelFormat4bppIndexed
:
301 getpixel_4bppIndexed(&index
,row
,x
);
303 case PixelFormat8bppIndexed
:
304 getpixel_8bppIndexed(&index
,row
,x
);
306 case PixelFormat16bppGrayScale
:
307 getpixel_16bppGrayScale(&r
,&g
,&b
,&a
,row
,x
);
309 case PixelFormat16bppRGB555
:
310 getpixel_16bppRGB555(&r
,&g
,&b
,&a
,row
,x
);
312 case PixelFormat16bppRGB565
:
313 getpixel_16bppRGB565(&r
,&g
,&b
,&a
,row
,x
);
315 case PixelFormat16bppARGB1555
:
316 getpixel_16bppARGB1555(&r
,&g
,&b
,&a
,row
,x
);
318 case PixelFormat24bppRGB
:
319 getpixel_24bppRGB(&r
,&g
,&b
,&a
,row
,x
);
321 case PixelFormat32bppRGB
:
322 getpixel_32bppRGB(&r
,&g
,&b
,&a
,row
,x
);
324 case PixelFormat32bppARGB
:
325 getpixel_32bppARGB(&r
,&g
,&b
,&a
,row
,x
);
327 case PixelFormat32bppPARGB
:
328 getpixel_32bppPARGB(&r
,&g
,&b
,&a
,row
,x
);
330 case PixelFormat48bppRGB
:
331 getpixel_48bppRGB(&r
,&g
,&b
,&a
,row
,x
);
333 case PixelFormat64bppARGB
:
334 getpixel_64bppARGB(&r
,&g
,&b
,&a
,row
,x
);
336 case PixelFormat64bppPARGB
:
337 getpixel_64bppPARGB(&r
,&g
,&b
,&a
,row
,x
);
340 FIXME("not implemented for format 0x%x\n", bitmap
->format
);
341 return NotImplemented
;
344 if (bitmap
->format
& PixelFormatIndexed
)
345 *color
= bitmap
->image
.palette
->Entries
[index
];
347 *color
= a
<<24|r
<<16|g
<<8|b
;
352 static inline UINT
get_palette_index(BYTE r
, BYTE g
, BYTE b
, BYTE a
, ColorPalette
*palette
)
355 int best_distance
= 0x7fff;
359 if (!palette
) return 0;
360 /* This algorithm scans entire palette,
361 computes difference from desired color (all color components have equal weight)
362 and returns the index of color with least difference.
364 Note: Maybe it could be replaced with a better algorithm for better image quality
365 and performance, though better algorithm would probably need some pre-built lookup
366 tables and thus may actually be slower if this method is called only few times per
369 for(i
=0;i
<palette
->Count
;i
++) {
370 ARGB color
=palette
->Entries
[i
];
371 distance
=abs(b
-(color
& 0xff)) + abs(g
-(color
>>8 & 0xff)) + abs(r
-(color
>>16 & 0xff)) + abs(a
-(color
>>24 & 0xff));
372 if (distance
<best_distance
) {
373 best_distance
=distance
;
380 static inline void setpixel_8bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
381 BYTE
*row
, UINT x
, ColorPalette
*palette
)
383 BYTE index
= get_palette_index(r
,g
,b
,a
,palette
);
387 static inline void setpixel_1bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
388 BYTE
*row
, UINT x
, ColorPalette
*palette
)
390 row
[x
/8] = (row
[x
/8] & ~(1<<(7-x
%8))) | (get_palette_index(r
,g
,b
,a
,palette
)<<(7-x
%8));
393 static inline void setpixel_4bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
394 BYTE
*row
, UINT x
, ColorPalette
*palette
)
397 row
[x
/2] = (row
[x
/2] & 0xf0) | get_palette_index(r
,g
,b
,a
,palette
);
399 row
[x
/2] = (row
[x
/2] & 0x0f) | get_palette_index(r
,g
,b
,a
,palette
)<<4;
402 static inline void setpixel_16bppGrayScale(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
405 *((WORD
*)(row
)+x
) = (r
+g
+b
)*85;
408 static inline void setpixel_16bppRGB555(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
411 *((WORD
*)(row
)+x
) = (r
<<7&0x7c00)|
416 static inline void setpixel_16bppRGB565(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
419 *((WORD
*)(row
)+x
) = (r
<<8&0xf800)|
424 static inline void setpixel_16bppARGB1555(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
427 *((WORD
*)(row
)+x
) = (a
<<8&0x8000)|
433 static inline void setpixel_24bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
441 static inline void setpixel_32bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
444 *((DWORD
*)(row
)+x
) = (r
<<16)|(g
<<8)|b
;
447 static inline void setpixel_32bppARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
450 *((DWORD
*)(row
)+x
) = (a
<<24)|(r
<<16)|(g
<<8)|b
;
453 static inline void setpixel_32bppPARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
459 *((DWORD
*)(row
)+x
) = (a
<<24)|(r
<<16)|(g
<<8)|b
;
462 static inline void setpixel_48bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
465 row
[x
*6+5] = row
[x
*6+4] = r
;
466 row
[x
*6+3] = row
[x
*6+2] = g
;
467 row
[x
*6+1] = row
[x
*6] = b
;
470 static inline void setpixel_64bppARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
473 UINT64 a64
=a
, r64
=r
, g64
=g
, b64
=b
;
474 *((UINT64
*)(row
)+x
) = (a64
<<56)|(a64
<<48)|(r64
<<40)|(r64
<<32)|(g64
<<24)|(g64
<<16)|(b64
<<8)|b64
;
477 static inline void setpixel_64bppPARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
480 UINT64 a64
, r64
, g64
, b64
;
485 *((UINT64
*)(row
)+x
) = (a64
<<48)|(r64
<<32)|(g64
<<16)|b64
;
488 GpStatus WINGDIPAPI
GdipBitmapSetPixel(GpBitmap
* bitmap
, INT x
, INT y
,
494 if(!bitmap
|| x
< 0 || y
< 0 || x
>= bitmap
->width
|| y
>= bitmap
->height
)
495 return InvalidParameter
;
502 row
= bitmap
->bits
+ bitmap
->stride
* y
;
504 switch (bitmap
->format
)
506 case PixelFormat16bppGrayScale
:
507 setpixel_16bppGrayScale(r
,g
,b
,a
,row
,x
);
509 case PixelFormat16bppRGB555
:
510 setpixel_16bppRGB555(r
,g
,b
,a
,row
,x
);
512 case PixelFormat16bppRGB565
:
513 setpixel_16bppRGB565(r
,g
,b
,a
,row
,x
);
515 case PixelFormat16bppARGB1555
:
516 setpixel_16bppARGB1555(r
,g
,b
,a
,row
,x
);
518 case PixelFormat24bppRGB
:
519 setpixel_24bppRGB(r
,g
,b
,a
,row
,x
);
521 case PixelFormat32bppRGB
:
522 setpixel_32bppRGB(r
,g
,b
,a
,row
,x
);
524 case PixelFormat32bppARGB
:
525 setpixel_32bppARGB(r
,g
,b
,a
,row
,x
);
527 case PixelFormat32bppPARGB
:
528 setpixel_32bppPARGB(r
,g
,b
,a
,row
,x
);
530 case PixelFormat48bppRGB
:
531 setpixel_48bppRGB(r
,g
,b
,a
,row
,x
);
533 case PixelFormat64bppARGB
:
534 setpixel_64bppARGB(r
,g
,b
,a
,row
,x
);
536 case PixelFormat64bppPARGB
:
537 setpixel_64bppPARGB(r
,g
,b
,a
,row
,x
);
539 case PixelFormat8bppIndexed
:
540 setpixel_8bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
542 case PixelFormat4bppIndexed
:
543 setpixel_4bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
545 case PixelFormat1bppIndexed
:
546 setpixel_1bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
549 FIXME("not implemented for format 0x%x\n", bitmap
->format
);
550 return NotImplemented
;
556 GpStatus
convert_pixels(INT width
, INT height
,
557 INT dst_stride
, BYTE
*dst_bits
, PixelFormat dst_format
,
558 INT src_stride
, const BYTE
*src_bits
, PixelFormat src_format
,
559 ColorPalette
*palette
)
563 if (src_format
== dst_format
||
564 (dst_format
== PixelFormat32bppRGB
&& PIXELFORMATBPP(src_format
) == 32))
566 UINT widthbytes
= PIXELFORMATBPP(src_format
) * width
/ 8;
567 for (y
=0; y
<height
; y
++)
568 memcpy(dst_bits
+dst_stride
*y
, src_bits
+src_stride
*y
, widthbytes
);
572 #define convert_indexed_to_rgb(getpixel_function, setpixel_function) do { \
573 for (y=0; y<height; y++) \
574 for (x=0; x<width; x++) { \
577 BYTE *color = (BYTE *)&argb; \
578 getpixel_function(&index, src_bits+src_stride*y, x); \
579 argb = (palette && index < palette->Count) ? palette->Entries[index] : 0; \
580 setpixel_function(color[2], color[1], color[0], color[3], dst_bits+dst_stride*y, x); \
585 #define convert_rgb_to_rgb(getpixel_function, setpixel_function) do { \
586 for (y=0; y<height; y++) \
587 for (x=0; x<width; x++) { \
589 getpixel_function(&r, &g, &b, &a, src_bits+src_stride*y, x); \
590 setpixel_function(r, g, b, a, dst_bits+dst_stride*y, x); \
595 #define convert_rgb_to_indexed(getpixel_function, setpixel_function) do { \
596 for (y=0; y<height; y++) \
597 for (x=0; x<width; x++) { \
599 getpixel_function(&r, &g, &b, &a, src_bits+src_stride*y, x); \
600 setpixel_function(r, g, b, a, dst_bits+dst_stride*y, x, palette); \
607 case PixelFormat1bppIndexed
:
610 case PixelFormat16bppGrayScale
:
611 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppGrayScale
);
612 case PixelFormat16bppRGB555
:
613 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppRGB555
);
614 case PixelFormat16bppRGB565
:
615 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppRGB565
);
616 case PixelFormat16bppARGB1555
:
617 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppARGB1555
);
618 case PixelFormat24bppRGB
:
619 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_24bppRGB
);
620 case PixelFormat32bppRGB
:
621 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppRGB
);
622 case PixelFormat32bppARGB
:
623 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppARGB
);
624 case PixelFormat32bppPARGB
:
625 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppPARGB
);
626 case PixelFormat48bppRGB
:
627 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_48bppRGB
);
628 case PixelFormat64bppARGB
:
629 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_64bppARGB
);
634 case PixelFormat4bppIndexed
:
637 case PixelFormat16bppGrayScale
:
638 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppGrayScale
);
639 case PixelFormat16bppRGB555
:
640 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppRGB555
);
641 case PixelFormat16bppRGB565
:
642 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppRGB565
);
643 case PixelFormat16bppARGB1555
:
644 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppARGB1555
);
645 case PixelFormat24bppRGB
:
646 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_24bppRGB
);
647 case PixelFormat32bppRGB
:
648 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppRGB
);
649 case PixelFormat32bppARGB
:
650 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppARGB
);
651 case PixelFormat32bppPARGB
:
652 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppPARGB
);
653 case PixelFormat48bppRGB
:
654 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_48bppRGB
);
655 case PixelFormat64bppARGB
:
656 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_64bppARGB
);
661 case PixelFormat8bppIndexed
:
664 case PixelFormat16bppGrayScale
:
665 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppGrayScale
);
666 case PixelFormat16bppRGB555
:
667 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppRGB555
);
668 case PixelFormat16bppRGB565
:
669 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppRGB565
);
670 case PixelFormat16bppARGB1555
:
671 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppARGB1555
);
672 case PixelFormat24bppRGB
:
673 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_24bppRGB
);
674 case PixelFormat32bppRGB
:
675 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppRGB
);
676 case PixelFormat32bppARGB
:
677 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppARGB
);
678 case PixelFormat32bppPARGB
:
679 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppPARGB
);
680 case PixelFormat48bppRGB
:
681 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_48bppRGB
);
682 case PixelFormat64bppARGB
:
683 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_64bppARGB
);
688 case PixelFormat16bppGrayScale
:
691 case PixelFormat1bppIndexed
:
692 convert_rgb_to_indexed(getpixel_16bppGrayScale
, setpixel_1bppIndexed
);
693 case PixelFormat8bppIndexed
:
694 convert_rgb_to_indexed(getpixel_16bppGrayScale
, setpixel_8bppIndexed
);
695 case PixelFormat16bppRGB555
:
696 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppRGB555
);
697 case PixelFormat16bppRGB565
:
698 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppRGB565
);
699 case PixelFormat16bppARGB1555
:
700 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppARGB1555
);
701 case PixelFormat24bppRGB
:
702 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_24bppRGB
);
703 case PixelFormat32bppRGB
:
704 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppRGB
);
705 case PixelFormat32bppARGB
:
706 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppARGB
);
707 case PixelFormat32bppPARGB
:
708 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppPARGB
);
709 case PixelFormat48bppRGB
:
710 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_48bppRGB
);
711 case PixelFormat64bppARGB
:
712 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_64bppARGB
);
717 case PixelFormat16bppRGB555
:
720 case PixelFormat1bppIndexed
:
721 convert_rgb_to_indexed(getpixel_16bppRGB555
, setpixel_1bppIndexed
);
722 case PixelFormat8bppIndexed
:
723 convert_rgb_to_indexed(getpixel_16bppRGB555
, setpixel_8bppIndexed
);
724 case PixelFormat16bppGrayScale
:
725 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppGrayScale
);
726 case PixelFormat16bppRGB565
:
727 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppRGB565
);
728 case PixelFormat16bppARGB1555
:
729 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppARGB1555
);
730 case PixelFormat24bppRGB
:
731 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_24bppRGB
);
732 case PixelFormat32bppRGB
:
733 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppRGB
);
734 case PixelFormat32bppARGB
:
735 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppARGB
);
736 case PixelFormat32bppPARGB
:
737 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppPARGB
);
738 case PixelFormat48bppRGB
:
739 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_48bppRGB
);
740 case PixelFormat64bppARGB
:
741 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_64bppARGB
);
746 case PixelFormat16bppRGB565
:
749 case PixelFormat1bppIndexed
:
750 convert_rgb_to_indexed(getpixel_16bppRGB565
, setpixel_1bppIndexed
);
751 case PixelFormat8bppIndexed
:
752 convert_rgb_to_indexed(getpixel_16bppRGB565
, setpixel_8bppIndexed
);
753 case PixelFormat16bppGrayScale
:
754 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppGrayScale
);
755 case PixelFormat16bppRGB555
:
756 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppRGB555
);
757 case PixelFormat16bppARGB1555
:
758 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppARGB1555
);
759 case PixelFormat24bppRGB
:
760 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_24bppRGB
);
761 case PixelFormat32bppRGB
:
762 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppRGB
);
763 case PixelFormat32bppARGB
:
764 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppARGB
);
765 case PixelFormat32bppPARGB
:
766 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppPARGB
);
767 case PixelFormat48bppRGB
:
768 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_48bppRGB
);
769 case PixelFormat64bppARGB
:
770 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_64bppARGB
);
775 case PixelFormat16bppARGB1555
:
778 case PixelFormat1bppIndexed
:
779 convert_rgb_to_indexed(getpixel_16bppARGB1555
, setpixel_1bppIndexed
);
780 case PixelFormat8bppIndexed
:
781 convert_rgb_to_indexed(getpixel_16bppARGB1555
, setpixel_8bppIndexed
);
782 case PixelFormat16bppGrayScale
:
783 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppGrayScale
);
784 case PixelFormat16bppRGB555
:
785 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppRGB555
);
786 case PixelFormat16bppRGB565
:
787 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppRGB565
);
788 case PixelFormat24bppRGB
:
789 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_24bppRGB
);
790 case PixelFormat32bppRGB
:
791 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppRGB
);
792 case PixelFormat32bppARGB
:
793 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppARGB
);
794 case PixelFormat32bppPARGB
:
795 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppPARGB
);
796 case PixelFormat48bppRGB
:
797 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_48bppRGB
);
798 case PixelFormat64bppARGB
:
799 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_64bppARGB
);
804 case PixelFormat24bppRGB
:
807 case PixelFormat1bppIndexed
:
808 convert_rgb_to_indexed(getpixel_24bppRGB
, setpixel_1bppIndexed
);
809 case PixelFormat8bppIndexed
:
810 convert_rgb_to_indexed(getpixel_24bppRGB
, setpixel_8bppIndexed
);
811 case PixelFormat16bppGrayScale
:
812 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppGrayScale
);
813 case PixelFormat16bppRGB555
:
814 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppRGB555
);
815 case PixelFormat16bppRGB565
:
816 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppRGB565
);
817 case PixelFormat16bppARGB1555
:
818 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppARGB1555
);
819 case PixelFormat32bppRGB
:
820 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppRGB
);
821 case PixelFormat32bppARGB
:
822 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppARGB
);
823 case PixelFormat32bppPARGB
:
824 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppPARGB
);
825 case PixelFormat48bppRGB
:
826 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_48bppRGB
);
827 case PixelFormat64bppARGB
:
828 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_64bppARGB
);
833 case PixelFormat32bppRGB
:
836 case PixelFormat1bppIndexed
:
837 convert_rgb_to_indexed(getpixel_32bppRGB
, setpixel_1bppIndexed
);
838 case PixelFormat8bppIndexed
:
839 convert_rgb_to_indexed(getpixel_32bppRGB
, setpixel_8bppIndexed
);
840 case PixelFormat16bppGrayScale
:
841 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppGrayScale
);
842 case PixelFormat16bppRGB555
:
843 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppRGB555
);
844 case PixelFormat16bppRGB565
:
845 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppRGB565
);
846 case PixelFormat16bppARGB1555
:
847 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppARGB1555
);
848 case PixelFormat24bppRGB
:
849 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_24bppRGB
);
850 case PixelFormat32bppARGB
:
851 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_32bppARGB
);
852 case PixelFormat32bppPARGB
:
853 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_32bppPARGB
);
854 case PixelFormat48bppRGB
:
855 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_48bppRGB
);
856 case PixelFormat64bppARGB
:
857 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_64bppARGB
);
862 case PixelFormat32bppARGB
:
865 case PixelFormat1bppIndexed
:
866 convert_rgb_to_indexed(getpixel_32bppARGB
, setpixel_1bppIndexed
);
867 case PixelFormat8bppIndexed
:
868 convert_rgb_to_indexed(getpixel_32bppARGB
, setpixel_8bppIndexed
);
869 case PixelFormat16bppGrayScale
:
870 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppGrayScale
);
871 case PixelFormat16bppRGB555
:
872 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppRGB555
);
873 case PixelFormat16bppRGB565
:
874 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppRGB565
);
875 case PixelFormat16bppARGB1555
:
876 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppARGB1555
);
877 case PixelFormat24bppRGB
:
878 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_24bppRGB
);
879 case PixelFormat32bppPARGB
:
880 convert_32bppARGB_to_32bppPARGB(width
, height
, dst_bits
, dst_stride
, src_bits
, src_stride
);
882 case PixelFormat48bppRGB
:
883 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_48bppRGB
);
884 case PixelFormat64bppARGB
:
885 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_64bppARGB
);
890 case PixelFormat32bppPARGB
:
893 case PixelFormat1bppIndexed
:
894 convert_rgb_to_indexed(getpixel_32bppPARGB
, setpixel_1bppIndexed
);
895 case PixelFormat8bppIndexed
:
896 convert_rgb_to_indexed(getpixel_32bppPARGB
, setpixel_8bppIndexed
);
897 case PixelFormat16bppGrayScale
:
898 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppGrayScale
);
899 case PixelFormat16bppRGB555
:
900 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppRGB555
);
901 case PixelFormat16bppRGB565
:
902 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppRGB565
);
903 case PixelFormat16bppARGB1555
:
904 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppARGB1555
);
905 case PixelFormat24bppRGB
:
906 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_24bppRGB
);
907 case PixelFormat32bppRGB
:
908 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_32bppRGB
);
909 case PixelFormat32bppARGB
:
910 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_32bppARGB
);
911 case PixelFormat48bppRGB
:
912 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_48bppRGB
);
913 case PixelFormat64bppARGB
:
914 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_64bppARGB
);
919 case PixelFormat48bppRGB
:
922 case PixelFormat1bppIndexed
:
923 convert_rgb_to_indexed(getpixel_48bppRGB
, setpixel_1bppIndexed
);
924 case PixelFormat8bppIndexed
:
925 convert_rgb_to_indexed(getpixel_48bppRGB
, setpixel_8bppIndexed
);
926 case PixelFormat16bppGrayScale
:
927 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppGrayScale
);
928 case PixelFormat16bppRGB555
:
929 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppRGB555
);
930 case PixelFormat16bppRGB565
:
931 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppRGB565
);
932 case PixelFormat16bppARGB1555
:
933 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppARGB1555
);
934 case PixelFormat24bppRGB
:
935 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_24bppRGB
);
936 case PixelFormat32bppRGB
:
937 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppRGB
);
938 case PixelFormat32bppARGB
:
939 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppARGB
);
940 case PixelFormat32bppPARGB
:
941 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppPARGB
);
942 case PixelFormat64bppARGB
:
943 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_64bppARGB
);
948 case PixelFormat64bppARGB
:
951 case PixelFormat1bppIndexed
:
952 convert_rgb_to_indexed(getpixel_64bppARGB
, setpixel_1bppIndexed
);
953 case PixelFormat8bppIndexed
:
954 convert_rgb_to_indexed(getpixel_64bppARGB
, setpixel_8bppIndexed
);
955 case PixelFormat16bppGrayScale
:
956 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppGrayScale
);
957 case PixelFormat16bppRGB555
:
958 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppRGB555
);
959 case PixelFormat16bppRGB565
:
960 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppRGB565
);
961 case PixelFormat16bppARGB1555
:
962 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppARGB1555
);
963 case PixelFormat24bppRGB
:
964 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_24bppRGB
);
965 case PixelFormat32bppRGB
:
966 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppRGB
);
967 case PixelFormat32bppARGB
:
968 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppARGB
);
969 case PixelFormat32bppPARGB
:
970 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppPARGB
);
971 case PixelFormat48bppRGB
:
972 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_48bppRGB
);
977 case PixelFormat64bppPARGB
:
980 case PixelFormat1bppIndexed
:
981 convert_rgb_to_indexed(getpixel_64bppPARGB
, setpixel_1bppIndexed
);
982 case PixelFormat8bppIndexed
:
983 convert_rgb_to_indexed(getpixel_64bppPARGB
, setpixel_8bppIndexed
);
984 case PixelFormat16bppGrayScale
:
985 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppGrayScale
);
986 case PixelFormat16bppRGB555
:
987 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppRGB555
);
988 case PixelFormat16bppRGB565
:
989 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppRGB565
);
990 case PixelFormat16bppARGB1555
:
991 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppARGB1555
);
992 case PixelFormat24bppRGB
:
993 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_24bppRGB
);
994 case PixelFormat32bppRGB
:
995 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppRGB
);
996 case PixelFormat32bppARGB
:
997 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppARGB
);
998 case PixelFormat32bppPARGB
:
999 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppPARGB
);
1000 case PixelFormat48bppRGB
:
1001 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_48bppRGB
);
1002 case PixelFormat64bppARGB
:
1003 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_64bppARGB
);
1012 #undef convert_indexed_to_rgb
1013 #undef convert_rgb_to_rgb
1015 return NotImplemented
;
1018 /* This function returns a pointer to an array of pixels that represents the
1019 * bitmap. The *entire* bitmap is locked according to the lock mode specified by
1020 * flags. It is correct behavior that a user who calls this function with write
1021 * privileges can write to the whole bitmap (not just the area in rect).
1023 * FIXME: only used portion of format is bits per pixel. */
1024 GpStatus WINGDIPAPI
GdipBitmapLockBits(GpBitmap
* bitmap
, GDIPCONST GpRect
* rect
,
1025 UINT flags
, PixelFormat format
, BitmapData
* lockeddata
)
1027 INT bitspp
= PIXELFORMATBPP(format
);
1028 GpRect act_rect
; /* actual rect to be used */
1032 TRACE("%p %p %d 0x%x %p\n", bitmap
, rect
, flags
, format
, lockeddata
);
1034 if(!lockeddata
|| !bitmap
)
1035 return InvalidParameter
;
1036 if(!image_lock(&bitmap
->image
, &unlock
))
1040 if(rect
->X
< 0 || rect
->Y
< 0 || (rect
->X
+ rect
->Width
> bitmap
->width
) ||
1041 (rect
->Y
+ rect
->Height
> bitmap
->height
) || !flags
)
1043 image_unlock(&bitmap
->image
, unlock
);
1044 return InvalidParameter
;
1050 act_rect
.X
= act_rect
.Y
= 0;
1051 act_rect
.Width
= bitmap
->width
;
1052 act_rect
.Height
= bitmap
->height
;
1055 if(bitmap
->lockmode
)
1057 WARN("bitmap is already locked and cannot be locked again\n");
1058 image_unlock(&bitmap
->image
, unlock
);
1062 if (bitmap
->bits
&& bitmap
->format
== format
&& !(flags
& ImageLockModeUserInputBuf
))
1064 /* no conversion is necessary; just use the bits directly */
1065 lockeddata
->Width
= act_rect
.Width
;
1066 lockeddata
->Height
= act_rect
.Height
;
1067 lockeddata
->PixelFormat
= format
;
1068 lockeddata
->Reserved
= flags
;
1069 lockeddata
->Stride
= bitmap
->stride
;
1070 lockeddata
->Scan0
= bitmap
->bits
+ (bitspp
/ 8) * act_rect
.X
+
1071 bitmap
->stride
* act_rect
.Y
;
1073 bitmap
->lockmode
= flags
| ImageLockModeRead
;
1075 image_unlock(&bitmap
->image
, unlock
);
1079 /* Make sure we can convert to the requested format. */
1080 if (flags
& ImageLockModeRead
)
1082 stat
= convert_pixels(0, 0, 0, NULL
, format
, 0, NULL
, bitmap
->format
, NULL
);
1083 if (stat
== NotImplemented
)
1085 FIXME("cannot read bitmap from %x to %x\n", bitmap
->format
, format
);
1086 image_unlock(&bitmap
->image
, unlock
);
1087 return NotImplemented
;
1091 /* If we're opening for writing, make sure we'll be able to write back in
1092 * the original format. */
1093 if (flags
& ImageLockModeWrite
)
1095 stat
= convert_pixels(0, 0, 0, NULL
, bitmap
->format
, 0, NULL
, format
, NULL
);
1096 if (stat
== NotImplemented
)
1098 FIXME("cannot write bitmap from %x to %x\n", format
, bitmap
->format
);
1099 image_unlock(&bitmap
->image
, unlock
);
1100 return NotImplemented
;
1104 lockeddata
->Width
= act_rect
.Width
;
1105 lockeddata
->Height
= act_rect
.Height
;
1106 lockeddata
->PixelFormat
= format
;
1107 lockeddata
->Reserved
= flags
;
1109 if(!(flags
& ImageLockModeUserInputBuf
))
1111 lockeddata
->Stride
= (((act_rect
.Width
* bitspp
+ 7) / 8) + 3) & ~3;
1113 bitmap
->bitmapbits
= heap_alloc_zero(lockeddata
->Stride
* act_rect
.Height
);
1115 if (!bitmap
->bitmapbits
)
1117 image_unlock(&bitmap
->image
, unlock
);
1121 lockeddata
->Scan0
= bitmap
->bitmapbits
;
1124 if (flags
& ImageLockModeRead
)
1126 static BOOL fixme
= FALSE
;
1128 if (!fixme
&& (PIXELFORMATBPP(bitmap
->format
) * act_rect
.X
) % 8 != 0)
1130 FIXME("Cannot copy rows that don't start at a whole byte.\n");
1134 stat
= convert_pixels(act_rect
.Width
, act_rect
.Height
,
1135 lockeddata
->Stride
, lockeddata
->Scan0
, format
,
1137 bitmap
->bits
+ bitmap
->stride
* act_rect
.Y
+ PIXELFORMATBPP(bitmap
->format
) * act_rect
.X
/ 8,
1138 bitmap
->format
, bitmap
->image
.palette
);
1142 heap_free(bitmap
->bitmapbits
);
1143 bitmap
->bitmapbits
= NULL
;
1144 image_unlock(&bitmap
->image
, unlock
);
1149 bitmap
->lockmode
= flags
| ImageLockModeRead
;
1150 bitmap
->lockx
= act_rect
.X
;
1151 bitmap
->locky
= act_rect
.Y
;
1153 image_unlock(&bitmap
->image
, unlock
);
1157 GpStatus WINGDIPAPI
GdipBitmapSetResolution(GpBitmap
* bitmap
, REAL xdpi
, REAL ydpi
)
1159 TRACE("(%p, %.2f, %.2f)\n", bitmap
, xdpi
, ydpi
);
1161 if (!bitmap
|| xdpi
== 0.0 || ydpi
== 0.0)
1162 return InvalidParameter
;
1164 bitmap
->image
.xres
= xdpi
;
1165 bitmap
->image
.yres
= ydpi
;
1170 GpStatus WINGDIPAPI
GdipBitmapUnlockBits(GpBitmap
* bitmap
,
1171 BitmapData
* lockeddata
)
1174 static BOOL fixme
= FALSE
;
1177 TRACE("(%p,%p)\n", bitmap
, lockeddata
);
1179 if(!bitmap
|| !lockeddata
)
1180 return InvalidParameter
;
1181 if(!image_lock(&bitmap
->image
, &unlock
))
1184 if(!bitmap
->lockmode
)
1186 image_unlock(&bitmap
->image
, unlock
);
1190 if(!(lockeddata
->Reserved
& ImageLockModeWrite
)){
1191 bitmap
->lockmode
= 0;
1192 heap_free(bitmap
->bitmapbits
);
1193 bitmap
->bitmapbits
= NULL
;
1194 image_unlock(&bitmap
->image
, unlock
);
1198 if (!bitmap
->bitmapbits
&& !(lockeddata
->Reserved
& ImageLockModeUserInputBuf
))
1200 /* we passed a direct reference; no need to do anything */
1201 bitmap
->lockmode
= 0;
1202 image_unlock(&bitmap
->image
, unlock
);
1206 if (!fixme
&& (PIXELFORMATBPP(bitmap
->format
) * bitmap
->lockx
) % 8 != 0)
1208 FIXME("Cannot copy rows that don't start at a whole byte.\n");
1212 stat
= convert_pixels(lockeddata
->Width
, lockeddata
->Height
,
1214 bitmap
->bits
+ bitmap
->stride
* bitmap
->locky
+ PIXELFORMATBPP(bitmap
->format
) * bitmap
->lockx
/ 8,
1216 lockeddata
->Stride
, lockeddata
->Scan0
, lockeddata
->PixelFormat
, NULL
);
1220 ERR("failed to convert pixels; this should never happen\n");
1223 heap_free(bitmap
->bitmapbits
);
1224 bitmap
->bitmapbits
= NULL
;
1225 bitmap
->lockmode
= 0;
1227 image_unlock(&bitmap
->image
, unlock
);
1231 GpStatus WINGDIPAPI
GdipCloneBitmapArea(REAL x
, REAL y
, REAL width
, REAL height
,
1232 PixelFormat format
, GpBitmap
* srcBitmap
, GpBitmap
** dstBitmap
)
1237 TRACE("(%f,%f,%f,%f,0x%x,%p,%p)\n", x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1239 if (!srcBitmap
|| !dstBitmap
|| srcBitmap
->image
.type
!= ImageTypeBitmap
||
1241 x
+ width
> srcBitmap
->width
|| y
+ height
> srcBitmap
->height
)
1243 TRACE("<-- InvalidParameter\n");
1244 return InvalidParameter
;
1247 if (format
== PixelFormatDontCare
)
1248 format
= srcBitmap
->format
;
1250 area
.X
= gdip_round(x
);
1251 area
.Y
= gdip_round(y
);
1252 area
.Width
= gdip_round(width
);
1253 area
.Height
= gdip_round(height
);
1255 stat
= GdipCreateBitmapFromScan0(area
.Width
, area
.Height
, 0, format
, NULL
, dstBitmap
);
1258 stat
= convert_pixels(area
.Width
, area
.Height
, (*dstBitmap
)->stride
, (*dstBitmap
)->bits
, (*dstBitmap
)->format
,
1260 srcBitmap
->bits
+ srcBitmap
->stride
* area
.Y
+ PIXELFORMATBPP(srcBitmap
->format
) * area
.X
/ 8,
1261 srcBitmap
->format
, srcBitmap
->image
.palette
);
1263 if (stat
== Ok
&& srcBitmap
->image
.palette
)
1265 ColorPalette
*src_palette
, *dst_palette
;
1267 src_palette
= srcBitmap
->image
.palette
;
1269 dst_palette
= heap_alloc_zero(sizeof(UINT
) * 2 + sizeof(ARGB
) * src_palette
->Count
);
1273 dst_palette
->Flags
= src_palette
->Flags
;
1274 dst_palette
->Count
= src_palette
->Count
;
1275 memcpy(dst_palette
->Entries
, src_palette
->Entries
, sizeof(ARGB
) * src_palette
->Count
);
1277 heap_free((*dstBitmap
)->image
.palette
);
1278 (*dstBitmap
)->image
.palette
= dst_palette
;
1285 GdipDisposeImage(&(*dstBitmap
)->image
);
1294 GpStatus WINGDIPAPI
GdipCloneBitmapAreaI(INT x
, INT y
, INT width
, INT height
,
1295 PixelFormat format
, GpBitmap
* srcBitmap
, GpBitmap
** dstBitmap
)
1297 TRACE("(%i,%i,%i,%i,0x%x,%p,%p)\n", x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1299 return GdipCloneBitmapArea(x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1302 GpStatus WINGDIPAPI
GdipCloneImage(GpImage
*image
, GpImage
**cloneImage
)
1304 TRACE("%p, %p\n", image
, cloneImage
);
1306 if (!image
|| !cloneImage
)
1307 return InvalidParameter
;
1309 if (image
->type
== ImageTypeBitmap
)
1311 GpBitmap
*bitmap
= (GpBitmap
*)image
;
1313 return GdipCloneBitmapAreaI(0, 0, bitmap
->width
, bitmap
->height
,
1314 bitmap
->format
, bitmap
, (GpBitmap
**)cloneImage
);
1316 else if (image
->type
== ImageTypeMetafile
&& ((GpMetafile
*)image
)->hemf
)
1318 GpMetafile
*result
, *metafile
;
1320 metafile
= (GpMetafile
*)image
;
1322 result
= heap_alloc_zero(sizeof(*result
));
1326 result
->image
.type
= ImageTypeMetafile
;
1327 result
->image
.format
= image
->format
;
1328 result
->image
.flags
= image
->flags
;
1329 result
->image
.frame_count
= 1;
1330 result
->image
.xres
= image
->xres
;
1331 result
->image
.yres
= image
->yres
;
1332 result
->bounds
= metafile
->bounds
;
1333 result
->unit
= metafile
->unit
;
1334 result
->metafile_type
= metafile
->metafile_type
;
1335 result
->hemf
= CopyEnhMetaFileW(metafile
->hemf
, NULL
);
1336 list_init(&result
->containers
);
1344 *cloneImage
= &result
->image
;
1349 WARN("GpImage with no image data (metafile in wrong state?)\n");
1350 return InvalidParameter
;
1354 GpStatus WINGDIPAPI
GdipCreateBitmapFromFile(GDIPCONST WCHAR
* filename
,
1360 TRACE("(%s) %p\n", debugstr_w(filename
), bitmap
);
1362 if(!filename
|| !bitmap
)
1363 return InvalidParameter
;
1367 stat
= GdipCreateStreamOnFile(filename
, GENERIC_READ
, &stream
);
1372 stat
= GdipCreateBitmapFromStream(stream
, bitmap
);
1374 IStream_Release(stream
);
1379 GpStatus WINGDIPAPI
GdipCreateBitmapFromGdiDib(GDIPCONST BITMAPINFO
* info
,
1380 VOID
*bits
, GpBitmap
**bitmap
)
1382 DWORD height
, stride
;
1385 FIXME("(%p, %p, %p) - partially implemented\n", info
, bits
, bitmap
);
1387 if (!info
|| !bits
|| !bitmap
)
1388 return InvalidParameter
;
1390 height
= abs(info
->bmiHeader
.biHeight
);
1391 stride
= ((info
->bmiHeader
.biWidth
* info
->bmiHeader
.biBitCount
+ 31) >> 3) & ~3;
1393 if(info
->bmiHeader
.biHeight
> 0) /* bottom-up */
1395 bits
= (BYTE
*)bits
+ (height
- 1) * stride
;
1399 switch(info
->bmiHeader
.biBitCount
) {
1401 format
= PixelFormat1bppIndexed
;
1404 format
= PixelFormat4bppIndexed
;
1407 format
= PixelFormat8bppIndexed
;
1410 format
= PixelFormat16bppRGB555
;
1413 format
= PixelFormat24bppRGB
;
1416 format
= PixelFormat32bppRGB
;
1419 FIXME("don't know how to handle %d bpp\n", info
->bmiHeader
.biBitCount
);
1421 return InvalidParameter
;
1424 return GdipCreateBitmapFromScan0(info
->bmiHeader
.biWidth
, height
, stride
, format
,
1430 GpStatus WINGDIPAPI
GdipCreateBitmapFromFileICM(GDIPCONST WCHAR
* filename
,
1433 TRACE("(%s) %p\n", debugstr_w(filename
), bitmap
);
1435 return GdipCreateBitmapFromFile(filename
, bitmap
);
1438 GpStatus WINGDIPAPI
GdipCreateBitmapFromResource(HINSTANCE hInstance
,
1439 GDIPCONST WCHAR
* lpBitmapName
, GpBitmap
** bitmap
)
1442 GpStatus stat
= InvalidParameter
;
1444 TRACE("%p (%s) %p\n", hInstance
, debugstr_w(lpBitmapName
), bitmap
);
1446 if(!lpBitmapName
|| !bitmap
)
1447 return InvalidParameter
;
1450 hbm
= LoadImageW(hInstance
, lpBitmapName
, IMAGE_BITMAP
, 0, 0,
1451 LR_CREATEDIBSECTION
);
1454 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, bitmap
);
1461 static inline DWORD
blend_argb_no_bkgnd_alpha(DWORD src
, DWORD bkgnd
)
1464 BYTE g
= (BYTE
)(src
>> 8);
1465 BYTE r
= (BYTE
)(src
>> 16);
1466 DWORD alpha
= (BYTE
)(src
>> 24);
1467 return ((b
+ ((BYTE
)bkgnd
* (255 - alpha
) + 127) / 255) |
1468 (g
+ ((BYTE
)(bkgnd
>> 8) * (255 - alpha
) + 127) / 255) << 8 |
1469 (r
+ ((BYTE
)(bkgnd
>> 16) * (255 - alpha
) + 127) / 255) << 16 |
1473 GpStatus WINGDIPAPI
GdipCreateHBITMAPFromBitmap(GpBitmap
* bitmap
,
1474 HBITMAP
* hbmReturn
, ARGB background
)
1479 BITMAPINFOHEADER bih
;
1483 TRACE("(%p,%p,%x)\n", bitmap
, hbmReturn
, background
);
1485 if (!bitmap
|| !hbmReturn
) return InvalidParameter
;
1486 if (!image_lock(&bitmap
->image
, &unlock
)) return ObjectBusy
;
1488 GdipGetImageWidth(&bitmap
->image
, &width
);
1489 GdipGetImageHeight(&bitmap
->image
, &height
);
1491 bih
.biSize
= sizeof(bih
);
1492 bih
.biWidth
= width
;
1493 bih
.biHeight
= height
;
1495 bih
.biBitCount
= 32;
1496 bih
.biCompression
= BI_RGB
;
1497 bih
.biSizeImage
= 0;
1498 bih
.biXPelsPerMeter
= 0;
1499 bih
.biYPelsPerMeter
= 0;
1501 bih
.biClrImportant
= 0;
1503 result
= CreateDIBSection(0, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
1506 image_unlock(&bitmap
->image
, unlock
);
1507 return GenericError
;
1510 stat
= convert_pixels(width
, height
, -width
*4,
1511 bits
+ (width
* 4 * (height
- 1)), PixelFormat32bppPARGB
,
1512 bitmap
->stride
, bitmap
->bits
, bitmap
->format
, bitmap
->image
.palette
);
1515 DeleteObject(result
);
1516 image_unlock(&bitmap
->image
, unlock
);
1520 if (background
& 0xffffff)
1524 for (ptr
= (DWORD
*)bits
, i
= 0; i
< width
* height
; ptr
++, i
++)
1526 if ((*ptr
& 0xff000000) == 0xff000000) continue;
1527 *ptr
= blend_argb_no_bkgnd_alpha(*ptr
, background
);
1531 *hbmReturn
= result
;
1532 image_unlock(&bitmap
->image
, unlock
);
1536 GpStatus WINGDIPAPI
GdipCreateBitmapFromGraphics(INT width
, INT height
,
1537 GpGraphics
* target
, GpBitmap
** bitmap
)
1541 TRACE("(%d, %d, %p, %p)\n", width
, height
, target
, bitmap
);
1543 if(!target
|| !bitmap
)
1544 return InvalidParameter
;
1546 ret
= GdipCreateBitmapFromScan0(width
, height
, 0, PixelFormat32bppPARGB
,
1551 GdipGetDpiX(target
, &(*bitmap
)->image
.xres
);
1552 GdipGetDpiY(target
, &(*bitmap
)->image
.yres
);
1558 GpStatus WINGDIPAPI
GdipCreateBitmapFromHICON(HICON hicon
, GpBitmap
** bitmap
)
1564 UINT width
, height
, stride
;
1566 BitmapData lockeddata
;
1570 BITMAPINFOHEADER bih
;
1575 TRACE("%p, %p\n", hicon
, bitmap
);
1577 if(!bitmap
|| !GetIconInfo(hicon
, &iinfo
))
1578 return InvalidParameter
;
1580 /* get the size of the icon */
1581 ret
= GetObjectA(iinfo
.hbmColor
? iinfo
.hbmColor
: iinfo
.hbmMask
, sizeof(bm
), &bm
);
1583 DeleteObject(iinfo
.hbmColor
);
1584 DeleteObject(iinfo
.hbmMask
);
1585 return GenericError
;
1589 height
= iinfo
.hbmColor
? abs(bm
.bmHeight
) : abs(bm
.bmHeight
) / 2;
1592 stat
= GdipCreateBitmapFromScan0(width
, height
, stride
, PixelFormat32bppARGB
, NULL
, bitmap
);
1594 DeleteObject(iinfo
.hbmColor
);
1595 DeleteObject(iinfo
.hbmMask
);
1602 rect
.Height
= height
;
1604 stat
= GdipBitmapLockBits(*bitmap
, &rect
, ImageLockModeWrite
, PixelFormat32bppARGB
, &lockeddata
);
1606 DeleteObject(iinfo
.hbmColor
);
1607 DeleteObject(iinfo
.hbmMask
);
1608 GdipDisposeImage(&(*bitmap
)->image
);
1612 bih
.biSize
= sizeof(bih
);
1613 bih
.biWidth
= width
;
1614 bih
.biHeight
= iinfo
.hbmColor
? -height
: -height
* 2;
1616 bih
.biBitCount
= 32;
1617 bih
.biCompression
= BI_RGB
;
1618 bih
.biSizeImage
= 0;
1619 bih
.biXPelsPerMeter
= 0;
1620 bih
.biYPelsPerMeter
= 0;
1622 bih
.biClrImportant
= 0;
1624 screendc
= CreateCompatibleDC(0);
1627 GetDIBits(screendc
, iinfo
.hbmColor
, 0, height
, lockeddata
.Scan0
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1629 if (bm
.bmBitsPixel
== 32)
1633 /* If any pixel has a non-zero alpha, ignore hbmMask */
1634 src
= (DWORD
*)lockeddata
.Scan0
;
1635 for (x
=0; x
<width
&& !has_alpha
; x
++)
1636 for (y
=0; y
<height
&& !has_alpha
; y
++)
1637 if ((*src
++ & 0xff000000) != 0)
1640 else has_alpha
= FALSE
;
1644 GetDIBits(screendc
, iinfo
.hbmMask
, 0, height
, lockeddata
.Scan0
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1652 BYTE
*bits
= heap_alloc(height
* stride
);
1654 /* read alpha data from the mask */
1656 GetDIBits(screendc
, iinfo
.hbmMask
, 0, height
, bits
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1658 GetDIBits(screendc
, iinfo
.hbmMask
, height
, height
, bits
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1661 dst_row
= lockeddata
.Scan0
;
1662 for (y
=0; y
<height
; y
++)
1664 dst
= (DWORD
*)dst_row
;
1665 for (x
=0; x
<height
; x
++)
1667 DWORD src_value
= *src
++;
1671 *dst
++ |= 0xff000000;
1673 dst_row
+= lockeddata
.Stride
;
1680 /* set constant alpha of 255 */
1681 dst_row
= lockeddata
.Scan0
;
1682 for (y
=0; y
<height
; y
++)
1684 dst
= (DWORD
*)dst_row
;
1685 for (x
=0; x
<height
; x
++)
1686 *dst
++ |= 0xff000000;
1687 dst_row
+= lockeddata
.Stride
;
1694 DeleteObject(iinfo
.hbmColor
);
1695 DeleteObject(iinfo
.hbmMask
);
1697 GdipBitmapUnlockBits(*bitmap
, &lockeddata
);
1702 static void generate_halftone_palette(ARGB
*entries
, UINT count
)
1704 static const BYTE halftone_values
[6]={0x00,0x33,0x66,0x99,0xcc,0xff};
1707 for (i
=0; i
<8 && i
<count
; i
++)
1709 entries
[i
] = 0xff000000;
1710 if (i
&1) entries
[i
] |= 0x800000;
1711 if (i
&2) entries
[i
] |= 0x8000;
1712 if (i
&4) entries
[i
] |= 0x80;
1716 entries
[i
] = 0xffc0c0c0;
1718 for (i
=9; i
<16 && i
<count
; i
++)
1720 entries
[i
] = 0xff000000;
1721 if (i
&1) entries
[i
] |= 0xff0000;
1722 if (i
&2) entries
[i
] |= 0xff00;
1723 if (i
&4) entries
[i
] |= 0xff;
1726 for (i
=16; i
<40 && i
<count
; i
++)
1731 for (i
=40; i
<256 && i
<count
; i
++)
1733 entries
[i
] = 0xff000000;
1734 entries
[i
] |= halftone_values
[(i
-40)%6];
1735 entries
[i
] |= halftone_values
[((i
-40)/6)%6] << 8;
1736 entries
[i
] |= halftone_values
[((i
-40)/36)%6] << 16;
1740 static GpStatus
get_screen_resolution(REAL
*xres
, REAL
*yres
)
1742 HDC screendc
= CreateCompatibleDC(0);
1744 if (!screendc
) return GenericError
;
1746 *xres
= (REAL
)GetDeviceCaps(screendc
, LOGPIXELSX
);
1747 *yres
= (REAL
)GetDeviceCaps(screendc
, LOGPIXELSY
);
1754 GpStatus WINGDIPAPI
GdipCreateBitmapFromScan0(INT width
, INT height
, INT stride
,
1755 PixelFormat format
, BYTE
* scan0
, GpBitmap
** bitmap
)
1757 HBITMAP hbitmap
=NULL
;
1758 INT row_size
, dib_stride
;
1759 BYTE
*bits
=NULL
, *own_bits
=NULL
;
1763 TRACE("%d %d %d 0x%x %p %p\n", width
, height
, stride
, format
, scan0
, bitmap
);
1765 if (!bitmap
) return InvalidParameter
;
1767 if(width
<= 0 || height
<= 0 || (scan0
&& (stride
% 4))){
1769 return InvalidParameter
;
1772 if(scan0
&& !stride
)
1773 return InvalidParameter
;
1775 stat
= get_screen_resolution(&xres
, &yres
);
1776 if (stat
!= Ok
) return stat
;
1778 row_size
= (width
* PIXELFORMATBPP(format
)+7) / 8;
1779 dib_stride
= (row_size
+ 3) & ~3;
1782 stride
= dib_stride
;
1784 if (format
& PixelFormatGDI
&& !(format
& (PixelFormatAlpha
|PixelFormatIndexed
)) && !scan0
)
1786 char bmibuf
[FIELD_OFFSET(BITMAPINFO
, bmiColors
[256])];
1787 BITMAPINFO
*pbmi
= (BITMAPINFO
*)bmibuf
;
1789 pbmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1790 pbmi
->bmiHeader
.biWidth
= width
;
1791 pbmi
->bmiHeader
.biHeight
= -height
;
1792 pbmi
->bmiHeader
.biPlanes
= 1;
1793 /* FIXME: use the rest of the data from format */
1794 pbmi
->bmiHeader
.biBitCount
= PIXELFORMATBPP(format
);
1795 pbmi
->bmiHeader
.biCompression
= BI_RGB
;
1796 pbmi
->bmiHeader
.biSizeImage
= 0;
1797 pbmi
->bmiHeader
.biXPelsPerMeter
= 0;
1798 pbmi
->bmiHeader
.biYPelsPerMeter
= 0;
1799 pbmi
->bmiHeader
.biClrUsed
= 0;
1800 pbmi
->bmiHeader
.biClrImportant
= 0;
1802 hbitmap
= CreateDIBSection(0, pbmi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
1804 if (!hbitmap
) return GenericError
;
1806 stride
= dib_stride
;
1810 /* Not a GDI format; don't try to make an HBITMAP. */
1815 INT size
= abs(stride
) * height
;
1817 own_bits
= bits
= heap_alloc_zero(size
);
1818 if (!own_bits
) return OutOfMemory
;
1821 bits
+= stride
* (1 - height
);
1825 *bitmap
= heap_alloc_zero(sizeof(GpBitmap
));
1828 DeleteObject(hbitmap
);
1829 heap_free(own_bits
);
1833 (*bitmap
)->image
.type
= ImageTypeBitmap
;
1834 memcpy(&(*bitmap
)->image
.format
, &ImageFormatMemoryBMP
, sizeof(GUID
));
1835 (*bitmap
)->image
.flags
= ImageFlagsNone
;
1836 (*bitmap
)->image
.frame_count
= 1;
1837 (*bitmap
)->image
.current_frame
= 0;
1838 (*bitmap
)->image
.palette
= NULL
;
1839 (*bitmap
)->image
.xres
= xres
;
1840 (*bitmap
)->image
.yres
= yres
;
1841 (*bitmap
)->width
= width
;
1842 (*bitmap
)->height
= height
;
1843 (*bitmap
)->format
= format
;
1844 (*bitmap
)->image
.decoder
= NULL
;
1845 (*bitmap
)->hbitmap
= hbitmap
;
1846 (*bitmap
)->hdc
= NULL
;
1847 (*bitmap
)->bits
= bits
;
1848 (*bitmap
)->stride
= stride
;
1849 (*bitmap
)->own_bits
= own_bits
;
1850 (*bitmap
)->metadata_reader
= NULL
;
1851 (*bitmap
)->prop_count
= 0;
1852 (*bitmap
)->prop_item
= NULL
;
1854 /* set format-related flags */
1855 if (format
& (PixelFormatAlpha
|PixelFormatPAlpha
|PixelFormatIndexed
))
1856 (*bitmap
)->image
.flags
|= ImageFlagsHasAlpha
;
1858 if (format
== PixelFormat1bppIndexed
||
1859 format
== PixelFormat4bppIndexed
||
1860 format
== PixelFormat8bppIndexed
)
1862 (*bitmap
)->image
.palette
= heap_alloc_zero(sizeof(UINT
) * 2 + sizeof(ARGB
) * (1 << PIXELFORMATBPP(format
)));
1864 if (!(*bitmap
)->image
.palette
)
1866 GdipDisposeImage(&(*bitmap
)->image
);
1871 (*bitmap
)->image
.palette
->Count
= 1 << PIXELFORMATBPP(format
);
1873 if (format
== PixelFormat1bppIndexed
)
1875 (*bitmap
)->image
.palette
->Flags
= PaletteFlagsGrayScale
;
1876 (*bitmap
)->image
.palette
->Entries
[0] = 0xff000000;
1877 (*bitmap
)->image
.palette
->Entries
[1] = 0xffffffff;
1881 if (format
== PixelFormat8bppIndexed
)
1882 (*bitmap
)->image
.palette
->Flags
= PaletteFlagsHalftone
;
1884 generate_halftone_palette((*bitmap
)->image
.palette
->Entries
,
1885 (*bitmap
)->image
.palette
->Count
);
1889 TRACE("<-- %p\n", *bitmap
);
1894 GpStatus WINGDIPAPI
GdipCreateBitmapFromStream(IStream
* stream
,
1899 TRACE("%p %p\n", stream
, bitmap
);
1901 stat
= GdipLoadImageFromStream(stream
, (GpImage
**) bitmap
);
1906 if((*bitmap
)->image
.type
!= ImageTypeBitmap
){
1907 GdipDisposeImage(&(*bitmap
)->image
);
1909 return GenericError
; /* FIXME: what error to return? */
1916 GpStatus WINGDIPAPI
GdipCreateBitmapFromStreamICM(IStream
* stream
,
1919 TRACE("%p %p\n", stream
, bitmap
);
1921 return GdipCreateBitmapFromStream(stream
, bitmap
);
1924 GpStatus WINGDIPAPI
GdipCreateCachedBitmap(GpBitmap
*bitmap
, GpGraphics
*graphics
,
1925 GpCachedBitmap
**cachedbmp
)
1929 TRACE("%p %p %p\n", bitmap
, graphics
, cachedbmp
);
1931 if(!bitmap
|| !graphics
|| !cachedbmp
)
1932 return InvalidParameter
;
1934 *cachedbmp
= heap_alloc_zero(sizeof(GpCachedBitmap
));
1938 stat
= GdipCloneImage(&(bitmap
->image
), &(*cachedbmp
)->image
);
1940 heap_free(*cachedbmp
);
1947 GpStatus WINGDIPAPI
GdipCreateHICONFromBitmap(GpBitmap
*bitmap
, HICON
*hicon
)
1950 BitmapData lockeddata
;
1951 ULONG andstride
, xorstride
, bitssize
;
1952 LPBYTE andbits
, xorbits
, androw
, xorrow
, srcrow
;
1955 TRACE("(%p, %p)\n", bitmap
, hicon
);
1957 if (!bitmap
|| !hicon
)
1958 return InvalidParameter
;
1960 stat
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
,
1961 PixelFormat32bppPARGB
, &lockeddata
);
1964 andstride
= ((lockeddata
.Width
+31)/32)*4;
1965 xorstride
= lockeddata
.Width
*4;
1966 bitssize
= (andstride
+ xorstride
) * lockeddata
.Height
;
1968 andbits
= heap_alloc_zero(bitssize
);
1972 xorbits
= andbits
+ andstride
* lockeddata
.Height
;
1974 for (y
=0; y
<lockeddata
.Height
; y
++)
1976 srcrow
= ((LPBYTE
)lockeddata
.Scan0
) + lockeddata
.Stride
* y
;
1978 androw
= andbits
+ andstride
* y
;
1979 for (x
=0; x
<lockeddata
.Width
; x
++)
1980 if (srcrow
[3+4*x
] >= 128)
1981 androw
[x
/8] |= 1 << (7-x
%8);
1983 xorrow
= xorbits
+ xorstride
* y
;
1984 memcpy(xorrow
, srcrow
, xorstride
);
1987 *hicon
= CreateIcon(NULL
, lockeddata
.Width
, lockeddata
.Height
, 1, 32,
1995 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
2001 GpStatus WINGDIPAPI
GdipDeleteCachedBitmap(GpCachedBitmap
*cachedbmp
)
2003 TRACE("%p\n", cachedbmp
);
2006 return InvalidParameter
;
2008 GdipDisposeImage(cachedbmp
->image
);
2009 heap_free(cachedbmp
);
2014 GpStatus WINGDIPAPI
GdipDrawCachedBitmap(GpGraphics
*graphics
,
2015 GpCachedBitmap
*cachedbmp
, INT x
, INT y
)
2017 TRACE("%p %p %d %d\n", graphics
, cachedbmp
, x
, y
);
2019 if(!graphics
|| !cachedbmp
)
2020 return InvalidParameter
;
2022 return GdipDrawImage(graphics
, cachedbmp
->image
, (REAL
)x
, (REAL
)y
);
2025 /* Internal utility function: Replace the image data of dst with that of src,
2027 static void move_bitmap(GpBitmap
*dst
, GpBitmap
*src
, BOOL clobber_palette
)
2029 assert(src
->image
.type
== ImageTypeBitmap
);
2030 assert(dst
->image
.type
== ImageTypeBitmap
);
2032 heap_free(dst
->bitmapbits
);
2033 heap_free(dst
->own_bits
);
2035 DeleteObject(dst
->hbitmap
);
2037 if (clobber_palette
)
2039 heap_free(dst
->image
.palette
);
2040 dst
->image
.palette
= src
->image
.palette
;
2043 heap_free(src
->image
.palette
);
2045 dst
->image
.xres
= src
->image
.xres
;
2046 dst
->image
.yres
= src
->image
.yres
;
2047 dst
->width
= src
->width
;
2048 dst
->height
= src
->height
;
2049 dst
->format
= src
->format
;
2050 dst
->hbitmap
= src
->hbitmap
;
2051 dst
->hdc
= src
->hdc
;
2052 dst
->bits
= src
->bits
;
2053 dst
->stride
= src
->stride
;
2054 dst
->own_bits
= src
->own_bits
;
2055 if (dst
->metadata_reader
)
2056 IWICMetadataReader_Release(dst
->metadata_reader
);
2057 dst
->metadata_reader
= src
->metadata_reader
;
2058 heap_free(dst
->prop_item
);
2059 dst
->prop_item
= src
->prop_item
;
2060 dst
->prop_count
= src
->prop_count
;
2061 if (dst
->image
.decoder
)
2062 IWICBitmapDecoder_Release(dst
->image
.decoder
);
2063 dst
->image
.decoder
= src
->image
.decoder
;
2064 dst
->image
.frame_count
= src
->image
.frame_count
;
2065 dst
->image
.current_frame
= src
->image
.current_frame
;
2066 dst
->image
.format
= src
->image
.format
;
2068 src
->image
.type
= ~0;
2072 static GpStatus
free_image_data(GpImage
*image
)
2075 return InvalidParameter
;
2077 if (image
->type
== ImageTypeBitmap
)
2079 heap_free(((GpBitmap
*)image
)->bitmapbits
);
2080 heap_free(((GpBitmap
*)image
)->own_bits
);
2081 DeleteDC(((GpBitmap
*)image
)->hdc
);
2082 DeleteObject(((GpBitmap
*)image
)->hbitmap
);
2083 if (((GpBitmap
*)image
)->metadata_reader
)
2084 IWICMetadataReader_Release(((GpBitmap
*)image
)->metadata_reader
);
2085 heap_free(((GpBitmap
*)image
)->prop_item
);
2087 else if (image
->type
== ImageTypeMetafile
)
2088 METAFILE_Free((GpMetafile
*)image
);
2091 WARN("invalid image: %p\n", image
);
2095 IWICBitmapDecoder_Release(image
->decoder
);
2096 heap_free(image
->palette
);
2101 GpStatus WINGDIPAPI
GdipDisposeImage(GpImage
*image
)
2105 TRACE("%p\n", image
);
2107 status
= free_image_data(image
);
2108 if (status
!= Ok
) return status
;
2115 GpStatus WINGDIPAPI
GdipFindFirstImageItem(GpImage
*image
, ImageItemData
* item
)
2119 TRACE("(%p,%p)\n", image
, item
);
2122 return InvalidParameter
;
2125 FIXME("not implemented\n");
2127 return NotImplemented
;
2130 GpStatus WINGDIPAPI
GdipGetImageItemData(GpImage
*image
, ImageItemData
*item
)
2134 TRACE("(%p,%p)\n", image
, item
);
2137 FIXME("not implemented\n");
2139 return NotImplemented
;
2142 GpStatus WINGDIPAPI
GdipGetImageBounds(GpImage
*image
, GpRectF
*srcRect
,
2145 TRACE("%p %p %p\n", image
, srcRect
, srcUnit
);
2147 if(!image
|| !srcRect
|| !srcUnit
)
2148 return InvalidParameter
;
2149 if(image
->type
== ImageTypeMetafile
){
2150 *srcRect
= ((GpMetafile
*)image
)->bounds
;
2151 *srcUnit
= ((GpMetafile
*)image
)->unit
;
2153 else if(image
->type
== ImageTypeBitmap
){
2154 srcRect
->X
= srcRect
->Y
= 0.0;
2155 srcRect
->Width
= (REAL
) ((GpBitmap
*)image
)->width
;
2156 srcRect
->Height
= (REAL
) ((GpBitmap
*)image
)->height
;
2157 *srcUnit
= UnitPixel
;
2160 WARN("GpImage with no image data\n");
2161 return InvalidParameter
;
2164 TRACE("returning (%f, %f) (%f, %f) unit type %d\n", srcRect
->X
, srcRect
->Y
,
2165 srcRect
->Width
, srcRect
->Height
, *srcUnit
);
2170 GpStatus WINGDIPAPI
GdipGetImageDimension(GpImage
*image
, REAL
*width
,
2173 TRACE("%p %p %p\n", image
, width
, height
);
2175 if(!image
|| !height
|| !width
)
2176 return InvalidParameter
;
2178 if(image
->type
== ImageTypeMetafile
){
2179 *height
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Height
, ((GpMetafile
*)image
)->unit
, image
->yres
);
2180 *width
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Width
, ((GpMetafile
*)image
)->unit
, image
->xres
);
2182 else if(image
->type
== ImageTypeBitmap
){
2183 *height
= ((GpBitmap
*)image
)->height
;
2184 *width
= ((GpBitmap
*)image
)->width
;
2187 WARN("GpImage with no image data\n");
2188 return InvalidParameter
;
2191 TRACE("returning (%f, %f)\n", *height
, *width
);
2195 GpStatus WINGDIPAPI
GdipGetImageGraphicsContext(GpImage
*image
,
2196 GpGraphics
**graphics
)
2201 TRACE("%p %p\n", image
, graphics
);
2203 if(!image
|| !graphics
)
2204 return InvalidParameter
;
2206 if (image
->type
== ImageTypeBitmap
&& ((GpBitmap
*)image
)->hbitmap
)
2208 hdc
= ((GpBitmap
*)image
)->hdc
;
2211 hdc
= CreateCompatibleDC(0);
2212 SelectObject(hdc
, ((GpBitmap
*)image
)->hbitmap
);
2213 ((GpBitmap
*)image
)->hdc
= hdc
;
2216 stat
= GdipCreateFromHDC(hdc
, graphics
);
2220 (*graphics
)->image
= image
;
2221 (*graphics
)->xres
= image
->xres
;
2222 (*graphics
)->yres
= image
->yres
;
2225 else if (image
->type
== ImageTypeMetafile
)
2226 stat
= METAFILE_GetGraphicsContext((GpMetafile
*)image
, graphics
);
2228 stat
= graphics_from_image(image
, graphics
);
2233 GpStatus WINGDIPAPI
GdipGetImageHeight(GpImage
*image
, UINT
*height
)
2235 TRACE("%p %p\n", image
, height
);
2237 if(!image
|| !height
)
2238 return InvalidParameter
;
2240 if(image
->type
== ImageTypeMetafile
)
2241 *height
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Height
, ((GpMetafile
*)image
)->unit
, image
->yres
);
2242 else if(image
->type
== ImageTypeBitmap
)
2243 *height
= ((GpBitmap
*)image
)->height
;
2246 WARN("GpImage with no image data\n");
2247 return InvalidParameter
;
2250 TRACE("returning %d\n", *height
);
2255 GpStatus WINGDIPAPI
GdipGetImageHorizontalResolution(GpImage
*image
, REAL
*res
)
2258 return InvalidParameter
;
2262 TRACE("(%p) <-- %0.2f\n", image
, *res
);
2267 GpStatus WINGDIPAPI
GdipGetImagePaletteSize(GpImage
*image
, INT
*size
)
2269 TRACE("%p %p\n", image
, size
);
2272 return InvalidParameter
;
2274 if (!image
->palette
|| image
->palette
->Count
== 0)
2275 *size
= sizeof(ColorPalette
);
2277 *size
= sizeof(UINT
)*2 + sizeof(ARGB
)*image
->palette
->Count
;
2279 TRACE("<-- %u\n", *size
);
2284 /* FIXME: test this function for non-bitmap types */
2285 GpStatus WINGDIPAPI
GdipGetImagePixelFormat(GpImage
*image
, PixelFormat
*format
)
2287 TRACE("%p %p\n", image
, format
);
2289 if(!image
|| !format
)
2290 return InvalidParameter
;
2292 if(image
->type
!= ImageTypeBitmap
)
2293 *format
= PixelFormat24bppRGB
;
2295 *format
= ((GpBitmap
*) image
)->format
;
2300 GpStatus WINGDIPAPI
GdipGetImageRawFormat(GpImage
*image
, GUID
*format
)
2302 TRACE("(%p, %p)\n", image
, format
);
2304 if(!image
|| !format
)
2305 return InvalidParameter
;
2307 memcpy(format
, &image
->format
, sizeof(GUID
));
2312 GpStatus WINGDIPAPI
GdipGetImageType(GpImage
*image
, ImageType
*type
)
2314 TRACE("%p %p\n", image
, type
);
2317 return InvalidParameter
;
2319 *type
= image
->type
;
2324 GpStatus WINGDIPAPI
GdipGetImageVerticalResolution(GpImage
*image
, REAL
*res
)
2327 return InvalidParameter
;
2331 TRACE("(%p) <-- %0.2f\n", image
, *res
);
2336 GpStatus WINGDIPAPI
GdipGetImageWidth(GpImage
*image
, UINT
*width
)
2338 TRACE("%p %p\n", image
, width
);
2340 if(!image
|| !width
)
2341 return InvalidParameter
;
2343 if(image
->type
== ImageTypeMetafile
)
2344 *width
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Width
, ((GpMetafile
*)image
)->unit
, image
->xres
);
2345 else if(image
->type
== ImageTypeBitmap
)
2346 *width
= ((GpBitmap
*)image
)->width
;
2349 WARN("GpImage with no image data\n");
2350 return InvalidParameter
;
2353 TRACE("returning %d\n", *width
);
2358 GpStatus WINGDIPAPI
GdipGetPropertyCount(GpImage
*image
, UINT
*num
)
2360 TRACE("(%p, %p)\n", image
, num
);
2362 if (!image
|| !num
) return InvalidParameter
;
2366 if (image
->type
== ImageTypeBitmap
)
2368 if (((GpBitmap
*)image
)->prop_item
)
2370 *num
= ((GpBitmap
*)image
)->prop_count
;
2374 if (((GpBitmap
*)image
)->metadata_reader
)
2375 IWICMetadataReader_GetCount(((GpBitmap
*)image
)->metadata_reader
, num
);
2381 GpStatus WINGDIPAPI
GdipGetPropertyIdList(GpImage
*image
, UINT num
, PROPID
*list
)
2384 IWICMetadataReader
*reader
;
2385 IWICEnumMetadataItem
*enumerator
;
2386 UINT prop_count
, i
, items_returned
;
2388 TRACE("(%p, %u, %p)\n", image
, num
, list
);
2390 if (!image
|| !list
) return InvalidParameter
;
2392 if (image
->type
!= ImageTypeBitmap
)
2394 FIXME("Not implemented for type %d\n", image
->type
);
2395 return NotImplemented
;
2398 if (((GpBitmap
*)image
)->prop_item
)
2400 if (num
!= ((GpBitmap
*)image
)->prop_count
) return InvalidParameter
;
2402 for (i
= 0; i
< num
; i
++)
2404 list
[i
] = ((GpBitmap
*)image
)->prop_item
[i
].id
;
2410 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2413 if (num
!= 0) return InvalidParameter
;
2417 hr
= IWICMetadataReader_GetCount(reader
, &prop_count
);
2418 if (FAILED(hr
)) return hresult_to_status(hr
);
2420 if (num
!= prop_count
) return InvalidParameter
;
2422 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2423 if (FAILED(hr
)) return hresult_to_status(hr
);
2425 IWICEnumMetadataItem_Reset(enumerator
);
2427 for (i
= 0; i
< num
; i
++)
2431 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, NULL
, &items_returned
);
2432 if (hr
!= S_OK
) break;
2434 if (id
.vt
!= VT_UI2
)
2436 FIXME("not supported propvariant type for id: %u\n", id
.vt
);
2440 list
[i
] = id
.u
.uiVal
;
2443 IWICEnumMetadataItem_Release(enumerator
);
2445 return hr
== S_OK
? Ok
: hresult_to_status(hr
);
2448 static UINT
propvariant_size(PROPVARIANT
*value
)
2450 switch (value
->vt
& ~VT_VECTOR
)
2456 if (!(value
->vt
& VT_VECTOR
)) return 1;
2457 return value
->u
.caub
.cElems
;
2460 if (!(value
->vt
& VT_VECTOR
)) return 2;
2461 return value
->u
.caui
.cElems
* 2;
2465 if (!(value
->vt
& VT_VECTOR
)) return 4;
2466 return value
->u
.caul
.cElems
* 4;
2470 if (!(value
->vt
& VT_VECTOR
)) return 8;
2471 return value
->u
.cauh
.cElems
* 8;
2473 return value
->u
.pszVal
? strlen(value
->u
.pszVal
) + 1 : 0;
2475 return value
->u
.blob
.cbSize
;
2477 FIXME("not supported variant type %d\n", value
->vt
);
2482 GpStatus WINGDIPAPI
GdipGetPropertyItemSize(GpImage
*image
, PROPID propid
, UINT
*size
)
2485 IWICMetadataReader
*reader
;
2486 PROPVARIANT id
, value
;
2488 TRACE("(%p,%#x,%p)\n", image
, propid
, size
);
2490 if (!size
|| !image
) return InvalidParameter
;
2492 if (image
->type
!= ImageTypeBitmap
)
2494 FIXME("Not implemented for type %d\n", image
->type
);
2495 return NotImplemented
;
2498 if (((GpBitmap
*)image
)->prop_item
)
2502 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2504 if (propid
== ((GpBitmap
*)image
)->prop_item
[i
].id
)
2506 *size
= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
;
2511 return PropertyNotFound
;
2514 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2515 if (!reader
) return PropertyNotFound
;
2518 id
.u
.uiVal
= propid
;
2519 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
2520 if (FAILED(hr
)) return PropertyNotFound
;
2522 *size
= propvariant_size(&value
);
2523 if (*size
) *size
+= sizeof(PropertyItem
);
2524 PropVariantClear(&value
);
2529 #ifndef PropertyTagTypeSByte
2530 #define PropertyTagTypeSByte 6
2531 #define PropertyTagTypeSShort 8
2532 #define PropertyTagTypeFloat 11
2533 #define PropertyTagTypeDouble 12
2536 static UINT
vt_to_itemtype(UINT vt
)
2543 { VT_I1
, PropertyTagTypeSByte
},
2544 { VT_UI1
, PropertyTagTypeByte
},
2545 { VT_I2
, PropertyTagTypeSShort
},
2546 { VT_UI2
, PropertyTagTypeShort
},
2547 { VT_I4
, PropertyTagTypeSLONG
},
2548 { VT_UI4
, PropertyTagTypeLong
},
2549 { VT_I8
, PropertyTagTypeSRational
},
2550 { VT_UI8
, PropertyTagTypeRational
},
2551 { VT_R4
, PropertyTagTypeFloat
},
2552 { VT_R8
, PropertyTagTypeDouble
},
2553 { VT_LPSTR
, PropertyTagTypeASCII
},
2554 { VT_BLOB
, PropertyTagTypeUndefined
}
2557 for (i
= 0; i
< sizeof(vt2type
)/sizeof(vt2type
[0]); i
++)
2559 if (vt2type
[i
].vt
== vt
) return vt2type
[i
].type
;
2561 FIXME("not supported variant type %u\n", vt
);
2565 static GpStatus
propvariant_to_item(PROPVARIANT
*value
, PropertyItem
*item
,
2566 UINT size
, PROPID id
)
2568 UINT item_size
, item_type
;
2570 item_size
= propvariant_size(value
);
2571 if (size
!= item_size
+ sizeof(PropertyItem
)) return InvalidParameter
;
2573 item_type
= vt_to_itemtype(value
->vt
& ~VT_VECTOR
);
2574 if (!item_type
) return InvalidParameter
;
2576 item
->value
= item
+ 1;
2578 switch (value
->vt
& ~VT_VECTOR
)
2582 if (!(value
->vt
& VT_VECTOR
))
2583 *(BYTE
*)item
->value
= value
->u
.bVal
;
2585 memcpy(item
->value
, value
->u
.caub
.pElems
, item_size
);
2589 if (!(value
->vt
& VT_VECTOR
))
2590 *(USHORT
*)item
->value
= value
->u
.uiVal
;
2592 memcpy(item
->value
, value
->u
.caui
.pElems
, item_size
);
2597 if (!(value
->vt
& VT_VECTOR
))
2598 *(ULONG
*)item
->value
= value
->u
.ulVal
;
2600 memcpy(item
->value
, value
->u
.caul
.pElems
, item_size
);
2605 if (!(value
->vt
& VT_VECTOR
))
2606 *(ULONGLONG
*)item
->value
= value
->u
.uhVal
.QuadPart
;
2608 memcpy(item
->value
, value
->u
.cauh
.pElems
, item_size
);
2611 memcpy(item
->value
, value
->u
.pszVal
, item_size
);
2614 memcpy(item
->value
, value
->u
.blob
.pBlobData
, item_size
);
2617 FIXME("not supported variant type %d\n", value
->vt
);
2618 return InvalidParameter
;
2621 item
->length
= item_size
;
2622 item
->type
= item_type
;
2628 GpStatus WINGDIPAPI
GdipGetPropertyItem(GpImage
*image
, PROPID propid
, UINT size
,
2629 PropertyItem
*buffer
)
2633 IWICMetadataReader
*reader
;
2634 PROPVARIANT id
, value
;
2636 TRACE("(%p,%#x,%u,%p)\n", image
, propid
, size
, buffer
);
2638 if (!image
|| !buffer
) return InvalidParameter
;
2640 if (image
->type
!= ImageTypeBitmap
)
2642 FIXME("Not implemented for type %d\n", image
->type
);
2643 return NotImplemented
;
2646 if (((GpBitmap
*)image
)->prop_item
)
2650 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2652 if (propid
== ((GpBitmap
*)image
)->prop_item
[i
].id
)
2654 if (size
!= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
)
2655 return InvalidParameter
;
2657 *buffer
= ((GpBitmap
*)image
)->prop_item
[i
];
2658 buffer
->value
= buffer
+ 1;
2659 memcpy(buffer
->value
, ((GpBitmap
*)image
)->prop_item
[i
].value
, buffer
->length
);
2664 return PropertyNotFound
;
2667 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2668 if (!reader
) return PropertyNotFound
;
2671 id
.u
.uiVal
= propid
;
2672 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
2673 if (FAILED(hr
)) return PropertyNotFound
;
2675 stat
= propvariant_to_item(&value
, buffer
, size
, propid
);
2676 PropVariantClear(&value
);
2681 GpStatus WINGDIPAPI
GdipGetPropertySize(GpImage
*image
, UINT
*size
, UINT
*count
)
2684 IWICMetadataReader
*reader
;
2685 IWICEnumMetadataItem
*enumerator
;
2686 UINT prop_count
, prop_size
, i
;
2687 PROPVARIANT id
, value
;
2689 TRACE("(%p,%p,%p)\n", image
, size
, count
);
2691 if (!image
|| !size
|| !count
) return InvalidParameter
;
2693 if (image
->type
!= ImageTypeBitmap
)
2695 FIXME("Not implemented for type %d\n", image
->type
);
2696 return NotImplemented
;
2699 if (((GpBitmap
*)image
)->prop_item
)
2701 *count
= ((GpBitmap
*)image
)->prop_count
;
2704 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2706 *size
+= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
;
2712 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2713 if (!reader
) return PropertyNotFound
;
2715 hr
= IWICMetadataReader_GetCount(reader
, &prop_count
);
2716 if (FAILED(hr
)) return hresult_to_status(hr
);
2718 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2719 if (FAILED(hr
)) return hresult_to_status(hr
);
2721 IWICEnumMetadataItem_Reset(enumerator
);
2725 PropVariantInit(&id
);
2726 PropVariantInit(&value
);
2728 for (i
= 0; i
< prop_count
; i
++)
2730 UINT items_returned
, item_size
;
2732 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, &value
, &items_returned
);
2733 if (hr
!= S_OK
) break;
2735 item_size
= propvariant_size(&value
);
2736 if (item_size
) prop_size
+= sizeof(PropertyItem
) + item_size
;
2738 PropVariantClear(&id
);
2739 PropVariantClear(&value
);
2742 IWICEnumMetadataItem_Release(enumerator
);
2744 if (hr
!= S_OK
) return PropertyNotFound
;
2746 *count
= prop_count
;
2751 GpStatus WINGDIPAPI
GdipGetAllPropertyItems(GpImage
*image
, UINT size
,
2752 UINT count
, PropertyItem
*buf
)
2756 IWICMetadataReader
*reader
;
2757 IWICEnumMetadataItem
*enumerator
;
2758 UINT prop_count
, prop_size
, i
;
2759 PROPVARIANT id
, value
;
2762 TRACE("(%p,%u,%u,%p)\n", image
, size
, count
, buf
);
2764 if (!image
|| !buf
) return InvalidParameter
;
2766 if (image
->type
!= ImageTypeBitmap
)
2768 FIXME("Not implemented for type %d\n", image
->type
);
2769 return NotImplemented
;
2772 status
= GdipGetPropertySize(image
, &prop_size
, &prop_count
);
2773 if (status
!= Ok
) return status
;
2775 if (prop_count
!= count
|| prop_size
!= size
) return InvalidParameter
;
2777 if (((GpBitmap
*)image
)->prop_item
)
2779 memcpy(buf
, ((GpBitmap
*)image
)->prop_item
, prop_size
);
2781 item_value
= (char *)(buf
+ prop_count
);
2783 for (i
= 0; i
< prop_count
; i
++)
2785 buf
[i
].value
= item_value
;
2786 item_value
+= buf
[i
].length
;
2792 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2793 if (!reader
) return PropertyNotFound
;
2795 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2796 if (FAILED(hr
)) return hresult_to_status(hr
);
2798 IWICEnumMetadataItem_Reset(enumerator
);
2800 item_value
= (char *)(buf
+ prop_count
);
2802 PropVariantInit(&id
);
2803 PropVariantInit(&value
);
2805 for (i
= 0; i
< prop_count
; i
++)
2808 UINT items_returned
, item_size
;
2810 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, &value
, &items_returned
);
2811 if (hr
!= S_OK
) break;
2813 if (id
.vt
!= VT_UI2
)
2815 FIXME("not supported propvariant type for id: %u\n", id
.vt
);
2819 item_size
= propvariant_size(&value
);
2822 item
= heap_alloc(item_size
+ sizeof(*item
));
2824 propvariant_to_item(&value
, item
, item_size
+ sizeof(*item
), id
.u
.uiVal
);
2825 buf
[i
].id
= item
->id
;
2826 buf
[i
].type
= item
->type
;
2827 buf
[i
].length
= item_size
;
2828 buf
[i
].value
= item_value
;
2829 memcpy(item_value
, item
->value
, item_size
);
2830 item_value
+= item_size
;
2835 PropVariantClear(&id
);
2836 PropVariantClear(&value
);
2839 IWICEnumMetadataItem_Release(enumerator
);
2841 if (hr
!= S_OK
) return PropertyNotFound
;
2846 struct image_format_dimension
2849 const GUID
*dimension
;
2852 static const struct image_format_dimension image_format_dimensions
[] =
2854 {&ImageFormatGIF
, &FrameDimensionTime
},
2855 {&ImageFormatIcon
, &FrameDimensionResolution
},
2859 GpStatus WINGDIPAPI
GdipImageGetFrameCount(GpImage
*image
,
2860 GDIPCONST GUID
* dimensionID
, UINT
* count
)
2862 TRACE("(%p,%s,%p)\n", image
, debugstr_guid(dimensionID
), count
);
2864 if(!image
|| !count
)
2865 return InvalidParameter
;
2868 IsEqualGUID(dimensionID
, &image
->format
) ||
2869 IsEqualGUID(dimensionID
, &FrameDimensionPage
) ||
2870 IsEqualGUID(dimensionID
, &FrameDimensionTime
))
2872 *count
= image
->frame_count
;
2876 return InvalidParameter
;
2879 GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsCount(GpImage
*image
,
2882 TRACE("(%p, %p)\n", image
, count
);
2884 /* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
2886 if(!image
|| !count
)
2887 return InvalidParameter
;
2894 GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsList(GpImage
* image
,
2895 GUID
* dimensionIDs
, UINT count
)
2898 const GUID
*result
=NULL
;
2900 TRACE("(%p,%p,%u)\n", image
, dimensionIDs
, count
);
2902 if(!image
|| !dimensionIDs
|| count
!= 1)
2903 return InvalidParameter
;
2905 for (i
=0; image_format_dimensions
[i
].format
; i
++)
2907 if (IsEqualGUID(&image
->format
, image_format_dimensions
[i
].format
))
2909 result
= image_format_dimensions
[i
].dimension
;
2915 result
= &FrameDimensionPage
;
2917 memcpy(dimensionIDs
, result
, sizeof(GUID
));
2922 GpStatus WINGDIPAPI
GdipLoadImageFromFile(GDIPCONST WCHAR
* filename
,
2928 TRACE("(%s) %p\n", debugstr_w(filename
), image
);
2930 if (!filename
|| !image
)
2931 return InvalidParameter
;
2935 stat
= GdipCreateStreamOnFile(filename
, GENERIC_READ
, &stream
);
2940 stat
= GdipLoadImageFromStream(stream
, image
);
2942 IStream_Release(stream
);
2947 /* FIXME: no icm handling */
2948 GpStatus WINGDIPAPI
GdipLoadImageFromFileICM(GDIPCONST WCHAR
* filename
,GpImage
**image
)
2950 TRACE("(%s) %p\n", debugstr_w(filename
), image
);
2952 return GdipLoadImageFromFile(filename
, image
);
2955 static void add_property(GpBitmap
*bitmap
, PropertyItem
*item
)
2957 UINT prop_size
, prop_count
;
2958 PropertyItem
*prop_item
;
2960 if (bitmap
->prop_item
== NULL
)
2962 prop_size
= prop_count
= 0;
2963 prop_item
= heap_alloc_zero(item
->length
+ sizeof(PropertyItem
));
2964 if (!prop_item
) return;
2971 GdipGetPropertySize(&bitmap
->image
, &prop_size
, &prop_count
);
2973 prop_item
= heap_alloc_zero(prop_size
+ item
->length
+ sizeof(PropertyItem
));
2974 if (!prop_item
) return;
2975 memcpy(prop_item
, bitmap
->prop_item
, sizeof(PropertyItem
) * bitmap
->prop_count
);
2976 prop_size
-= sizeof(PropertyItem
) * bitmap
->prop_count
;
2977 memcpy(prop_item
+ prop_count
+ 1, bitmap
->prop_item
+ prop_count
, prop_size
);
2979 item_value
= (char *)(prop_item
+ prop_count
+ 1);
2981 for (i
= 0; i
< prop_count
; i
++)
2983 prop_item
[i
].value
= item_value
;
2984 item_value
+= prop_item
[i
].length
;
2988 prop_item
[prop_count
].id
= item
->id
;
2989 prop_item
[prop_count
].type
= item
->type
;
2990 prop_item
[prop_count
].length
= item
->length
;
2991 prop_item
[prop_count
].value
= (char *)(prop_item
+ prop_count
+ 1) + prop_size
;
2992 memcpy(prop_item
[prop_count
].value
, item
->value
, item
->length
);
2994 heap_free(bitmap
->prop_item
);
2995 bitmap
->prop_item
= prop_item
;
2996 bitmap
->prop_count
++;
2999 static BOOL
get_bool_property(IWICMetadataReader
*reader
, const GUID
*guid
, const WCHAR
*prop_name
)
3003 PROPVARIANT id
, value
;
3006 hr
= IWICMetadataReader_GetMetadataFormat(reader
, &format
);
3007 if (FAILED(hr
) || !IsEqualGUID(&format
, guid
)) return FALSE
;
3009 PropVariantInit(&id
);
3010 PropVariantInit(&value
);
3013 id
.u
.pwszVal
= CoTaskMemAlloc((lstrlenW(prop_name
) + 1) * sizeof(WCHAR
));
3014 if (!id
.u
.pwszVal
) return FALSE
;
3015 lstrcpyW(id
.u
.pwszVal
, prop_name
);
3016 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
3017 if (hr
== S_OK
&& value
.vt
== VT_BOOL
)
3018 ret
= value
.u
.boolVal
;
3020 PropVariantClear(&id
);
3021 PropVariantClear(&value
);
3026 static PropertyItem
*get_property(IWICMetadataReader
*reader
, const GUID
*guid
, const WCHAR
*prop_name
)
3030 PROPVARIANT id
, value
;
3031 PropertyItem
*item
= NULL
;
3033 hr
= IWICMetadataReader_GetMetadataFormat(reader
, &format
);
3034 if (FAILED(hr
) || !IsEqualGUID(&format
, guid
)) return NULL
;
3036 PropVariantInit(&id
);
3037 PropVariantInit(&value
);
3040 id
.u
.pwszVal
= CoTaskMemAlloc((lstrlenW(prop_name
) + 1) * sizeof(WCHAR
));
3041 if (!id
.u
.pwszVal
) return NULL
;
3042 lstrcpyW(id
.u
.pwszVal
, prop_name
);
3043 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
3046 UINT item_size
= propvariant_size(&value
);
3049 item_size
+= sizeof(*item
);
3050 item
= heap_alloc_zero(item_size
);
3051 if (propvariant_to_item(&value
, item
, item_size
, 0) != Ok
)
3059 PropVariantClear(&id
);
3060 PropVariantClear(&value
);
3065 static PropertyItem
*get_gif_comment(IWICMetadataReader
*reader
)
3067 static const WCHAR textentryW
[] = { 'T','e','x','t','E','n','t','r','y',0 };
3068 PropertyItem
*comment
;
3070 comment
= get_property(reader
, &GUID_MetadataFormatGifComment
, textentryW
);
3072 comment
->id
= PropertyTagExifUserComment
;
3077 static PropertyItem
*get_gif_loopcount(IWICMetadataReader
*reader
)
3079 static const WCHAR applicationW
[] = { 'A','p','p','l','i','c','a','t','i','o','n',0 };
3080 static const WCHAR dataW
[] = { 'D','a','t','a',0 };
3081 PropertyItem
*appext
= NULL
, *appdata
= NULL
, *loop
= NULL
;
3083 appext
= get_property(reader
, &GUID_MetadataFormatAPE
, applicationW
);
3086 if (appext
->type
== PropertyTagTypeByte
&& appext
->length
== 11 &&
3087 (!memcmp(appext
->value
, "NETSCAPE2.0", 11) || !memcmp(appext
->value
, "ANIMEXTS1.0", 11)))
3089 appdata
= get_property(reader
, &GUID_MetadataFormatAPE
, dataW
);
3092 if (appdata
->type
== PropertyTagTypeByte
&& appdata
->length
== 4)
3094 BYTE
*data
= appdata
->value
;
3095 if (data
[0] == 3 && data
[1] == 1)
3097 loop
= heap_alloc_zero(sizeof(*loop
) + sizeof(SHORT
));
3100 loop
->type
= PropertyTagTypeShort
;
3101 loop
->id
= PropertyTagLoopCount
;
3102 loop
->length
= sizeof(SHORT
);
3103 loop
->value
= loop
+ 1;
3104 *(SHORT
*)loop
->value
= data
[2] | (data
[3] << 8);
3118 static PropertyItem
*get_gif_background(IWICMetadataReader
*reader
)
3120 static const WCHAR backgroundW
[] = { 'B','a','c','k','g','r','o','u','n','d','C','o','l','o','r','I','n','d','e','x',0 };
3121 PropertyItem
*background
;
3123 background
= get_property(reader
, &GUID_MetadataFormatLSD
, backgroundW
);
3125 background
->id
= PropertyTagIndexBackground
;
3130 static PropertyItem
*get_gif_palette(IWICBitmapDecoder
*decoder
, IWICMetadataReader
*reader
)
3132 static const WCHAR global_flagW
[] = { 'G','l','o','b','a','l','C','o','l','o','r','T','a','b','l','e','F','l','a','g',0 };
3134 IWICImagingFactory
*factory
;
3135 IWICPalette
*palette
;
3137 WICColor colors
[256];
3139 if (!get_bool_property(reader
, &GUID_MetadataFormatLSD
, global_flagW
))
3142 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
3143 if (hr
!= S_OK
) return NULL
;
3145 hr
= IWICImagingFactory_CreatePalette(factory
, &palette
);
3148 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
3150 IWICPalette_GetColors(palette
, 256, colors
, &count
);
3152 IWICPalette_Release(palette
);
3155 IWICImagingFactory_Release(factory
);
3163 pal
= heap_alloc_zero(sizeof(*pal
) + count
* 3);
3164 if (!pal
) return NULL
;
3165 pal
->type
= PropertyTagTypeByte
;
3166 pal
->id
= PropertyTagGlobalPalette
;
3167 pal
->value
= pal
+ 1;
3168 pal
->length
= count
* 3;
3172 for (i
= 0; i
< count
; i
++)
3174 rgb
[i
*3] = (colors
[i
] >> 16) & 0xff;
3175 rgb
[i
*3 + 1] = (colors
[i
] >> 8) & 0xff;
3176 rgb
[i
*3 + 2] = colors
[i
] & 0xff;
3185 static PropertyItem
*get_gif_transparent_idx(IWICMetadataReader
*reader
)
3187 static const WCHAR transparency_flagW
[] = { 'T','r','a','n','s','p','a','r','e','n','c','y','F','l','a','g',0 };
3188 static const WCHAR colorW
[] = { 'T','r','a','n','s','p','a','r','e','n','t','C','o','l','o','r','I','n','d','e','x',0 };
3189 PropertyItem
*index
= NULL
;
3191 if (get_bool_property(reader
, &GUID_MetadataFormatGCE
, transparency_flagW
))
3193 index
= get_property(reader
, &GUID_MetadataFormatGCE
, colorW
);
3195 index
->id
= PropertyTagIndexTransparent
;
3200 static LONG
get_gif_frame_property(IWICBitmapFrameDecode
*frame
, const GUID
*format
, const WCHAR
*property
)
3203 IWICMetadataBlockReader
*block_reader
;
3204 IWICMetadataReader
*reader
;
3205 UINT block_count
, i
;
3209 hr
= IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3212 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3215 for (i
= 0; i
< block_count
; i
++)
3217 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3220 prop
= get_property(reader
, format
, property
);
3223 if (prop
->type
== PropertyTagTypeByte
&& prop
->length
== 1)
3224 value
= *(BYTE
*)prop
->value
;
3225 else if (prop
->type
== PropertyTagTypeShort
&& prop
->length
== 2)
3226 value
= *(SHORT
*)prop
->value
;
3230 IWICMetadataReader_Release(reader
);
3234 IWICMetadataBlockReader_Release(block_reader
);
3240 static void gif_metadata_reader(GpBitmap
*bitmap
, IWICBitmapDecoder
*decoder
, UINT active_frame
)
3242 static const WCHAR delayW
[] = { 'D','e','l','a','y',0 };
3244 IWICBitmapFrameDecode
*frame
;
3245 IWICMetadataBlockReader
*block_reader
;
3246 IWICMetadataReader
*reader
;
3247 UINT frame_count
, block_count
, i
;
3248 PropertyItem
*delay
= NULL
, *comment
= NULL
, *background
= NULL
;
3249 PropertyItem
*transparent_idx
= NULL
, *loop
= NULL
, *palette
= NULL
;
3251 IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
3252 if (frame_count
> 1)
3254 delay
= heap_alloc_zero(sizeof(*delay
) + frame_count
* sizeof(LONG
));
3259 delay
->type
= PropertyTagTypeLong
;
3260 delay
->id
= PropertyTagFrameDelay
;
3261 delay
->length
= frame_count
* sizeof(LONG
);
3262 delay
->value
= delay
+ 1;
3264 value
= delay
->value
;
3266 for (i
= 0; i
< frame_count
; i
++)
3268 hr
= IWICBitmapDecoder_GetFrame(decoder
, i
, &frame
);
3271 value
[i
] = get_gif_frame_property(frame
, &GUID_MetadataFormatGCE
, delayW
);
3272 IWICBitmapFrameDecode_Release(frame
);
3279 hr
= IWICBitmapDecoder_QueryInterface(decoder
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3282 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3285 for (i
= 0; i
< block_count
; i
++)
3287 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3291 comment
= get_gif_comment(reader
);
3293 if (frame_count
> 1 && !loop
)
3294 loop
= get_gif_loopcount(reader
);
3297 background
= get_gif_background(reader
);
3300 palette
= get_gif_palette(decoder
, reader
);
3302 IWICMetadataReader_Release(reader
);
3306 IWICMetadataBlockReader_Release(block_reader
);
3309 if (frame_count
> 1 && !loop
)
3311 loop
= heap_alloc_zero(sizeof(*loop
) + sizeof(SHORT
));
3314 loop
->type
= PropertyTagTypeShort
;
3315 loop
->id
= PropertyTagLoopCount
;
3316 loop
->length
= sizeof(SHORT
);
3317 loop
->value
= loop
+ 1;
3318 *(SHORT
*)loop
->value
= 1;
3322 if (delay
) add_property(bitmap
, delay
);
3323 if (comment
) add_property(bitmap
, comment
);
3324 if (loop
) add_property(bitmap
, loop
);
3325 if (palette
) add_property(bitmap
, palette
);
3326 if (background
) add_property(bitmap
, background
);
3332 heap_free(background
);
3334 /* Win7 gdiplus always returns transparent color index from frame 0 */
3335 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
3336 if (hr
!= S_OK
) return;
3338 hr
= IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3341 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3344 for (i
= 0; i
< block_count
; i
++)
3346 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3349 if (!transparent_idx
)
3350 transparent_idx
= get_gif_transparent_idx(reader
);
3352 IWICMetadataReader_Release(reader
);
3356 IWICMetadataBlockReader_Release(block_reader
);
3359 if (transparent_idx
) add_property(bitmap
, transparent_idx
);
3360 heap_free(transparent_idx
);
3362 IWICBitmapFrameDecode_Release(frame
);
3365 static PropertyItem
* create_prop(PROPID propid
, PROPVARIANT
* value
)
3367 PropertyItem
*item
= NULL
;
3368 UINT item_size
= propvariant_size(value
);
3372 item_size
+= sizeof(*item
);
3373 item
= heap_alloc_zero(item_size
);
3374 if (propvariant_to_item(value
, item
, item_size
, propid
) != Ok
)
3384 static ULONG
get_ulong_by_index(IWICMetadataReader
* reader
, ULONG index
)
3390 hr
= IWICMetadataReader_GetValueByIndex(reader
, index
, NULL
, NULL
, &value
);
3396 result
= value
.u
.ulVal
;
3399 ERR("unhandled case %u\n", value
.vt
);
3402 PropVariantClear(&value
);
3407 static void png_metadata_reader(GpBitmap
*bitmap
, IWICBitmapDecoder
*decoder
, UINT active_frame
)
3410 IWICBitmapFrameDecode
*frame
;
3411 IWICMetadataBlockReader
*block_reader
;
3412 IWICMetadataReader
*reader
;
3413 UINT block_count
, i
, j
;
3414 struct keyword_info
{
3419 { "Title", PropertyTagImageTitle
},
3420 { "Author", PropertyTagArtist
},
3421 { "Description", PropertyTagImageDescription
},
3422 { "Copyright", PropertyTagCopyright
},
3423 { "Software", PropertyTagSoftwareUsed
},
3424 { "Source", PropertyTagEquipModel
},
3425 { "Comment", PropertyTagExifUserComment
},
3427 BOOL seen_gamma
=FALSE
, seen_whitepoint
=FALSE
, seen_chrm
=FALSE
;
3429 hr
= IWICBitmapDecoder_GetFrame(decoder
, active_frame
, &frame
);
3430 if (hr
!= S_OK
) return;
3432 hr
= IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3435 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3438 for (i
= 0; i
< block_count
; i
++)
3440 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3445 hr
= IWICMetadataReader_GetMetadataFormat(reader
, &format
);
3446 if (SUCCEEDED(hr
) && IsEqualGUID(&GUID_MetadataFormatChunktEXt
, &format
))
3448 PROPVARIANT name
, value
;
3451 hr
= IWICMetadataReader_GetValueByIndex(reader
, 0, NULL
, &name
, &value
);
3455 if (name
.vt
== VT_LPSTR
)
3457 for (j
=0; j
<sizeof(keywords
)/sizeof(keywords
[0]); j
++)
3458 if (!strcmp(keywords
[j
].name
, name
.u
.pszVal
))
3460 if (j
< sizeof(keywords
)/sizeof(keywords
[0]) && !keywords
[j
].seen
)
3462 keywords
[j
].seen
= TRUE
;
3463 item
= create_prop(keywords
[j
].propid
, &value
);
3465 add_property(bitmap
, item
);
3470 PropVariantClear(&name
);
3471 PropVariantClear(&value
);
3474 else if (SUCCEEDED(hr
) && IsEqualGUID(&GUID_MetadataFormatChunkgAMA
, &format
))
3480 item
= heap_alloc_zero(sizeof(PropertyItem
) + sizeof(ULONG
) * 2);
3484 item
->length
= sizeof(ULONG
) * 2;
3485 item
->type
= PropertyTagTypeRational
;
3486 item
->id
= PropertyTagGamma
;
3487 rational
= item
->value
= item
+ 1;
3488 rational
[0] = 100000;
3489 rational
[1] = get_ulong_by_index(reader
, 0);
3490 add_property(bitmap
, item
);
3496 else if (SUCCEEDED(hr
) && IsEqualGUID(&GUID_MetadataFormatChunkcHRM
, &format
))
3500 if (!seen_whitepoint
)
3502 item
= GdipAlloc(sizeof(PropertyItem
) + sizeof(ULONG
) * 4);
3506 item
->length
= sizeof(ULONG
) * 4;
3507 item
->type
= PropertyTagTypeRational
;
3508 item
->id
= PropertyTagWhitePoint
;
3509 rational
= item
->value
= item
+ 1;
3510 rational
[0] = get_ulong_by_index(reader
, 0);
3511 rational
[1] = 100000;
3512 rational
[2] = get_ulong_by_index(reader
, 1);
3513 rational
[3] = 100000;
3514 add_property(bitmap
, item
);
3515 seen_whitepoint
= TRUE
;
3521 item
= GdipAlloc(sizeof(PropertyItem
) + sizeof(ULONG
) * 12);
3525 item
->length
= sizeof(ULONG
) * 12;
3526 item
->type
= PropertyTagTypeRational
;
3527 item
->id
= PropertyTagPrimaryChromaticities
;
3528 rational
= item
->value
= item
+ 1;
3529 rational
[0] = get_ulong_by_index(reader
, 2);
3530 rational
[1] = 100000;
3531 rational
[2] = get_ulong_by_index(reader
, 3);
3532 rational
[3] = 100000;
3533 rational
[4] = get_ulong_by_index(reader
, 4);
3534 rational
[5] = 100000;
3535 rational
[6] = get_ulong_by_index(reader
, 5);
3536 rational
[7] = 100000;
3537 rational
[8] = get_ulong_by_index(reader
, 6);
3538 rational
[9] = 100000;
3539 rational
[10] = get_ulong_by_index(reader
, 7);
3540 rational
[11] = 100000;
3541 add_property(bitmap
, item
);
3548 IWICMetadataReader_Release(reader
);
3552 IWICMetadataBlockReader_Release(block_reader
);
3555 IWICBitmapFrameDecode_Release(frame
);
3558 static GpStatus
initialize_decoder_wic(IStream
*stream
, REFGUID container
, IWICBitmapDecoder
**decoder
)
3560 IWICImagingFactory
*factory
;
3563 TRACE("%p,%s\n", stream
, wine_dbgstr_guid(container
));
3565 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
3566 if (FAILED(hr
)) return hresult_to_status(hr
);
3567 hr
= IWICImagingFactory_CreateDecoder(factory
, container
, NULL
, decoder
);
3568 IWICImagingFactory_Release(factory
);
3569 if (FAILED(hr
)) return hresult_to_status(hr
);
3571 hr
= IWICBitmapDecoder_Initialize(*decoder
, stream
, WICDecodeMetadataCacheOnLoad
);
3572 if (FAILED(hr
)) return hresult_to_status(hr
);
3576 typedef void (*metadata_reader_func
)(GpBitmap
*bitmap
, IWICBitmapDecoder
*decoder
, UINT frame
);
3578 static GpStatus
decode_frame_wic(IWICBitmapDecoder
*decoder
, BOOL force_conversion
,
3579 UINT active_frame
, metadata_reader_func metadata_reader
, GpImage
**image
)
3584 IWICBitmapFrameDecode
*frame
;
3585 IWICBitmapSource
*source
=NULL
;
3586 IWICMetadataBlockReader
*block_reader
;
3587 WICPixelFormatGUID wic_format
;
3588 PixelFormat gdip_format
=0;
3589 ColorPalette
*palette
= NULL
;
3590 WICBitmapPaletteType palette_type
= WICBitmapPaletteTypeFixedHalftone256
;
3592 UINT width
, height
, frame_count
;
3593 BitmapData lockeddata
;
3596 TRACE("%p,%u,%p\n", decoder
, active_frame
, image
);
3598 IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
3599 hr
= IWICBitmapDecoder_GetFrame(decoder
, active_frame
, &frame
);
3600 if (SUCCEEDED(hr
)) /* got frame */
3602 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &wic_format
);
3606 if (!force_conversion
)
3608 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
3610 if (IsEqualGUID(&wic_format
, pixel_formats
[i
].wic_format
))
3612 source
= (IWICBitmapSource
*)frame
;
3613 IWICBitmapSource_AddRef(source
);
3614 gdip_format
= pixel_formats
[i
].gdip_format
;
3615 palette_type
= pixel_formats
[i
].palette_type
;
3622 /* unknown format; fall back on 32bppARGB */
3623 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
, (IWICBitmapSource
*)frame
, &source
);
3624 gdip_format
= PixelFormat32bppARGB
;
3626 TRACE("%s => %#x\n", wine_dbgstr_guid(&wic_format
), gdip_format
);
3629 if (SUCCEEDED(hr
)) /* got source */
3631 hr
= IWICBitmapSource_GetSize(source
, &width
, &height
);
3634 status
= GdipCreateBitmapFromScan0(width
, height
, 0, gdip_format
,
3637 if (SUCCEEDED(hr
) && status
== Ok
) /* created bitmap */
3639 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeWrite
,
3640 gdip_format
, &lockeddata
);
3641 if (status
== Ok
) /* locked bitmap */
3646 for (i
=0; i
<height
; i
++)
3649 hr
= IWICBitmapSource_CopyPixels(source
, &wrc
, abs(lockeddata
.Stride
),
3650 abs(lockeddata
.Stride
), (BYTE
*)lockeddata
.Scan0
+lockeddata
.Stride
*i
);
3651 if (FAILED(hr
)) break;
3654 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
3657 if (SUCCEEDED(hr
) && status
== Ok
)
3658 *image
= &bitmap
->image
;
3662 GdipDisposeImage(&bitmap
->image
);
3665 if (SUCCEEDED(hr
) && status
== Ok
)
3668 hr
= IWICBitmapSource_GetResolution(source
, &dpix
, &dpiy
);
3671 bitmap
->image
.xres
= dpix
;
3672 bitmap
->image
.yres
= dpiy
;
3678 IWICBitmapSource_Release(source
);
3681 if (SUCCEEDED(hr
)) {
3682 bitmap
->metadata_reader
= NULL
;
3684 if (metadata_reader
)
3685 metadata_reader(bitmap
, decoder
, active_frame
);
3686 else if (IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
) == S_OK
)
3688 UINT block_count
= 0;
3689 if (IWICMetadataBlockReader_GetCount(block_reader
, &block_count
) == S_OK
&& block_count
)
3690 IWICMetadataBlockReader_GetReaderByIndex(block_reader
, 0, &bitmap
->metadata_reader
);
3691 IWICMetadataBlockReader_Release(block_reader
);
3694 palette
= get_palette(frame
, palette_type
);
3695 IWICBitmapFrameDecode_Release(frame
);
3699 if (FAILED(hr
) && status
== Ok
) status
= hresult_to_status(hr
);
3703 /* Native GDI+ used to be smarter, but since Win7 it just sets these flags. */
3704 bitmap
->image
.flags
|= ImageFlagsReadOnly
|ImageFlagsHasRealPixelSize
|ImageFlagsHasRealDPI
;
3705 if (IsEqualGUID(&wic_format
, &GUID_WICPixelFormat2bppGray
) ||
3706 IsEqualGUID(&wic_format
, &GUID_WICPixelFormat4bppGray
) ||
3707 IsEqualGUID(&wic_format
, &GUID_WICPixelFormat8bppGray
) ||
3708 IsEqualGUID(&wic_format
, &GUID_WICPixelFormat16bppGray
))
3709 bitmap
->image
.flags
|= ImageFlagsColorSpaceGRAY
;
3711 bitmap
->image
.flags
|= ImageFlagsColorSpaceRGB
;
3712 bitmap
->image
.frame_count
= frame_count
;
3713 bitmap
->image
.current_frame
= active_frame
;
3714 bitmap
->image
.decoder
= decoder
;
3715 IWICBitmapDecoder_AddRef(decoder
);
3718 heap_free(bitmap
->image
.palette
);
3719 bitmap
->image
.palette
= palette
;
3723 if (IsEqualGUID(&wic_format
, &GUID_WICPixelFormatBlackWhite
))
3724 bitmap
->image
.palette
->Flags
= 0;
3726 TRACE("=> %p\n", *image
);
3732 static GpStatus
decode_image_wic(IStream
*stream
, REFGUID container
,
3733 metadata_reader_func metadata_reader
, GpImage
**image
)
3735 IWICBitmapDecoder
*decoder
;
3738 status
= initialize_decoder_wic(stream
, container
, &decoder
);
3742 status
= decode_frame_wic(decoder
, FALSE
, 0, metadata_reader
, image
);
3743 IWICBitmapDecoder_Release(decoder
);
3747 static GpStatus
select_frame_wic(GpImage
*image
, UINT active_frame
)
3752 status
= decode_frame_wic(image
->decoder
, FALSE
, active_frame
, NULL
, &new_image
);
3756 new_image
->busy
= image
->busy
;
3757 memcpy(&new_image
->format
, &image
->format
, sizeof(GUID
));
3758 free_image_data(image
);
3759 if (image
->type
== ImageTypeBitmap
)
3760 *(GpBitmap
*)image
= *(GpBitmap
*)new_image
;
3761 else if (image
->type
== ImageTypeMetafile
)
3762 *(GpMetafile
*)image
= *(GpMetafile
*)new_image
;
3763 new_image
->type
= ~0;
3764 heap_free(new_image
);
3768 static HRESULT
get_gif_frame_rect(IWICBitmapFrameDecode
*frame
,
3769 UINT
*left
, UINT
*top
, UINT
*width
, UINT
*height
)
3771 static const WCHAR leftW
[] = {'L','e','f','t',0};
3772 static const WCHAR topW
[] = {'T','o','p',0};
3774 *left
= get_gif_frame_property(frame
, &GUID_MetadataFormatIMD
, leftW
);
3775 *top
= get_gif_frame_property(frame
, &GUID_MetadataFormatIMD
, topW
);
3777 return IWICBitmapFrameDecode_GetSize(frame
, width
, height
);
3780 static HRESULT
blit_gif_frame(GpBitmap
*bitmap
, IWICBitmapFrameDecode
*frame
, BOOL first_frame
)
3782 UINT i
, j
, left
, top
, width
, height
;
3783 IWICBitmapSource
*source
;
3787 hr
= get_gif_frame_rect(frame
, &left
, &top
, &width
, &height
);
3791 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
, (IWICBitmapSource
*)frame
, &source
);
3795 new_bits
= heap_alloc_zero(width
*height
*4);
3797 return E_OUTOFMEMORY
;
3799 hr
= IWICBitmapSource_CopyPixels(source
, NULL
, width
*4, width
*height
*4, new_bits
);
3800 IWICBitmapSource_Release(source
);
3802 heap_free(new_bits
);
3806 for(i
=0; i
<height
&& i
+top
<bitmap
->height
; i
++) {
3807 for(j
=0; j
<width
&& j
+left
<bitmap
->width
; j
++) {
3808 DWORD
*src
= (DWORD
*)(new_bits
+i
*width
*4+j
*4);
3809 DWORD
*dst
= (DWORD
*)(bitmap
->bits
+(i
+top
)*bitmap
->stride
+(j
+left
)*4);
3811 if(first_frame
|| *src
>>24 != 0)
3815 heap_free(new_bits
);
3819 static DWORD
get_gif_background_color(GpBitmap
*bitmap
)
3821 BYTE bgcolor_idx
= 0;
3824 for(i
=0; i
<bitmap
->prop_count
; i
++) {
3825 if(bitmap
->prop_item
[i
].id
== PropertyTagIndexBackground
) {
3826 bgcolor_idx
= *(BYTE
*)bitmap
->prop_item
[i
].value
;
3831 for(i
=0; i
<bitmap
->prop_count
; i
++) {
3832 if(bitmap
->prop_item
[i
].id
== PropertyTagIndexTransparent
) {
3833 BYTE transparent_idx
;
3834 transparent_idx
= *(BYTE
*)bitmap
->prop_item
[i
].value
;
3836 if(transparent_idx
== bgcolor_idx
)
3841 for(i
=0; i
<bitmap
->prop_count
; i
++) {
3842 if(bitmap
->prop_item
[i
].id
== PropertyTagGlobalPalette
) {
3843 if(bitmap
->prop_item
[i
].length
/3 > bgcolor_idx
) {
3844 BYTE
*color
= ((BYTE
*)bitmap
->prop_item
[i
].value
)+bgcolor_idx
*3;
3845 return color
[2] + (color
[1]<<8) + (color
[0]<<16) + (0xffu
<<24);
3851 FIXME("can't get gif background color\n");
3855 static GpStatus
select_frame_gif(GpImage
* image
, UINT active_frame
)
3857 static const WCHAR disposalW
[] = {'D','i','s','p','o','s','a','l',0};
3859 GpBitmap
*bitmap
= (GpBitmap
*)image
;
3860 IWICBitmapFrameDecode
*frame
;
3861 int cur_frame
=0, disposal
;
3862 BOOL bgcolor_set
= FALSE
;
3866 if(active_frame
> image
->current_frame
) {
3867 hr
= IWICBitmapDecoder_GetFrame(bitmap
->image
.decoder
, image
->current_frame
, &frame
);
3869 return hresult_to_status(hr
);
3870 disposal
= get_gif_frame_property(frame
, &GUID_MetadataFormatGCE
, disposalW
);
3871 IWICBitmapFrameDecode_Release(frame
);
3873 if(disposal
== GIF_DISPOSE_RESTORE_TO_BKGND
)
3874 cur_frame
= image
->current_frame
;
3875 else if(disposal
!= GIF_DISPOSE_RESTORE_TO_PREV
)
3876 cur_frame
= image
->current_frame
+1;
3879 while(cur_frame
!= active_frame
) {
3880 hr
= IWICBitmapDecoder_GetFrame(bitmap
->image
.decoder
, cur_frame
, &frame
);
3882 return hresult_to_status(hr
);
3883 disposal
= get_gif_frame_property(frame
, &GUID_MetadataFormatGCE
, disposalW
);
3885 if(disposal
==GIF_DISPOSE_UNSPECIFIED
|| disposal
==GIF_DISPOSE_DO_NOT_DISPOSE
) {
3886 hr
= blit_gif_frame(bitmap
, frame
, cur_frame
==0);
3888 return hresult_to_status(hr
);
3889 }else if(disposal
== GIF_DISPOSE_RESTORE_TO_BKGND
) {
3890 UINT left
, top
, width
, height
, i
, j
;
3893 bgcolor
= get_gif_background_color(bitmap
);
3897 hr
= get_gif_frame_rect(frame
, &left
, &top
, &width
, &height
);
3899 return hresult_to_status(hr
);
3900 for(i
=top
; i
<top
+height
&& i
<bitmap
->height
; i
++) {
3901 DWORD
*bits
= (DWORD
*)(bitmap
->bits
+i
*bitmap
->stride
);
3902 for(j
=left
; j
<left
+width
&& j
<bitmap
->width
; j
++)
3907 IWICBitmapFrameDecode_Release(frame
);
3911 hr
= IWICBitmapDecoder_GetFrame(bitmap
->image
.decoder
, active_frame
, &frame
);
3913 return hresult_to_status(hr
);
3915 hr
= blit_gif_frame(bitmap
, frame
, cur_frame
==0);
3916 IWICBitmapFrameDecode_Release(frame
);
3918 return hresult_to_status(hr
);
3920 image
->current_frame
= active_frame
;
3924 static GpStatus
decode_image_icon(IStream
* stream
, GpImage
**image
)
3926 return decode_image_wic(stream
, &GUID_ContainerFormatIco
, NULL
, image
);
3929 static GpStatus
decode_image_bmp(IStream
* stream
, GpImage
**image
)
3934 status
= decode_image_wic(stream
, &GUID_ContainerFormatBmp
, NULL
, image
);
3936 bitmap
= (GpBitmap
*)*image
;
3938 if (status
== Ok
&& bitmap
->format
== PixelFormat32bppARGB
)
3940 /* WIC supports bmp files with alpha, but gdiplus does not */
3941 bitmap
->format
= PixelFormat32bppRGB
;
3947 static GpStatus
decode_image_jpeg(IStream
* stream
, GpImage
**image
)
3949 return decode_image_wic(stream
, &GUID_ContainerFormatJpeg
, NULL
, image
);
3952 static GpStatus
decode_image_png(IStream
* stream
, GpImage
**image
)
3954 IWICBitmapDecoder
*decoder
;
3955 IWICBitmapFrameDecode
*frame
;
3959 BOOL force_conversion
= FALSE
;
3961 status
= initialize_decoder_wic(stream
, &GUID_ContainerFormatPng
, &decoder
);
3965 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
3968 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &format
);
3971 if (IsEqualGUID(&format
, &GUID_WICPixelFormat8bppGray
))
3972 force_conversion
= TRUE
;
3973 status
= decode_frame_wic(decoder
, force_conversion
, 0, png_metadata_reader
, image
);
3976 status
= hresult_to_status(hr
);
3978 IWICBitmapFrameDecode_Release(frame
);
3981 status
= hresult_to_status(hr
);
3983 IWICBitmapDecoder_Release(decoder
);
3987 static GpStatus
decode_image_gif(IStream
* stream
, GpImage
**image
)
3989 IWICBitmapDecoder
*decoder
;
3994 status
= initialize_decoder_wic(stream
, &GUID_ContainerFormatGif
, &decoder
);
3998 hr
= IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
4000 return hresult_to_status(hr
);
4002 status
= decode_frame_wic(decoder
, frame_count
> 1, 0, gif_metadata_reader
, image
);
4003 IWICBitmapDecoder_Release(decoder
);
4007 if(frame_count
> 1) {
4008 heap_free((*image
)->palette
);
4009 (*image
)->palette
= NULL
;
4014 static GpStatus
decode_image_tiff(IStream
* stream
, GpImage
**image
)
4016 return decode_image_wic(stream
, &GUID_ContainerFormatTiff
, NULL
, image
);
4019 static GpStatus
load_wmf(IStream
*stream
, GpMetafile
**metafile
)
4021 WmfPlaceableFileHeader pfh
;
4022 BOOL is_placeable
= FALSE
;
4031 hr
= IStream_Read(stream
, &mh
, sizeof(mh
), &size
);
4032 if (hr
!= S_OK
|| size
!= sizeof(mh
))
4033 return GenericError
;
4035 if (((WmfPlaceableFileHeader
*)&mh
)->Key
== WMF_PLACEABLE_KEY
)
4038 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
4039 if (FAILED(hr
)) return hresult_to_status(hr
);
4041 hr
= IStream_Read(stream
, &pfh
, sizeof(pfh
), &size
);
4042 if (hr
!= S_OK
|| size
!= sizeof(pfh
))
4043 return GenericError
;
4045 hr
= IStream_Read(stream
, &mh
, sizeof(mh
), &size
);
4046 if (hr
!= S_OK
|| size
!= sizeof(mh
))
4047 return GenericError
;
4049 is_placeable
= TRUE
;
4052 seek
.QuadPart
= is_placeable
? sizeof(pfh
) : 0;
4053 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
4054 if (FAILED(hr
)) return hresult_to_status(hr
);
4056 buf
= heap_alloc(mh
.mtSize
* 2);
4057 if (!buf
) return OutOfMemory
;
4059 hr
= IStream_Read(stream
, buf
, mh
.mtSize
* 2, &size
);
4060 if (hr
!= S_OK
|| size
!= mh
.mtSize
* 2)
4063 return GenericError
;
4066 hmf
= SetMetaFileBitsEx(mh
.mtSize
* 2, buf
);
4069 return GenericError
;
4071 status
= GdipCreateMetafileFromWmf(hmf
, TRUE
, is_placeable
? &pfh
: NULL
, metafile
);
4073 DeleteMetaFile(hmf
);
4077 static GpStatus
decode_image_wmf(IStream
*stream
, GpImage
**image
)
4079 GpMetafile
*metafile
;
4082 TRACE("%p %p\n", stream
, image
);
4084 if (!stream
|| !image
)
4085 return InvalidParameter
;
4087 status
= load_wmf(stream
, &metafile
);
4090 TRACE("Could not load metafile\n");
4094 *image
= (GpImage
*)metafile
;
4095 TRACE("<-- %p\n", *image
);
4100 static GpStatus
load_emf(IStream
*stream
, GpMetafile
**metafile
)
4110 hr
= IStream_Read(stream
, &emh
, sizeof(emh
), &size
);
4111 if (hr
!= S_OK
|| size
!= sizeof(emh
) || emh
.dSignature
!= ENHMETA_SIGNATURE
)
4112 return GenericError
;
4115 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
4116 if (FAILED(hr
)) return hresult_to_status(hr
);
4118 buf
= heap_alloc(emh
.nBytes
);
4119 if (!buf
) return OutOfMemory
;
4121 hr
= IStream_Read(stream
, buf
, emh
.nBytes
, &size
);
4122 if (hr
!= S_OK
|| size
!= emh
.nBytes
)
4125 return GenericError
;
4128 hemf
= SetEnhMetaFileBits(emh
.nBytes
, buf
);
4131 return GenericError
;
4133 status
= GdipCreateMetafileFromEmf(hemf
, TRUE
, metafile
);
4135 DeleteEnhMetaFile(hemf
);
4139 static GpStatus
decode_image_emf(IStream
*stream
, GpImage
**image
)
4141 GpMetafile
*metafile
;
4144 TRACE("%p %p\n", stream
, image
);
4146 if (!stream
|| !image
)
4147 return InvalidParameter
;
4149 status
= load_emf(stream
, &metafile
);
4152 TRACE("Could not load metafile\n");
4156 *image
= (GpImage
*)metafile
;
4157 TRACE("<-- %p\n", *image
);
4162 typedef GpStatus (*encode_image_func
)(GpImage
*image
, IStream
* stream
,
4163 GDIPCONST EncoderParameters
* params
);
4165 typedef GpStatus (*decode_image_func
)(IStream
*stream
, GpImage
**image
);
4167 typedef GpStatus (*select_image_func
)(GpImage
*image
, UINT active_frame
);
4169 typedef struct image_codec
{
4170 ImageCodecInfo info
;
4171 encode_image_func encode_func
;
4172 decode_image_func decode_func
;
4173 select_image_func select_func
;
4188 static const struct image_codec codecs
[NUM_CODECS
];
4190 static GpStatus
get_decoder_info(IStream
* stream
, const struct image_codec
**result
)
4193 const BYTE
*pattern
, *mask
;
4200 /* seek to the start of the stream */
4202 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
4203 if (FAILED(hr
)) return hresult_to_status(hr
);
4205 /* read the first 8 bytes */
4206 /* FIXME: This assumes all codecs have signatures <= 8 bytes in length */
4207 hr
= IStream_Read(stream
, signature
, 8, &bytesread
);
4208 if (FAILED(hr
)) return hresult_to_status(hr
);
4209 if (hr
== S_FALSE
|| bytesread
== 0) return GenericError
;
4211 for (i
= 0; i
< NUM_CODECS
; i
++) {
4212 if ((codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
) &&
4213 bytesread
>= codecs
[i
].info
.SigSize
)
4215 for (sig
=0; sig
<codecs
[i
].info
.SigCount
; sig
++)
4217 pattern
= &codecs
[i
].info
.SigPattern
[codecs
[i
].info
.SigSize
*sig
];
4218 mask
= &codecs
[i
].info
.SigMask
[codecs
[i
].info
.SigSize
*sig
];
4219 for (j
=0; j
<codecs
[i
].info
.SigSize
; j
++)
4220 if ((signature
[j
] & mask
[j
]) != pattern
[j
])
4222 if (j
== codecs
[i
].info
.SigSize
)
4224 *result
= &codecs
[i
];
4231 TRACE("no match for %i byte signature %x %x %x %x %x %x %x %x\n", bytesread
,
4232 signature
[0],signature
[1],signature
[2],signature
[3],
4233 signature
[4],signature
[5],signature
[6],signature
[7]);
4235 return GenericError
;
4238 static GpStatus
get_decoder_info_from_image(GpImage
*image
, const struct image_codec
**result
)
4242 for (i
= 0; i
< NUM_CODECS
; i
++) {
4243 if ((codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
) &&
4244 IsEqualIID(&codecs
[i
].info
.FormatID
, &image
->format
))
4246 *result
= &codecs
[i
];
4251 TRACE("no match for format: %s\n", wine_dbgstr_guid(&image
->format
));
4252 return GenericError
;
4255 GpStatus WINGDIPAPI
GdipImageSelectActiveFrame(GpImage
*image
, GDIPCONST GUID
*dimensionID
,
4259 const struct image_codec
*codec
= NULL
;
4262 TRACE("(%p,%s,%u)\n", image
, debugstr_guid(dimensionID
), frame
);
4264 if (!image
|| !dimensionID
)
4265 return InvalidParameter
;
4266 if(!image_lock(image
, &unlock
))
4269 if (frame
>= image
->frame_count
)
4271 WARN("requested frame %u, but image has only %u\n", frame
, image
->frame_count
);
4272 image_unlock(image
, unlock
);
4273 return InvalidParameter
;
4276 if (image
->type
!= ImageTypeBitmap
&& image
->type
!= ImageTypeMetafile
)
4278 WARN("invalid image type %d\n", image
->type
);
4279 image_unlock(image
, unlock
);
4280 return InvalidParameter
;
4283 if (image
->current_frame
== frame
)
4285 image_unlock(image
, unlock
);
4289 if (!image
->decoder
)
4291 TRACE("image doesn't have an associated decoder\n");
4292 image_unlock(image
, unlock
);
4296 /* choose an appropriate image decoder */
4297 stat
= get_decoder_info_from_image(image
, &codec
);
4300 WARN("can't find decoder info\n");
4301 image_unlock(image
, unlock
);
4305 stat
= codec
->select_func(image
, frame
);
4306 image_unlock(image
, unlock
);
4310 GpStatus WINGDIPAPI
GdipLoadImageFromStream(IStream
*stream
, GpImage
**image
)
4315 const struct image_codec
*codec
=NULL
;
4317 TRACE("%p %p\n", stream
, image
);
4319 if (!stream
|| !image
)
4320 return InvalidParameter
;
4322 /* choose an appropriate image decoder */
4323 stat
= get_decoder_info(stream
, &codec
);
4324 if (stat
!= Ok
) return stat
;
4326 /* seek to the start of the stream */
4328 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
4329 if (FAILED(hr
)) return hresult_to_status(hr
);
4331 /* call on the image decoder to do the real work */
4332 stat
= codec
->decode_func(stream
, image
);
4334 /* take note of the original data format */
4337 memcpy(&(*image
)->format
, &codec
->info
.FormatID
, sizeof(GUID
));
4345 GpStatus WINGDIPAPI
GdipLoadImageFromStreamICM(IStream
* stream
, GpImage
**image
)
4347 TRACE("%p %p\n", stream
, image
);
4349 return GdipLoadImageFromStream(stream
, image
);
4352 GpStatus WINGDIPAPI
GdipRemovePropertyItem(GpImage
*image
, PROPID propId
)
4356 TRACE("(%p,%u)\n", image
, propId
);
4359 return InvalidParameter
;
4362 FIXME("not implemented\n");
4364 return NotImplemented
;
4367 GpStatus WINGDIPAPI
GdipSetPropertyItem(GpImage
*image
, GDIPCONST PropertyItem
* item
)
4371 if (!image
|| !item
) return InvalidParameter
;
4373 TRACE("(%p,%p:%#x,%u,%u,%p)\n", image
, item
, item
->id
, item
->type
, item
->length
, item
->value
);
4376 FIXME("not implemented\n");
4381 GpStatus WINGDIPAPI
GdipSaveImageToFile(GpImage
*image
, GDIPCONST WCHAR
* filename
,
4382 GDIPCONST CLSID
*clsidEncoder
,
4383 GDIPCONST EncoderParameters
*encoderParams
)
4388 TRACE("%p (%s) %p %p\n", image
, debugstr_w(filename
), clsidEncoder
, encoderParams
);
4390 if (!image
|| !filename
|| !clsidEncoder
)
4391 return InvalidParameter
;
4393 stat
= GdipCreateStreamOnFile(filename
, GENERIC_WRITE
, &stream
);
4395 return GenericError
;
4397 stat
= GdipSaveImageToStream(image
, stream
, clsidEncoder
, encoderParams
);
4399 IStream_Release(stream
);
4403 /*************************************************************************
4404 * Encoding functions -
4405 * These functions encode an image in different image file formats.
4408 static GpStatus
encode_image_wic(GpImage
*image
, IStream
* stream
,
4409 REFGUID container
, GDIPCONST EncoderParameters
* params
)
4413 IWICImagingFactory
*factory
;
4414 IWICBitmapEncoder
*encoder
;
4415 IWICBitmapFrameEncode
*frameencode
;
4416 IPropertyBag2
*encoderoptions
;
4419 PixelFormat gdipformat
=0;
4420 const WICPixelFormatGUID
*desired_wicformat
;
4421 WICPixelFormatGUID wicformat
;
4423 BitmapData lockeddata
;
4426 if (image
->type
!= ImageTypeBitmap
)
4427 return GenericError
;
4429 bitmap
= (GpBitmap
*)image
;
4431 GdipGetImageWidth(image
, &width
);
4432 GdipGetImageHeight(image
, &height
);
4439 hr
= WICCreateImagingFactory_Proxy(WINCODEC_SDK_VERSION
, &factory
);
4441 return hresult_to_status(hr
);
4442 hr
= IWICImagingFactory_CreateEncoder(factory
, container
, NULL
, &encoder
);
4443 IWICImagingFactory_Release(factory
);
4445 return hresult_to_status(hr
);
4447 hr
= IWICBitmapEncoder_Initialize(encoder
, stream
, WICBitmapEncoderNoCache
);
4451 hr
= IWICBitmapEncoder_CreateNewFrame(encoder
, &frameencode
, &encoderoptions
);
4454 if (SUCCEEDED(hr
)) /* created frame */
4456 hr
= IWICBitmapFrameEncode_Initialize(frameencode
, encoderoptions
);
4459 hr
= IWICBitmapFrameEncode_SetSize(frameencode
, width
, height
);
4462 hr
= IWICBitmapFrameEncode_SetResolution(frameencode
, image
->xres
, image
->yres
);
4466 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
4468 if (pixel_formats
[i
].gdip_format
== bitmap
->format
)
4470 desired_wicformat
= pixel_formats
[i
].wic_format
;
4471 gdipformat
= bitmap
->format
;
4477 desired_wicformat
= &GUID_WICPixelFormat32bppBGRA
;
4478 gdipformat
= PixelFormat32bppARGB
;
4481 memcpy(&wicformat
, desired_wicformat
, sizeof(GUID
));
4482 hr
= IWICBitmapFrameEncode_SetPixelFormat(frameencode
, &wicformat
);
4485 if (SUCCEEDED(hr
) && !IsEqualGUID(desired_wicformat
, &wicformat
))
4487 /* Encoder doesn't support this bitmap's format. */
4489 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
4491 if (IsEqualGUID(&wicformat
, pixel_formats
[i
].wic_format
))
4493 gdipformat
= pixel_formats
[i
].gdip_format
;
4499 ERR("Cannot support encoder format %s\n", debugstr_guid(&wicformat
));
4506 stat
= GdipBitmapLockBits(bitmap
, &rc
, ImageLockModeRead
, gdipformat
,
4511 UINT row_size
= (lockeddata
.Width
* PIXELFORMATBPP(gdipformat
) + 7)/8;
4514 /* write one row at a time in case stride is negative */
4515 row
= lockeddata
.Scan0
;
4516 for (i
=0; i
<lockeddata
.Height
; i
++)
4518 hr
= IWICBitmapFrameEncode_WritePixels(frameencode
, 1, row_size
, row_size
, row
);
4519 if (FAILED(hr
)) break;
4520 row
+= lockeddata
.Stride
;
4523 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
4530 hr
= IWICBitmapFrameEncode_Commit(frameencode
);
4532 IWICBitmapFrameEncode_Release(frameencode
);
4533 IPropertyBag2_Release(encoderoptions
);
4537 hr
= IWICBitmapEncoder_Commit(encoder
);
4539 IWICBitmapEncoder_Release(encoder
);
4540 return hresult_to_status(hr
);
4543 static GpStatus
encode_image_BMP(GpImage
*image
, IStream
* stream
,
4544 GDIPCONST EncoderParameters
* params
)
4546 return encode_image_wic(image
, stream
, &GUID_ContainerFormatBmp
, params
);
4549 static GpStatus
encode_image_tiff(GpImage
*image
, IStream
* stream
,
4550 GDIPCONST EncoderParameters
* params
)
4552 return encode_image_wic(image
, stream
, &GUID_ContainerFormatTiff
, params
);
4555 GpStatus
encode_image_png(GpImage
*image
, IStream
* stream
,
4556 GDIPCONST EncoderParameters
* params
)
4558 return encode_image_wic(image
, stream
, &GUID_ContainerFormatPng
, params
);
4561 static GpStatus
encode_image_jpeg(GpImage
*image
, IStream
* stream
,
4562 GDIPCONST EncoderParameters
* params
)
4564 return encode_image_wic(image
, stream
, &GUID_ContainerFormatJpeg
, params
);
4567 static GpStatus
encode_image_gif(GpImage
*image
, IStream
* stream
,
4568 GDIPCONST EncoderParameters
* params
)
4570 return encode_image_wic(image
, stream
, &CLSID_WICGifEncoder
, params
);
4573 /*****************************************************************************
4574 * GdipSaveImageToStream [GDIPLUS.@]
4576 GpStatus WINGDIPAPI
GdipSaveImageToStream(GpImage
*image
, IStream
* stream
,
4577 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4580 encode_image_func encode_image
;
4583 TRACE("%p %p %p %p\n", image
, stream
, clsid
, params
);
4585 if(!image
|| !stream
)
4586 return InvalidParameter
;
4588 /* select correct encoder */
4589 encode_image
= NULL
;
4590 for (i
= 0; i
< NUM_CODECS
; i
++) {
4591 if ((codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
) &&
4592 IsEqualCLSID(clsid
, &codecs
[i
].info
.Clsid
))
4593 encode_image
= codecs
[i
].encode_func
;
4595 if (encode_image
== NULL
)
4596 return UnknownImageFormat
;
4598 stat
= encode_image(image
, stream
, params
);
4603 /*****************************************************************************
4604 * GdipSaveAdd [GDIPLUS.@]
4606 GpStatus WINGDIPAPI
GdipSaveAdd(GpImage
*image
, GDIPCONST EncoderParameters
*params
)
4608 FIXME("(%p,%p): stub\n", image
, params
);
4612 /*****************************************************************************
4613 * GdipGetImagePalette [GDIPLUS.@]
4615 GpStatus WINGDIPAPI
GdipGetImagePalette(GpImage
*image
, ColorPalette
*palette
, INT size
)
4619 TRACE("(%p,%p,%i)\n", image
, palette
, size
);
4621 if (!image
|| !palette
)
4622 return InvalidParameter
;
4624 count
= image
->palette
? image
->palette
->Count
: 0;
4626 if (size
< (sizeof(UINT
)*2+sizeof(ARGB
)*count
))
4628 TRACE("<-- InsufficientBuffer\n");
4629 return InsufficientBuffer
;
4634 palette
->Flags
= image
->palette
->Flags
;
4635 palette
->Count
= image
->palette
->Count
;
4636 memcpy(palette
->Entries
, image
->palette
->Entries
, sizeof(ARGB
)*image
->palette
->Count
);
4646 /*****************************************************************************
4647 * GdipSetImagePalette [GDIPLUS.@]
4649 GpStatus WINGDIPAPI
GdipSetImagePalette(GpImage
*image
,
4650 GDIPCONST ColorPalette
*palette
)
4652 ColorPalette
*new_palette
;
4654 TRACE("(%p,%p)\n", image
, palette
);
4656 if(!image
|| !palette
|| palette
->Count
> 256)
4657 return InvalidParameter
;
4659 new_palette
= heap_alloc_zero(2 * sizeof(UINT
) + palette
->Count
* sizeof(ARGB
));
4660 if (!new_palette
) return OutOfMemory
;
4662 heap_free(image
->palette
);
4663 image
->palette
= new_palette
;
4664 image
->palette
->Flags
= palette
->Flags
;
4665 image
->palette
->Count
= palette
->Count
;
4666 memcpy(image
->palette
->Entries
, palette
->Entries
, sizeof(ARGB
)*palette
->Count
);
4671 /*************************************************************************
4673 * Structures that represent which formats we support for encoding.
4676 /* ImageCodecInfo creation routines taken from libgdiplus */
4677 static const WCHAR bmp_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'B', 'M', 'P', 0}; /* Built-in BMP */
4678 static const WCHAR bmp_extension
[] = {'*','.','B', 'M', 'P',';', '*','.', 'D','I', 'B',';', '*','.', 'R', 'L', 'E',0}; /* *.BMP;*.DIB;*.RLE */
4679 static const WCHAR bmp_mimetype
[] = {'i', 'm', 'a','g', 'e', '/', 'b', 'm', 'p', 0}; /* image/bmp */
4680 static const WCHAR bmp_format
[] = {'B', 'M', 'P', 0}; /* BMP */
4681 static const BYTE bmp_sig_pattern
[] = { 0x42, 0x4D };
4682 static const BYTE bmp_sig_mask
[] = { 0xFF, 0xFF };
4684 static const WCHAR jpeg_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'J','P','E','G', 0};
4685 static const WCHAR jpeg_extension
[] = {'*','.','J','P','G',';', '*','.','J','P','E','G',';', '*','.','J','P','E',';', '*','.','J','F','I','F',0};
4686 static const WCHAR jpeg_mimetype
[] = {'i','m','a','g','e','/','j','p','e','g', 0};
4687 static const WCHAR jpeg_format
[] = {'J','P','E','G',0};
4688 static const BYTE jpeg_sig_pattern
[] = { 0xFF, 0xD8 };
4689 static const BYTE jpeg_sig_mask
[] = { 0xFF, 0xFF };
4691 static const WCHAR gif_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'G','I','F', 0};
4692 static const WCHAR gif_extension
[] = {'*','.','G','I','F',0};
4693 static const WCHAR gif_mimetype
[] = {'i','m','a','g','e','/','g','i','f', 0};
4694 static const WCHAR gif_format
[] = {'G','I','F',0};
4695 static const BYTE gif_sig_pattern
[12] = "GIF87aGIF89a";
4696 static const BYTE gif_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4698 static const WCHAR tiff_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'T','I','F','F', 0};
4699 static const WCHAR tiff_extension
[] = {'*','.','T','I','F','F',';','*','.','T','I','F',0};
4700 static const WCHAR tiff_mimetype
[] = {'i','m','a','g','e','/','t','i','f','f', 0};
4701 static const WCHAR tiff_format
[] = {'T','I','F','F',0};
4702 static const BYTE tiff_sig_pattern
[] = {0x49,0x49,42,0,0x4d,0x4d,0,42};
4703 static const BYTE tiff_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4705 static const WCHAR emf_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'E','M','F', 0};
4706 static const WCHAR emf_extension
[] = {'*','.','E','M','F',0};
4707 static const WCHAR emf_mimetype
[] = {'i','m','a','g','e','/','x','-','e','m','f', 0};
4708 static const WCHAR emf_format
[] = {'E','M','F',0};
4709 static const BYTE emf_sig_pattern
[] = { 0x01, 0x00, 0x00, 0x00 };
4710 static const BYTE emf_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF };
4712 static const WCHAR wmf_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'W','M','F', 0};
4713 static const WCHAR wmf_extension
[] = {'*','.','W','M','F',0};
4714 static const WCHAR wmf_mimetype
[] = {'i','m','a','g','e','/','x','-','w','m','f', 0};
4715 static const WCHAR wmf_format
[] = {'W','M','F',0};
4716 static const BYTE wmf_sig_pattern
[] = { 0xd7, 0xcd };
4717 static const BYTE wmf_sig_mask
[] = { 0xFF, 0xFF };
4719 static const WCHAR png_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'P','N','G', 0};
4720 static const WCHAR png_extension
[] = {'*','.','P','N','G',0};
4721 static const WCHAR png_mimetype
[] = {'i','m','a','g','e','/','p','n','g', 0};
4722 static const WCHAR png_format
[] = {'P','N','G',0};
4723 static const BYTE png_sig_pattern
[] = { 137, 80, 78, 71, 13, 10, 26, 10, };
4724 static const BYTE png_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4726 static const WCHAR ico_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'I','C','O', 0};
4727 static const WCHAR ico_extension
[] = {'*','.','I','C','O',0};
4728 static const WCHAR ico_mimetype
[] = {'i','m','a','g','e','/','x','-','i','c','o','n', 0};
4729 static const WCHAR ico_format
[] = {'I','C','O',0};
4730 static const BYTE ico_sig_pattern
[] = { 0x00, 0x00, 0x01, 0x00 };
4731 static const BYTE ico_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF };
4733 static const struct image_codec codecs
[NUM_CODECS
] = {
4736 /* Clsid */ { 0x557cf400, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4737 /* FormatID */ { 0xb96b3cabU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4738 /* CodecName */ bmp_codecname
,
4740 /* FormatDescription */ bmp_format
,
4741 /* FilenameExtension */ bmp_extension
,
4742 /* MimeType */ bmp_mimetype
,
4743 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4747 /* SigPattern */ bmp_sig_pattern
,
4748 /* SigMask */ bmp_sig_mask
,
4756 /* Clsid */ { 0x557cf401, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4757 /* FormatID */ { 0xb96b3caeU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4758 /* CodecName */ jpeg_codecname
,
4760 /* FormatDescription */ jpeg_format
,
4761 /* FilenameExtension */ jpeg_extension
,
4762 /* MimeType */ jpeg_mimetype
,
4763 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4767 /* SigPattern */ jpeg_sig_pattern
,
4768 /* SigMask */ jpeg_sig_mask
,
4776 /* Clsid */ { 0x557cf402, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4777 /* FormatID */ { 0xb96b3cb0U
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4778 /* CodecName */ gif_codecname
,
4780 /* FormatDescription */ gif_format
,
4781 /* FilenameExtension */ gif_extension
,
4782 /* MimeType */ gif_mimetype
,
4783 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsEncoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4787 /* SigPattern */ gif_sig_pattern
,
4788 /* SigMask */ gif_sig_mask
,
4796 /* Clsid */ { 0x557cf405, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4797 /* FormatID */ { 0xb96b3cb1U
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4798 /* CodecName */ tiff_codecname
,
4800 /* FormatDescription */ tiff_format
,
4801 /* FilenameExtension */ tiff_extension
,
4802 /* MimeType */ tiff_mimetype
,
4803 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsEncoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4807 /* SigPattern */ tiff_sig_pattern
,
4808 /* SigMask */ tiff_sig_mask
,
4816 /* Clsid */ { 0x557cf403, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4817 /* FormatID */ { 0xb96b3cacU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4818 /* CodecName */ emf_codecname
,
4820 /* FormatDescription */ emf_format
,
4821 /* FilenameExtension */ emf_extension
,
4822 /* MimeType */ emf_mimetype
,
4823 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportVector
| ImageCodecFlagsBuiltin
,
4827 /* SigPattern */ emf_sig_pattern
,
4828 /* SigMask */ emf_sig_mask
,
4836 /* Clsid */ { 0x557cf404, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4837 /* FormatID */ { 0xb96b3cadU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4838 /* CodecName */ wmf_codecname
,
4840 /* FormatDescription */ wmf_format
,
4841 /* FilenameExtension */ wmf_extension
,
4842 /* MimeType */ wmf_mimetype
,
4843 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportVector
| ImageCodecFlagsBuiltin
,
4847 /* SigPattern */ wmf_sig_pattern
,
4848 /* SigMask */ wmf_sig_mask
,
4856 /* Clsid */ { 0x557cf406, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4857 /* FormatID */ { 0xb96b3cafU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4858 /* CodecName */ png_codecname
,
4860 /* FormatDescription */ png_format
,
4861 /* FilenameExtension */ png_extension
,
4862 /* MimeType */ png_mimetype
,
4863 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4867 /* SigPattern */ png_sig_pattern
,
4868 /* SigMask */ png_sig_mask
,
4876 /* Clsid */ { 0x557cf407, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4877 /* FormatID */ { 0xb96b3cabU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4878 /* CodecName */ ico_codecname
,
4880 /* FormatDescription */ ico_format
,
4881 /* FilenameExtension */ ico_extension
,
4882 /* MimeType */ ico_mimetype
,
4883 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4887 /* SigPattern */ ico_sig_pattern
,
4888 /* SigMask */ ico_sig_mask
,
4896 /*****************************************************************************
4897 * GdipGetImageDecodersSize [GDIPLUS.@]
4899 GpStatus WINGDIPAPI
GdipGetImageDecodersSize(UINT
*numDecoders
, UINT
*size
)
4901 int decoder_count
=0;
4903 TRACE("%p %p\n", numDecoders
, size
);
4905 if (!numDecoders
|| !size
)
4906 return InvalidParameter
;
4908 for (i
=0; i
<NUM_CODECS
; i
++)
4910 if (codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
)
4914 *numDecoders
= decoder_count
;
4915 *size
= decoder_count
* sizeof(ImageCodecInfo
);
4920 /*****************************************************************************
4921 * GdipGetImageDecoders [GDIPLUS.@]
4923 GpStatus WINGDIPAPI
GdipGetImageDecoders(UINT numDecoders
, UINT size
, ImageCodecInfo
*decoders
)
4925 int i
, decoder_count
=0;
4926 TRACE("%u %u %p\n", numDecoders
, size
, decoders
);
4929 size
!= numDecoders
* sizeof(ImageCodecInfo
))
4930 return GenericError
;
4932 for (i
=0; i
<NUM_CODECS
; i
++)
4934 if (codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
)
4936 if (decoder_count
== numDecoders
) return GenericError
;
4937 memcpy(&decoders
[decoder_count
], &codecs
[i
].info
, sizeof(ImageCodecInfo
));
4942 if (decoder_count
< numDecoders
) return GenericError
;
4947 /*****************************************************************************
4948 * GdipGetImageEncodersSize [GDIPLUS.@]
4950 GpStatus WINGDIPAPI
GdipGetImageEncodersSize(UINT
*numEncoders
, UINT
*size
)
4952 int encoder_count
=0;
4954 TRACE("%p %p\n", numEncoders
, size
);
4956 if (!numEncoders
|| !size
)
4957 return InvalidParameter
;
4959 for (i
=0; i
<NUM_CODECS
; i
++)
4961 if (codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
)
4965 *numEncoders
= encoder_count
;
4966 *size
= encoder_count
* sizeof(ImageCodecInfo
);
4971 /*****************************************************************************
4972 * GdipGetImageEncoders [GDIPLUS.@]
4974 GpStatus WINGDIPAPI
GdipGetImageEncoders(UINT numEncoders
, UINT size
, ImageCodecInfo
*encoders
)
4976 int i
, encoder_count
=0;
4977 TRACE("%u %u %p\n", numEncoders
, size
, encoders
);
4980 size
!= numEncoders
* sizeof(ImageCodecInfo
))
4981 return GenericError
;
4983 for (i
=0; i
<NUM_CODECS
; i
++)
4985 if (codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
)
4987 if (encoder_count
== numEncoders
) return GenericError
;
4988 memcpy(&encoders
[encoder_count
], &codecs
[i
].info
, sizeof(ImageCodecInfo
));
4993 if (encoder_count
< numEncoders
) return GenericError
;
4998 GpStatus WINGDIPAPI
GdipGetEncoderParameterListSize(GpImage
*image
,
4999 GDIPCONST CLSID
* clsidEncoder
, UINT
*size
)
5003 TRACE("(%p,%s,%p)\n", image
, debugstr_guid(clsidEncoder
), size
);
5006 FIXME("not implemented\n");
5010 return NotImplemented
;
5013 static PixelFormat
get_16bpp_format(HBITMAP hbm
)
5019 hdc
= CreateCompatibleDC(NULL
);
5021 memset(&bmh
, 0, sizeof(bmh
));
5022 bmh
.bV4Size
= sizeof(bmh
);
5025 bmh
.bV4V4Compression
= BI_BITFIELDS
;
5026 bmh
.bV4BitCount
= 16;
5028 GetDIBits(hdc
, hbm
, 0, 0, NULL
, (BITMAPINFO
*)&bmh
, DIB_RGB_COLORS
);
5030 if (bmh
.bV4RedMask
== 0x7c00 &&
5031 bmh
.bV4GreenMask
== 0x3e0 &&
5032 bmh
.bV4BlueMask
== 0x1f)
5034 result
= PixelFormat16bppRGB555
;
5036 else if (bmh
.bV4RedMask
== 0xf800 &&
5037 bmh
.bV4GreenMask
== 0x7e0 &&
5038 bmh
.bV4BlueMask
== 0x1f)
5040 result
= PixelFormat16bppRGB565
;
5044 FIXME("unrecognized bitfields %x,%x,%x\n", bmh
.bV4RedMask
,
5045 bmh
.bV4GreenMask
, bmh
.bV4BlueMask
);
5046 result
= PixelFormatUndefined
;
5054 /*****************************************************************************
5055 * GdipCreateBitmapFromHBITMAP [GDIPLUS.@]
5057 GpStatus WINGDIPAPI
GdipCreateBitmapFromHBITMAP(HBITMAP hbm
, HPALETTE hpal
, GpBitmap
** bitmap
)
5062 BitmapData lockeddata
;
5064 TRACE("%p %p %p\n", hbm
, hpal
, bitmap
);
5067 return InvalidParameter
;
5069 if (GetObjectA(hbm
, sizeof(bm
), &bm
) != sizeof(bm
))
5070 return InvalidParameter
;
5072 /* TODO: Figure out the correct format for 16, 32, 64 bpp */
5073 switch(bm
.bmBitsPixel
) {
5075 format
= PixelFormat1bppIndexed
;
5078 format
= PixelFormat4bppIndexed
;
5081 format
= PixelFormat8bppIndexed
;
5084 format
= get_16bpp_format(hbm
);
5085 if (format
== PixelFormatUndefined
)
5086 return InvalidParameter
;
5089 format
= PixelFormat24bppRGB
;
5092 format
= PixelFormat32bppRGB
;
5095 format
= PixelFormat48bppRGB
;
5098 FIXME("don't know how to handle %d bpp\n", bm
.bmBitsPixel
);
5099 return InvalidParameter
;
5102 retval
= GdipCreateBitmapFromScan0(bm
.bmWidth
, bm
.bmHeight
, 0,
5103 format
, NULL
, bitmap
);
5107 retval
= GdipBitmapLockBits(*bitmap
, NULL
, ImageLockModeWrite
,
5108 format
, &lockeddata
);
5112 char bmibuf
[FIELD_OFFSET(BITMAPINFO
, bmiColors
[256])];
5113 BITMAPINFO
*pbmi
= (BITMAPINFO
*)bmibuf
;
5116 hdc
= CreateCompatibleDC(NULL
);
5118 pbmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
5119 pbmi
->bmiHeader
.biBitCount
= 0;
5121 GetDIBits(hdc
, hbm
, 0, 0, NULL
, pbmi
, DIB_RGB_COLORS
);
5123 src_height
= abs(pbmi
->bmiHeader
.biHeight
);
5124 pbmi
->bmiHeader
.biHeight
= -src_height
;
5126 GetDIBits(hdc
, hbm
, 0, src_height
, lockeddata
.Scan0
, pbmi
, DIB_RGB_COLORS
);
5130 GdipBitmapUnlockBits(*bitmap
, &lockeddata
);
5133 if (retval
== Ok
&& hpal
)
5135 PALETTEENTRY entry
[256];
5136 ColorPalette
*palette
=NULL
;
5137 int i
, num_palette_entries
;
5139 num_palette_entries
= GetPaletteEntries(hpal
, 0, 256, entry
);
5140 if (!num_palette_entries
)
5141 retval
= GenericError
;
5143 palette
= heap_alloc_zero(sizeof(ColorPalette
) + sizeof(ARGB
) * (num_palette_entries
-1));
5145 retval
= OutOfMemory
;
5150 palette
->Count
= num_palette_entries
;
5152 for (i
=0; i
<num_palette_entries
; i
++)
5154 palette
->Entries
[i
] = 0xff000000 | entry
[i
].peRed
<< 16 |
5155 entry
[i
].peGreen
<< 8 | entry
[i
].peBlue
;
5158 retval
= GdipSetImagePalette(&(*bitmap
)->image
, palette
);
5166 GdipDisposeImage(&(*bitmap
)->image
);
5174 /*****************************************************************************
5175 * GdipCreateEffect [GDIPLUS.@]
5177 GpStatus WINGDIPAPI
GdipCreateEffect(const GUID guid
, CGpEffect
**effect
)
5179 FIXME("(%s, %p): stub\n", debugstr_guid(&guid
), effect
);
5182 return InvalidParameter
;
5186 return NotImplemented
;
5189 /*****************************************************************************
5190 * GdipDeleteEffect [GDIPLUS.@]
5192 GpStatus WINGDIPAPI
GdipDeleteEffect(CGpEffect
*effect
)
5194 FIXME("(%p): stub\n", effect
);
5195 /* note: According to Jose Roca's GDI+ Docs, this is not implemented
5196 * in Windows's gdiplus */
5197 return NotImplemented
;
5200 /*****************************************************************************
5201 * GdipSetEffectParameters [GDIPLUS.@]
5203 GpStatus WINGDIPAPI
GdipSetEffectParameters(CGpEffect
*effect
,
5204 const VOID
*params
, const UINT size
)
5208 TRACE("(%p,%p,%u)\n", effect
, params
, size
);
5211 FIXME("not implemented\n");
5213 return NotImplemented
;
5216 /*****************************************************************************
5217 * GdipGetImageFlags [GDIPLUS.@]
5219 GpStatus WINGDIPAPI
GdipGetImageFlags(GpImage
*image
, UINT
*flags
)
5221 TRACE("%p %p\n", image
, flags
);
5223 if(!image
|| !flags
)
5224 return InvalidParameter
;
5226 *flags
= image
->flags
;
5231 GpStatus WINGDIPAPI
GdipTestControl(GpTestControlEnum control
, void *param
)
5233 TRACE("(%d, %p)\n", control
, param
);
5236 case TestControlForceBilinear
:
5238 FIXME("TestControlForceBilinear not handled\n");
5240 case TestControlNoICM
:
5242 FIXME("TestControlNoICM not handled\n");
5244 case TestControlGetBuildNumber
:
5245 *((DWORD
*)param
) = 3102;
5252 GpStatus WINGDIPAPI
GdipImageForceValidation(GpImage
*image
)
5254 TRACE("%p\n", image
);
5259 /*****************************************************************************
5260 * GdipGetImageThumbnail [GDIPLUS.@]
5262 GpStatus WINGDIPAPI
GdipGetImageThumbnail(GpImage
*image
, UINT width
, UINT height
,
5263 GpImage
**ret_image
, GetThumbnailImageAbort cb
,
5267 GpGraphics
*graphics
;
5268 UINT srcwidth
, srcheight
;
5270 TRACE("(%p %u %u %p %p %p)\n",
5271 image
, width
, height
, ret_image
, cb
, cb_data
);
5273 if (!image
|| !ret_image
)
5274 return InvalidParameter
;
5276 if (!width
) width
= 120;
5277 if (!height
) height
= 120;
5279 GdipGetImageWidth(image
, &srcwidth
);
5280 GdipGetImageHeight(image
, &srcheight
);
5282 stat
= GdipCreateBitmapFromScan0(width
, height
, 0, PixelFormat32bppPARGB
,
5283 NULL
, (GpBitmap
**)ret_image
);
5287 stat
= GdipGetImageGraphicsContext(*ret_image
, &graphics
);
5291 stat
= GdipDrawImageRectRectI(graphics
, image
,
5292 0, 0, width
, height
, 0, 0, srcwidth
, srcheight
, UnitPixel
,
5295 GdipDeleteGraphics(graphics
);
5300 GdipDisposeImage(*ret_image
);
5308 /*****************************************************************************
5309 * GdipImageRotateFlip [GDIPLUS.@]
5311 GpStatus WINGDIPAPI
GdipImageRotateFlip(GpImage
*image
, RotateFlipType type
)
5313 GpBitmap
*new_bitmap
;
5315 int bpp
, bytesperpixel
;
5316 BOOL rotate_90
, flip_x
, flip_y
;
5317 int src_x_offset
, src_y_offset
;
5319 UINT x
, y
, width
, height
;
5320 BitmapData src_lock
, dst_lock
;
5324 TRACE("(%p, %u)\n", image
, type
);
5327 return InvalidParameter
;
5328 if (!image_lock(image
, &unlock
))
5332 flip_x
= (type
&6) == 2 || (type
&6) == 4;
5333 flip_y
= (type
&3) == 1 || (type
&3) == 2;
5335 if (image
->type
!= ImageTypeBitmap
)
5337 FIXME("Not implemented for type %i\n", image
->type
);
5338 image_unlock(image
, unlock
);
5339 return NotImplemented
;
5342 bitmap
= (GpBitmap
*)image
;
5343 bpp
= PIXELFORMATBPP(bitmap
->format
);
5347 FIXME("Not implemented for %i bit images\n", bpp
);
5348 image_unlock(image
, unlock
);
5349 return NotImplemented
;
5354 width
= bitmap
->height
;
5355 height
= bitmap
->width
;
5359 width
= bitmap
->width
;
5360 height
= bitmap
->height
;
5363 bytesperpixel
= bpp
/8;
5365 stat
= GdipCreateBitmapFromScan0(width
, height
, 0, bitmap
->format
, NULL
, &new_bitmap
);
5369 image_unlock(image
, unlock
);
5373 stat
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, bitmap
->format
, &src_lock
);
5377 stat
= GdipBitmapLockBits(new_bitmap
, NULL
, ImageLockModeWrite
, bitmap
->format
, &dst_lock
);
5381 LPBYTE src_row
, src_pixel
;
5382 LPBYTE dst_row
, dst_pixel
;
5384 src_origin
= src_lock
.Scan0
;
5385 if (flip_x
) src_origin
+= bytesperpixel
* (bitmap
->width
- 1);
5386 if (flip_y
) src_origin
+= src_lock
.Stride
* (bitmap
->height
- 1);
5390 if (flip_y
) src_x_offset
= -src_lock
.Stride
;
5391 else src_x_offset
= src_lock
.Stride
;
5392 if (flip_x
) src_y_offset
= -bytesperpixel
;
5393 else src_y_offset
= bytesperpixel
;
5397 if (flip_x
) src_x_offset
= -bytesperpixel
;
5398 else src_x_offset
= bytesperpixel
;
5399 if (flip_y
) src_y_offset
= -src_lock
.Stride
;
5400 else src_y_offset
= src_lock
.Stride
;
5403 src_row
= src_origin
;
5404 dst_row
= dst_lock
.Scan0
;
5405 for (y
=0; y
<height
; y
++)
5407 src_pixel
= src_row
;
5408 dst_pixel
= dst_row
;
5409 for (x
=0; x
<width
; x
++)
5411 /* FIXME: This could probably be faster without memcpy. */
5412 memcpy(dst_pixel
, src_pixel
, bytesperpixel
);
5413 dst_pixel
+= bytesperpixel
;
5414 src_pixel
+= src_x_offset
;
5416 src_row
+= src_y_offset
;
5417 dst_row
+= dst_lock
.Stride
;
5420 GdipBitmapUnlockBits(new_bitmap
, &dst_lock
);
5423 GdipBitmapUnlockBits(bitmap
, &src_lock
);
5427 move_bitmap(bitmap
, new_bitmap
, FALSE
);
5429 GdipDisposeImage(&new_bitmap
->image
);
5431 image_unlock(image
, unlock
);
5435 /*****************************************************************************
5436 * GdipImageSetAbort [GDIPLUS.@]
5438 GpStatus WINGDIPAPI
GdipImageSetAbort(GpImage
*image
, GdiplusAbort
*pabort
)
5440 TRACE("(%p, %p)\n", image
, pabort
);
5443 return InvalidParameter
;
5446 FIXME("Abort callback is not supported.\n");
5451 /*****************************************************************************
5452 * GdipBitmapConvertFormat [GDIPLUS.@]
5454 GpStatus WINGDIPAPI
GdipBitmapConvertFormat(GpBitmap
*bitmap
, PixelFormat format
, DitherType dithertype
,
5455 PaletteType palettetype
, ColorPalette
*palette
, REAL alphathreshold
)
5457 FIXME("(%p, 0x%08x, %d, %d, %p, %f): stub\n", bitmap
, format
, dithertype
, palettetype
, palette
, alphathreshold
);
5458 return NotImplemented
;
5461 static void set_histogram_point_argb(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5463 ch0
[ color
>> 24 ]++;
5464 ch1
[(color
>> 16) & 0xff]++;
5465 ch2
[(color
>> 8) & 0xff]++;
5466 ch3
[ color
& 0xff]++;
5469 static void set_histogram_point_pargb(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5471 BYTE alpha
= color
>> 24;
5474 ch1
[(((color
>> 16) & 0xff) * alpha
) / 0xff]++;
5475 ch2
[(((color
>> 8) & 0xff) * alpha
) / 0xff]++;
5476 ch3
[(( color
& 0xff) * alpha
) / 0xff]++;
5479 static void set_histogram_point_rgb(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5481 ch0
[(color
>> 16) & 0xff]++;
5482 ch1
[(color
>> 8) & 0xff]++;
5483 ch2
[ color
& 0xff]++;
5486 static void set_histogram_point_gray(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5488 ch0
[(76 * ((color
>> 16) & 0xff) + 150 * ((color
>> 8) & 0xff) + 29 * (color
& 0xff)) / 0xff]++;
5491 static void set_histogram_point_b(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5493 ch0
[color
& 0xff]++;
5496 static void set_histogram_point_g(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5498 ch0
[(color
>> 8) & 0xff]++;
5501 static void set_histogram_point_r(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5503 ch0
[(color
>> 16) & 0xff]++;
5506 static void set_histogram_point_a(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5508 ch0
[(color
>> 24) & 0xff]++;
5511 /*****************************************************************************
5512 * GdipBitmapGetHistogram [GDIPLUS.@]
5514 GpStatus WINGDIPAPI
GdipBitmapGetHistogram(GpBitmap
*bitmap
, HistogramFormat format
, UINT num_of_entries
,
5515 UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
)
5517 static void (* const set_histogram_point
[])(ARGB color
, UINT
*ch0
, UINT
*ch1
, UINT
*ch2
, UINT
*ch3
) =
5519 set_histogram_point_argb
,
5520 set_histogram_point_pargb
,
5521 set_histogram_point_rgb
,
5522 set_histogram_point_gray
,
5523 set_histogram_point_b
,
5524 set_histogram_point_g
,
5525 set_histogram_point_r
,
5526 set_histogram_point_a
,
5528 UINT width
, height
, x
, y
;
5530 TRACE("(%p, %d, %u, %p, %p, %p, %p)\n", bitmap
, format
, num_of_entries
,
5531 ch0
, ch1
, ch2
, ch3
);
5533 if (!bitmap
|| num_of_entries
!= 256)
5534 return InvalidParameter
;
5536 /* Make sure passed channel pointers match requested format */
5539 case HistogramFormatARGB
:
5540 case HistogramFormatPARGB
:
5541 if (!ch0
|| !ch1
|| !ch2
|| !ch3
)
5542 return InvalidParameter
;
5543 memset(ch0
, 0, num_of_entries
* sizeof(UINT
));
5544 memset(ch1
, 0, num_of_entries
* sizeof(UINT
));
5545 memset(ch2
, 0, num_of_entries
* sizeof(UINT
));
5546 memset(ch3
, 0, num_of_entries
* sizeof(UINT
));
5548 case HistogramFormatRGB
:
5549 if (!ch0
|| !ch1
|| !ch2
|| ch3
)
5550 return InvalidParameter
;
5551 memset(ch0
, 0, num_of_entries
* sizeof(UINT
));
5552 memset(ch1
, 0, num_of_entries
* sizeof(UINT
));
5553 memset(ch2
, 0, num_of_entries
* sizeof(UINT
));
5555 case HistogramFormatGray
:
5556 case HistogramFormatB
:
5557 case HistogramFormatG
:
5558 case HistogramFormatR
:
5559 case HistogramFormatA
:
5560 if (!ch0
|| ch1
|| ch2
|| ch3
)
5561 return InvalidParameter
;
5562 memset(ch0
, 0, num_of_entries
* sizeof(UINT
));
5565 WARN("Invalid histogram format requested, %d\n", format
);
5566 return InvalidParameter
;
5569 GdipGetImageWidth(&bitmap
->image
, &width
);
5570 GdipGetImageHeight(&bitmap
->image
, &height
);
5572 for (y
= 0; y
< height
; y
++)
5573 for (x
= 0; x
< width
; x
++)
5577 GdipBitmapGetPixel(bitmap
, x
, y
, &color
);
5578 set_histogram_point
[format
](color
, ch0
, ch1
, ch2
, ch3
);
5584 /*****************************************************************************
5585 * GdipBitmapGetHistogramSize [GDIPLUS.@]
5587 GpStatus WINGDIPAPI
GdipBitmapGetHistogramSize(HistogramFormat format
, UINT
*num_of_entries
)
5589 TRACE("(%d, %p)\n", format
, num_of_entries
);
5591 if (!num_of_entries
)
5592 return InvalidParameter
;
5594 *num_of_entries
= 256;