2 * Copyright (C) 2007 Google (Evan Stade)
3 * Copyright (C) 2012 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 #define PIXELFORMATBPP(x) ((x) ? ((x) >> 8) & 255 : 24)
47 const WICPixelFormatGUID
*wic_format
;
48 PixelFormat gdip_format
;
49 /* predefined palette type to use for pixel format conversions */
50 WICBitmapPaletteType palette_type
;
53 { &GUID_WICPixelFormatBlackWhite
, PixelFormat1bppIndexed
, WICBitmapPaletteTypeFixedBW
},
54 { &GUID_WICPixelFormat1bppIndexed
, PixelFormat1bppIndexed
, WICBitmapPaletteTypeFixedBW
},
55 { &GUID_WICPixelFormat8bppGray
, PixelFormat8bppIndexed
, WICBitmapPaletteTypeFixedGray256
},
56 { &GUID_WICPixelFormat8bppIndexed
, PixelFormat8bppIndexed
, WICBitmapPaletteTypeFixedHalftone256
},
57 { &GUID_WICPixelFormat16bppBGR555
, PixelFormat16bppRGB555
, WICBitmapPaletteTypeFixedHalftone256
},
58 { &GUID_WICPixelFormat24bppBGR
, PixelFormat24bppRGB
, WICBitmapPaletteTypeFixedHalftone256
},
59 { &GUID_WICPixelFormat32bppBGR
, PixelFormat32bppRGB
, WICBitmapPaletteTypeFixedHalftone256
},
60 { &GUID_WICPixelFormat32bppBGRA
, PixelFormat32bppARGB
, WICBitmapPaletteTypeFixedHalftone256
},
61 { &GUID_WICPixelFormat32bppPBGRA
, PixelFormat32bppPARGB
, WICBitmapPaletteTypeFixedHalftone256
},
65 static ColorPalette
*get_palette(IWICBitmapFrameDecode
*frame
, WICBitmapPaletteType palette_type
)
68 IWICImagingFactory
*factory
;
69 IWICPalette
*wic_palette
;
70 ColorPalette
*palette
= NULL
;
72 hr
= CoCreateInstance(&CLSID_WICImagingFactory
, NULL
, CLSCTX_INPROC_SERVER
,
73 &IID_IWICImagingFactory
, (void **)&factory
);
74 if (hr
!= S_OK
) return NULL
;
76 hr
= IWICImagingFactory_CreatePalette(factory
, &wic_palette
);
79 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
81 hr
= IWICBitmapFrameDecode_CopyPalette(frame
, wic_palette
);
84 TRACE("using predefined palette %#x\n", palette_type
);
85 hr
= IWICPalette_InitializePredefined(wic_palette
, palette_type
, FALSE
);
92 IWICPalette_IsBlackWhite(wic_palette
, &mono
);
93 IWICPalette_IsGrayscale(wic_palette
, &gray
);
95 IWICPalette_GetColorCount(wic_palette
, &count
);
96 palette
= HeapAlloc(GetProcessHeap(), 0, 2 * sizeof(UINT
) + count
* sizeof(ARGB
));
97 IWICPalette_GetColors(wic_palette
, count
, palette
->Entries
, &palette
->Count
);
102 palette
->Flags
= PaletteFlagsGrayScale
;
104 palette
->Flags
= PaletteFlagsHalftone
;
106 IWICPalette_Release(wic_palette
);
108 IWICImagingFactory_Release(factory
);
112 static INT
ipicture_pixel_height(IPicture
*pic
)
115 OLE_YSIZE_HIMETRIC y
;
117 IPicture_get_Height(pic
, &y
);
119 hdcref
= CreateCompatibleDC(0);
120 y
= MulDiv(y
, GetDeviceCaps(hdcref
, LOGPIXELSY
), INCH_HIMETRIC
);
126 static INT
ipicture_pixel_width(IPicture
*pic
)
129 OLE_XSIZE_HIMETRIC x
;
131 IPicture_get_Width(pic
, &x
);
133 hdcref
= CreateCompatibleDC(0);
134 x
= MulDiv(x
, GetDeviceCaps(hdcref
, LOGPIXELSX
), INCH_HIMETRIC
);
140 GpStatus WINGDIPAPI
GdipBitmapApplyEffect(GpBitmap
* bitmap
, CGpEffect
* effect
,
141 RECT
* roi
, BOOL useAuxData
, VOID
** auxData
, INT
* auxDataSize
)
143 FIXME("(%p %p %p %d %p %p): stub\n", bitmap
, effect
, roi
, 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 GpStatus WINGDIPAPI
GdipBitmapCreateApplyEffect(GpBitmap
** inputBitmaps
,
152 INT numInputs
, CGpEffect
* effect
, RECT
* roi
, RECT
* outputRect
,
153 GpBitmap
** outputBitmap
, BOOL useAuxData
, VOID
** auxData
, INT
* auxDataSize
)
155 FIXME("(%p %d %p %p %p %p %d %p %p): stub\n", inputBitmaps
, numInputs
, effect
, roi
, outputRect
, outputBitmap
, useAuxData
, auxData
, auxDataSize
);
157 * Note: According to Jose Roca's GDI+ docs, this function is not
158 * implemented in Windows's GDI+.
160 return NotImplemented
;
163 static inline void getpixel_1bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
165 *index
= (row
[x
/8]>>(7-x
%8)) & 1;
168 static inline void getpixel_4bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
171 *index
= row
[x
/2]&0xf;
173 *index
= row
[x
/2]>>4;
176 static inline void getpixel_8bppIndexed(BYTE
*index
, const BYTE
*row
, UINT x
)
181 static inline void getpixel_16bppGrayScale(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
182 const BYTE
*row
, UINT x
)
184 *r
= *g
= *b
= row
[x
*2+1];
188 static inline void getpixel_16bppRGB555(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
189 const BYTE
*row
, UINT x
)
191 WORD pixel
= *((const WORD
*)(row
)+x
);
192 *r
= (pixel
>>7&0xf8)|(pixel
>>12&0x7);
193 *g
= (pixel
>>2&0xf8)|(pixel
>>6&0x7);
194 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
198 static inline void getpixel_16bppRGB565(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
199 const BYTE
*row
, UINT x
)
201 WORD pixel
= *((const WORD
*)(row
)+x
);
202 *r
= (pixel
>>8&0xf8)|(pixel
>>13&0x7);
203 *g
= (pixel
>>3&0xfc)|(pixel
>>9&0x3);
204 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
208 static inline void getpixel_16bppARGB1555(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
209 const BYTE
*row
, UINT x
)
211 WORD pixel
= *((const WORD
*)(row
)+x
);
212 *r
= (pixel
>>7&0xf8)|(pixel
>>12&0x7);
213 *g
= (pixel
>>2&0xf8)|(pixel
>>6&0x7);
214 *b
= (pixel
<<3&0xf8)|(pixel
>>2&0x7);
215 if ((pixel
&0x8000) == 0x8000)
221 static inline void getpixel_24bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
222 const BYTE
*row
, UINT x
)
230 static inline void getpixel_32bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
231 const BYTE
*row
, UINT x
)
239 static inline void getpixel_32bppARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
240 const BYTE
*row
, UINT x
)
248 static inline void getpixel_32bppPARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
249 const BYTE
*row
, UINT x
)
256 *r
= row
[x
*4+2] * 255 / *a
;
257 *g
= row
[x
*4+1] * 255 / *a
;
258 *b
= row
[x
*4] * 255 / *a
;
262 static inline void getpixel_48bppRGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
263 const BYTE
*row
, UINT x
)
271 static inline void getpixel_64bppARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
272 const BYTE
*row
, UINT x
)
280 static inline void getpixel_64bppPARGB(BYTE
*r
, BYTE
*g
, BYTE
*b
, BYTE
*a
,
281 const BYTE
*row
, UINT x
)
288 *r
= row
[x
*8+5] * 255 / *a
;
289 *g
= row
[x
*8+3] * 255 / *a
;
290 *b
= row
[x
*8+1] * 255 / *a
;
294 GpStatus WINGDIPAPI
GdipBitmapGetPixel(GpBitmap
* bitmap
, INT x
, INT y
,
301 if(!bitmap
|| !color
||
302 x
< 0 || y
< 0 || x
>= bitmap
->width
|| y
>= bitmap
->height
)
303 return InvalidParameter
;
305 row
= bitmap
->bits
+bitmap
->stride
*y
;
307 switch (bitmap
->format
)
309 case PixelFormat1bppIndexed
:
310 getpixel_1bppIndexed(&index
,row
,x
);
312 case PixelFormat4bppIndexed
:
313 getpixel_4bppIndexed(&index
,row
,x
);
315 case PixelFormat8bppIndexed
:
316 getpixel_8bppIndexed(&index
,row
,x
);
318 case PixelFormat16bppGrayScale
:
319 getpixel_16bppGrayScale(&r
,&g
,&b
,&a
,row
,x
);
321 case PixelFormat16bppRGB555
:
322 getpixel_16bppRGB555(&r
,&g
,&b
,&a
,row
,x
);
324 case PixelFormat16bppRGB565
:
325 getpixel_16bppRGB565(&r
,&g
,&b
,&a
,row
,x
);
327 case PixelFormat16bppARGB1555
:
328 getpixel_16bppARGB1555(&r
,&g
,&b
,&a
,row
,x
);
330 case PixelFormat24bppRGB
:
331 getpixel_24bppRGB(&r
,&g
,&b
,&a
,row
,x
);
333 case PixelFormat32bppRGB
:
334 getpixel_32bppRGB(&r
,&g
,&b
,&a
,row
,x
);
336 case PixelFormat32bppARGB
:
337 getpixel_32bppARGB(&r
,&g
,&b
,&a
,row
,x
);
339 case PixelFormat32bppPARGB
:
340 getpixel_32bppPARGB(&r
,&g
,&b
,&a
,row
,x
);
342 case PixelFormat48bppRGB
:
343 getpixel_48bppRGB(&r
,&g
,&b
,&a
,row
,x
);
345 case PixelFormat64bppARGB
:
346 getpixel_64bppARGB(&r
,&g
,&b
,&a
,row
,x
);
348 case PixelFormat64bppPARGB
:
349 getpixel_64bppPARGB(&r
,&g
,&b
,&a
,row
,x
);
352 FIXME("not implemented for format 0x%x\n", bitmap
->format
);
353 return NotImplemented
;
356 if (bitmap
->format
& PixelFormatIndexed
)
357 *color
= bitmap
->image
.palette
->Entries
[index
];
359 *color
= a
<<24|r
<<16|g
<<8|b
;
364 static inline UINT
get_palette_index(BYTE r
, BYTE g
, BYTE b
, BYTE a
, ColorPalette
*palette
)
367 int best_distance
= 0x7fff;
371 if (!palette
) return 0;
372 /* This algorithm scans entire palette,
373 computes difference from desired color (all color components have equal weight)
374 and returns the index of color with least difference.
376 Note: Maybe it could be replaced with a better algorithm for better image quality
377 and performance, though better algorithm would probably need some pre-built lookup
378 tables and thus may actually be slower if this method is called only few times per
381 for(i
=0;i
<palette
->Count
;i
++) {
382 ARGB color
=palette
->Entries
[i
];
383 distance
=abs(b
-(color
& 0xff)) + abs(g
-(color
>>8 & 0xff)) + abs(r
-(color
>>16 & 0xff)) + abs(a
-(color
>>24 & 0xff));
384 if (distance
<best_distance
) {
385 best_distance
=distance
;
392 static inline void setpixel_8bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
393 BYTE
*row
, UINT x
, ColorPalette
*palette
)
395 BYTE index
= get_palette_index(r
,g
,b
,a
,palette
);
399 static inline void setpixel_1bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
400 BYTE
*row
, UINT x
, ColorPalette
*palette
)
402 row
[x
/8] = (row
[x
/8] & ~(1<<(7-x
%8))) | (get_palette_index(r
,g
,b
,a
,palette
)<<(7-x
%8));
405 static inline void setpixel_4bppIndexed(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
406 BYTE
*row
, UINT x
, ColorPalette
*palette
)
409 row
[x
/2] = (row
[x
/2] & 0xf0) | get_palette_index(r
,g
,b
,a
,palette
);
411 row
[x
/2] = (row
[x
/2] & 0x0f) | get_palette_index(r
,g
,b
,a
,palette
)<<4;
414 static inline void setpixel_16bppGrayScale(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
417 *((WORD
*)(row
)+x
) = (r
+g
+b
)*85;
420 static inline void setpixel_16bppRGB555(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
423 *((WORD
*)(row
)+x
) = (r
<<7&0x7c00)|
428 static inline void setpixel_16bppRGB565(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
431 *((WORD
*)(row
)+x
) = (r
<<8&0xf800)|
436 static inline void setpixel_16bppARGB1555(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
439 *((WORD
*)(row
)+x
) = (a
<<8&0x8000)|
445 static inline void setpixel_24bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
453 static inline void setpixel_32bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
456 *((DWORD
*)(row
)+x
) = (r
<<16)|(g
<<8)|b
;
459 static inline void setpixel_32bppARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
462 *((DWORD
*)(row
)+x
) = (a
<<24)|(r
<<16)|(g
<<8)|b
;
465 static inline void setpixel_32bppPARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
471 *((DWORD
*)(row
)+x
) = (a
<<24)|(r
<<16)|(g
<<8)|b
;
474 static inline void setpixel_48bppRGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
477 row
[x
*6+5] = row
[x
*6+4] = r
;
478 row
[x
*6+3] = row
[x
*6+2] = g
;
479 row
[x
*6+1] = row
[x
*6] = b
;
482 static inline void setpixel_64bppARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
485 UINT64 a64
=a
, r64
=r
, g64
=g
, b64
=b
;
486 *((UINT64
*)(row
)+x
) = (a64
<<56)|(a64
<<48)|(r64
<<40)|(r64
<<32)|(g64
<<24)|(g64
<<16)|(b64
<<8)|b64
;
489 static inline void setpixel_64bppPARGB(BYTE r
, BYTE g
, BYTE b
, BYTE a
,
492 UINT64 a64
, r64
, g64
, b64
;
497 *((UINT64
*)(row
)+x
) = (a64
<<48)|(r64
<<32)|(g64
<<16)|b64
;
500 GpStatus WINGDIPAPI
GdipBitmapSetPixel(GpBitmap
* bitmap
, INT x
, INT y
,
506 if(!bitmap
|| x
< 0 || y
< 0 || x
>= bitmap
->width
|| y
>= bitmap
->height
)
507 return InvalidParameter
;
514 row
= bitmap
->bits
+ bitmap
->stride
* y
;
516 switch (bitmap
->format
)
518 case PixelFormat16bppGrayScale
:
519 setpixel_16bppGrayScale(r
,g
,b
,a
,row
,x
);
521 case PixelFormat16bppRGB555
:
522 setpixel_16bppRGB555(r
,g
,b
,a
,row
,x
);
524 case PixelFormat16bppRGB565
:
525 setpixel_16bppRGB565(r
,g
,b
,a
,row
,x
);
527 case PixelFormat16bppARGB1555
:
528 setpixel_16bppARGB1555(r
,g
,b
,a
,row
,x
);
530 case PixelFormat24bppRGB
:
531 setpixel_24bppRGB(r
,g
,b
,a
,row
,x
);
533 case PixelFormat32bppRGB
:
534 setpixel_32bppRGB(r
,g
,b
,a
,row
,x
);
536 case PixelFormat32bppARGB
:
537 setpixel_32bppARGB(r
,g
,b
,a
,row
,x
);
539 case PixelFormat32bppPARGB
:
540 setpixel_32bppPARGB(r
,g
,b
,a
,row
,x
);
542 case PixelFormat48bppRGB
:
543 setpixel_48bppRGB(r
,g
,b
,a
,row
,x
);
545 case PixelFormat64bppARGB
:
546 setpixel_64bppARGB(r
,g
,b
,a
,row
,x
);
548 case PixelFormat64bppPARGB
:
549 setpixel_64bppPARGB(r
,g
,b
,a
,row
,x
);
551 case PixelFormat8bppIndexed
:
552 setpixel_8bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
554 case PixelFormat4bppIndexed
:
555 setpixel_4bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
557 case PixelFormat1bppIndexed
:
558 setpixel_1bppIndexed(r
,g
,b
,a
,row
,x
,bitmap
->image
.palette
);
561 FIXME("not implemented for format 0x%x\n", bitmap
->format
);
562 return NotImplemented
;
568 GpStatus
convert_pixels(INT width
, INT height
,
569 INT dst_stride
, BYTE
*dst_bits
, PixelFormat dst_format
,
570 INT src_stride
, const BYTE
*src_bits
, PixelFormat src_format
,
571 ColorPalette
*palette
)
575 if (src_format
== dst_format
||
576 (dst_format
== PixelFormat32bppRGB
&& PIXELFORMATBPP(src_format
) == 32))
578 UINT widthbytes
= PIXELFORMATBPP(src_format
) * width
/ 8;
579 for (y
=0; y
<height
; y
++)
580 memcpy(dst_bits
+dst_stride
*y
, src_bits
+src_stride
*y
, widthbytes
);
584 #define convert_indexed_to_rgb(getpixel_function, setpixel_function) do { \
585 for (x=0; x<width; x++) \
586 for (y=0; y<height; y++) { \
589 BYTE *color = (BYTE *)&argb; \
590 getpixel_function(&index, src_bits+src_stride*y, x); \
591 argb = (palette && index < palette->Count) ? palette->Entries[index] : 0; \
592 setpixel_function(color[2], color[1], color[0], color[3], dst_bits+dst_stride*y, x); \
597 #define convert_rgb_to_rgb(getpixel_function, setpixel_function) do { \
598 for (x=0; x<width; x++) \
599 for (y=0; y<height; y++) { \
601 getpixel_function(&r, &g, &b, &a, src_bits+src_stride*y, x); \
602 setpixel_function(r, g, b, a, dst_bits+dst_stride*y, x); \
607 #define convert_rgb_to_indexed(getpixel_function, setpixel_function) do { \
608 for (x=0; x<width; x++) \
609 for (y=0; y<height; y++) { \
611 getpixel_function(&r, &g, &b, &a, src_bits+src_stride*y, x); \
612 setpixel_function(r, g, b, a, dst_bits+dst_stride*y, x, palette); \
619 case PixelFormat1bppIndexed
:
622 case PixelFormat16bppGrayScale
:
623 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppGrayScale
);
624 case PixelFormat16bppRGB555
:
625 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppRGB555
);
626 case PixelFormat16bppRGB565
:
627 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppRGB565
);
628 case PixelFormat16bppARGB1555
:
629 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_16bppARGB1555
);
630 case PixelFormat24bppRGB
:
631 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_24bppRGB
);
632 case PixelFormat32bppRGB
:
633 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppRGB
);
634 case PixelFormat32bppARGB
:
635 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppARGB
);
636 case PixelFormat32bppPARGB
:
637 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_32bppPARGB
);
638 case PixelFormat48bppRGB
:
639 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_48bppRGB
);
640 case PixelFormat64bppARGB
:
641 convert_indexed_to_rgb(getpixel_1bppIndexed
, setpixel_64bppARGB
);
646 case PixelFormat4bppIndexed
:
649 case PixelFormat16bppGrayScale
:
650 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppGrayScale
);
651 case PixelFormat16bppRGB555
:
652 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppRGB555
);
653 case PixelFormat16bppRGB565
:
654 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppRGB565
);
655 case PixelFormat16bppARGB1555
:
656 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_16bppARGB1555
);
657 case PixelFormat24bppRGB
:
658 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_24bppRGB
);
659 case PixelFormat32bppRGB
:
660 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppRGB
);
661 case PixelFormat32bppARGB
:
662 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppARGB
);
663 case PixelFormat32bppPARGB
:
664 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_32bppPARGB
);
665 case PixelFormat48bppRGB
:
666 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_48bppRGB
);
667 case PixelFormat64bppARGB
:
668 convert_indexed_to_rgb(getpixel_4bppIndexed
, setpixel_64bppARGB
);
673 case PixelFormat8bppIndexed
:
676 case PixelFormat16bppGrayScale
:
677 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppGrayScale
);
678 case PixelFormat16bppRGB555
:
679 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppRGB555
);
680 case PixelFormat16bppRGB565
:
681 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppRGB565
);
682 case PixelFormat16bppARGB1555
:
683 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_16bppARGB1555
);
684 case PixelFormat24bppRGB
:
685 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_24bppRGB
);
686 case PixelFormat32bppRGB
:
687 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppRGB
);
688 case PixelFormat32bppARGB
:
689 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppARGB
);
690 case PixelFormat32bppPARGB
:
691 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_32bppPARGB
);
692 case PixelFormat48bppRGB
:
693 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_48bppRGB
);
694 case PixelFormat64bppARGB
:
695 convert_indexed_to_rgb(getpixel_8bppIndexed
, setpixel_64bppARGB
);
700 case PixelFormat16bppGrayScale
:
703 case PixelFormat1bppIndexed
:
704 convert_rgb_to_indexed(getpixel_16bppGrayScale
, setpixel_1bppIndexed
);
705 case PixelFormat8bppIndexed
:
706 convert_rgb_to_indexed(getpixel_16bppGrayScale
, setpixel_8bppIndexed
);
707 case PixelFormat16bppRGB555
:
708 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppRGB555
);
709 case PixelFormat16bppRGB565
:
710 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppRGB565
);
711 case PixelFormat16bppARGB1555
:
712 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_16bppARGB1555
);
713 case PixelFormat24bppRGB
:
714 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_24bppRGB
);
715 case PixelFormat32bppRGB
:
716 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppRGB
);
717 case PixelFormat32bppARGB
:
718 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppARGB
);
719 case PixelFormat32bppPARGB
:
720 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_32bppPARGB
);
721 case PixelFormat48bppRGB
:
722 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_48bppRGB
);
723 case PixelFormat64bppARGB
:
724 convert_rgb_to_rgb(getpixel_16bppGrayScale
, setpixel_64bppARGB
);
729 case PixelFormat16bppRGB555
:
732 case PixelFormat1bppIndexed
:
733 convert_rgb_to_indexed(getpixel_16bppRGB555
, setpixel_1bppIndexed
);
734 case PixelFormat8bppIndexed
:
735 convert_rgb_to_indexed(getpixel_16bppRGB555
, setpixel_8bppIndexed
);
736 case PixelFormat16bppGrayScale
:
737 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppGrayScale
);
738 case PixelFormat16bppRGB565
:
739 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppRGB565
);
740 case PixelFormat16bppARGB1555
:
741 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_16bppARGB1555
);
742 case PixelFormat24bppRGB
:
743 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_24bppRGB
);
744 case PixelFormat32bppRGB
:
745 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppRGB
);
746 case PixelFormat32bppARGB
:
747 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppARGB
);
748 case PixelFormat32bppPARGB
:
749 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_32bppPARGB
);
750 case PixelFormat48bppRGB
:
751 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_48bppRGB
);
752 case PixelFormat64bppARGB
:
753 convert_rgb_to_rgb(getpixel_16bppRGB555
, setpixel_64bppARGB
);
758 case PixelFormat16bppRGB565
:
761 case PixelFormat1bppIndexed
:
762 convert_rgb_to_indexed(getpixel_16bppRGB565
, setpixel_1bppIndexed
);
763 case PixelFormat8bppIndexed
:
764 convert_rgb_to_indexed(getpixel_16bppRGB565
, setpixel_8bppIndexed
);
765 case PixelFormat16bppGrayScale
:
766 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppGrayScale
);
767 case PixelFormat16bppRGB555
:
768 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppRGB555
);
769 case PixelFormat16bppARGB1555
:
770 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_16bppARGB1555
);
771 case PixelFormat24bppRGB
:
772 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_24bppRGB
);
773 case PixelFormat32bppRGB
:
774 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppRGB
);
775 case PixelFormat32bppARGB
:
776 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppARGB
);
777 case PixelFormat32bppPARGB
:
778 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_32bppPARGB
);
779 case PixelFormat48bppRGB
:
780 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_48bppRGB
);
781 case PixelFormat64bppARGB
:
782 convert_rgb_to_rgb(getpixel_16bppRGB565
, setpixel_64bppARGB
);
787 case PixelFormat16bppARGB1555
:
790 case PixelFormat1bppIndexed
:
791 convert_rgb_to_indexed(getpixel_16bppARGB1555
, setpixel_1bppIndexed
);
792 case PixelFormat8bppIndexed
:
793 convert_rgb_to_indexed(getpixel_16bppARGB1555
, setpixel_8bppIndexed
);
794 case PixelFormat16bppGrayScale
:
795 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppGrayScale
);
796 case PixelFormat16bppRGB555
:
797 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppRGB555
);
798 case PixelFormat16bppRGB565
:
799 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_16bppRGB565
);
800 case PixelFormat24bppRGB
:
801 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_24bppRGB
);
802 case PixelFormat32bppRGB
:
803 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppRGB
);
804 case PixelFormat32bppARGB
:
805 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppARGB
);
806 case PixelFormat32bppPARGB
:
807 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_32bppPARGB
);
808 case PixelFormat48bppRGB
:
809 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_48bppRGB
);
810 case PixelFormat64bppARGB
:
811 convert_rgb_to_rgb(getpixel_16bppARGB1555
, setpixel_64bppARGB
);
816 case PixelFormat24bppRGB
:
819 case PixelFormat1bppIndexed
:
820 convert_rgb_to_indexed(getpixel_24bppRGB
, setpixel_1bppIndexed
);
821 case PixelFormat8bppIndexed
:
822 convert_rgb_to_indexed(getpixel_24bppRGB
, setpixel_8bppIndexed
);
823 case PixelFormat16bppGrayScale
:
824 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppGrayScale
);
825 case PixelFormat16bppRGB555
:
826 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppRGB555
);
827 case PixelFormat16bppRGB565
:
828 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppRGB565
);
829 case PixelFormat16bppARGB1555
:
830 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_16bppARGB1555
);
831 case PixelFormat32bppRGB
:
832 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppRGB
);
833 case PixelFormat32bppARGB
:
834 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppARGB
);
835 case PixelFormat32bppPARGB
:
836 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_32bppPARGB
);
837 case PixelFormat48bppRGB
:
838 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_48bppRGB
);
839 case PixelFormat64bppARGB
:
840 convert_rgb_to_rgb(getpixel_24bppRGB
, setpixel_64bppARGB
);
845 case PixelFormat32bppRGB
:
848 case PixelFormat1bppIndexed
:
849 convert_rgb_to_indexed(getpixel_32bppRGB
, setpixel_1bppIndexed
);
850 case PixelFormat8bppIndexed
:
851 convert_rgb_to_indexed(getpixel_32bppRGB
, setpixel_8bppIndexed
);
852 case PixelFormat16bppGrayScale
:
853 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppGrayScale
);
854 case PixelFormat16bppRGB555
:
855 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppRGB555
);
856 case PixelFormat16bppRGB565
:
857 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppRGB565
);
858 case PixelFormat16bppARGB1555
:
859 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_16bppARGB1555
);
860 case PixelFormat24bppRGB
:
861 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_24bppRGB
);
862 case PixelFormat32bppARGB
:
863 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_32bppARGB
);
864 case PixelFormat32bppPARGB
:
865 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_32bppPARGB
);
866 case PixelFormat48bppRGB
:
867 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_48bppRGB
);
868 case PixelFormat64bppARGB
:
869 convert_rgb_to_rgb(getpixel_32bppRGB
, setpixel_64bppARGB
);
874 case PixelFormat32bppARGB
:
877 case PixelFormat1bppIndexed
:
878 convert_rgb_to_indexed(getpixel_32bppARGB
, setpixel_1bppIndexed
);
879 case PixelFormat8bppIndexed
:
880 convert_rgb_to_indexed(getpixel_32bppARGB
, setpixel_8bppIndexed
);
881 case PixelFormat16bppGrayScale
:
882 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppGrayScale
);
883 case PixelFormat16bppRGB555
:
884 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppRGB555
);
885 case PixelFormat16bppRGB565
:
886 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppRGB565
);
887 case PixelFormat16bppARGB1555
:
888 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_16bppARGB1555
);
889 case PixelFormat24bppRGB
:
890 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_24bppRGB
);
891 case PixelFormat32bppPARGB
:
892 convert_32bppARGB_to_32bppPARGB(width
, height
, dst_bits
, dst_stride
, src_bits
, src_stride
);
894 case PixelFormat48bppRGB
:
895 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_48bppRGB
);
896 case PixelFormat64bppARGB
:
897 convert_rgb_to_rgb(getpixel_32bppARGB
, setpixel_64bppARGB
);
902 case PixelFormat32bppPARGB
:
905 case PixelFormat1bppIndexed
:
906 convert_rgb_to_indexed(getpixel_32bppPARGB
, setpixel_1bppIndexed
);
907 case PixelFormat8bppIndexed
:
908 convert_rgb_to_indexed(getpixel_32bppPARGB
, setpixel_8bppIndexed
);
909 case PixelFormat16bppGrayScale
:
910 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppGrayScale
);
911 case PixelFormat16bppRGB555
:
912 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppRGB555
);
913 case PixelFormat16bppRGB565
:
914 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppRGB565
);
915 case PixelFormat16bppARGB1555
:
916 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_16bppARGB1555
);
917 case PixelFormat24bppRGB
:
918 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_24bppRGB
);
919 case PixelFormat32bppRGB
:
920 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_32bppRGB
);
921 case PixelFormat32bppARGB
:
922 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_32bppARGB
);
923 case PixelFormat48bppRGB
:
924 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_48bppRGB
);
925 case PixelFormat64bppARGB
:
926 convert_rgb_to_rgb(getpixel_32bppPARGB
, setpixel_64bppARGB
);
931 case PixelFormat48bppRGB
:
934 case PixelFormat1bppIndexed
:
935 convert_rgb_to_indexed(getpixel_48bppRGB
, setpixel_1bppIndexed
);
936 case PixelFormat8bppIndexed
:
937 convert_rgb_to_indexed(getpixel_48bppRGB
, setpixel_8bppIndexed
);
938 case PixelFormat16bppGrayScale
:
939 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppGrayScale
);
940 case PixelFormat16bppRGB555
:
941 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppRGB555
);
942 case PixelFormat16bppRGB565
:
943 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppRGB565
);
944 case PixelFormat16bppARGB1555
:
945 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_16bppARGB1555
);
946 case PixelFormat24bppRGB
:
947 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_24bppRGB
);
948 case PixelFormat32bppRGB
:
949 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppRGB
);
950 case PixelFormat32bppARGB
:
951 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppARGB
);
952 case PixelFormat32bppPARGB
:
953 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_32bppPARGB
);
954 case PixelFormat64bppARGB
:
955 convert_rgb_to_rgb(getpixel_48bppRGB
, setpixel_64bppARGB
);
960 case PixelFormat64bppARGB
:
963 case PixelFormat1bppIndexed
:
964 convert_rgb_to_indexed(getpixel_64bppARGB
, setpixel_1bppIndexed
);
965 case PixelFormat8bppIndexed
:
966 convert_rgb_to_indexed(getpixel_64bppARGB
, setpixel_8bppIndexed
);
967 case PixelFormat16bppGrayScale
:
968 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppGrayScale
);
969 case PixelFormat16bppRGB555
:
970 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppRGB555
);
971 case PixelFormat16bppRGB565
:
972 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppRGB565
);
973 case PixelFormat16bppARGB1555
:
974 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_16bppARGB1555
);
975 case PixelFormat24bppRGB
:
976 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_24bppRGB
);
977 case PixelFormat32bppRGB
:
978 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppRGB
);
979 case PixelFormat32bppARGB
:
980 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppARGB
);
981 case PixelFormat32bppPARGB
:
982 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_32bppPARGB
);
983 case PixelFormat48bppRGB
:
984 convert_rgb_to_rgb(getpixel_64bppARGB
, setpixel_48bppRGB
);
989 case PixelFormat64bppPARGB
:
992 case PixelFormat1bppIndexed
:
993 convert_rgb_to_indexed(getpixel_64bppPARGB
, setpixel_1bppIndexed
);
994 case PixelFormat8bppIndexed
:
995 convert_rgb_to_indexed(getpixel_64bppPARGB
, setpixel_8bppIndexed
);
996 case PixelFormat16bppGrayScale
:
997 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppGrayScale
);
998 case PixelFormat16bppRGB555
:
999 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppRGB555
);
1000 case PixelFormat16bppRGB565
:
1001 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppRGB565
);
1002 case PixelFormat16bppARGB1555
:
1003 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_16bppARGB1555
);
1004 case PixelFormat24bppRGB
:
1005 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_24bppRGB
);
1006 case PixelFormat32bppRGB
:
1007 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppRGB
);
1008 case PixelFormat32bppARGB
:
1009 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppARGB
);
1010 case PixelFormat32bppPARGB
:
1011 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_32bppPARGB
);
1012 case PixelFormat48bppRGB
:
1013 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_48bppRGB
);
1014 case PixelFormat64bppARGB
:
1015 convert_rgb_to_rgb(getpixel_64bppPARGB
, setpixel_64bppARGB
);
1024 #undef convert_indexed_to_rgb
1025 #undef convert_rgb_to_rgb
1027 return NotImplemented
;
1030 /* This function returns a pointer to an array of pixels that represents the
1031 * bitmap. The *entire* bitmap is locked according to the lock mode specified by
1032 * flags. It is correct behavior that a user who calls this function with write
1033 * privileges can write to the whole bitmap (not just the area in rect).
1035 * FIXME: only used portion of format is bits per pixel. */
1036 GpStatus WINGDIPAPI
GdipBitmapLockBits(GpBitmap
* bitmap
, GDIPCONST GpRect
* rect
,
1037 UINT flags
, PixelFormat format
, BitmapData
* lockeddata
)
1039 INT bitspp
= PIXELFORMATBPP(format
);
1040 GpRect act_rect
; /* actual rect to be used */
1043 TRACE("%p %p %d 0x%x %p\n", bitmap
, rect
, flags
, format
, lockeddata
);
1045 if(!lockeddata
|| !bitmap
)
1046 return InvalidParameter
;
1049 if(rect
->X
< 0 || rect
->Y
< 0 || (rect
->X
+ rect
->Width
> bitmap
->width
) ||
1050 (rect
->Y
+ rect
->Height
> bitmap
->height
) || !flags
)
1051 return InvalidParameter
;
1056 act_rect
.X
= act_rect
.Y
= 0;
1057 act_rect
.Width
= bitmap
->width
;
1058 act_rect
.Height
= bitmap
->height
;
1061 if(bitmap
->lockmode
)
1063 WARN("bitmap is already locked and cannot be locked again\n");
1067 if (bitmap
->bits
&& bitmap
->format
== format
&& !(flags
& ImageLockModeUserInputBuf
))
1069 /* no conversion is necessary; just use the bits directly */
1070 lockeddata
->Width
= act_rect
.Width
;
1071 lockeddata
->Height
= act_rect
.Height
;
1072 lockeddata
->PixelFormat
= format
;
1073 lockeddata
->Reserved
= flags
;
1074 lockeddata
->Stride
= bitmap
->stride
;
1075 lockeddata
->Scan0
= bitmap
->bits
+ (bitspp
/ 8) * act_rect
.X
+
1076 bitmap
->stride
* act_rect
.Y
;
1078 bitmap
->lockmode
= flags
| ImageLockModeRead
;
1084 /* Make sure we can convert to the requested format. */
1085 if (flags
& ImageLockModeRead
)
1087 stat
= convert_pixels(0, 0, 0, NULL
, format
, 0, NULL
, bitmap
->format
, NULL
);
1088 if (stat
== NotImplemented
)
1090 FIXME("cannot read bitmap from %x to %x\n", bitmap
->format
, format
);
1091 return NotImplemented
;
1095 /* If we're opening for writing, make sure we'll be able to write back in
1096 * the original format. */
1097 if (flags
& ImageLockModeWrite
)
1099 stat
= convert_pixels(0, 0, 0, NULL
, bitmap
->format
, 0, NULL
, format
, NULL
);
1100 if (stat
== NotImplemented
)
1102 FIXME("cannot write bitmap from %x to %x\n", format
, bitmap
->format
);
1103 return NotImplemented
;
1107 lockeddata
->Width
= act_rect
.Width
;
1108 lockeddata
->Height
= act_rect
.Height
;
1109 lockeddata
->PixelFormat
= format
;
1110 lockeddata
->Reserved
= flags
;
1112 if(!(flags
& ImageLockModeUserInputBuf
))
1114 lockeddata
->Stride
= (((act_rect
.Width
* bitspp
+ 7) / 8) + 3) & ~3;
1116 bitmap
->bitmapbits
= GdipAlloc(lockeddata
->Stride
* act_rect
.Height
);
1118 if (!bitmap
->bitmapbits
) return OutOfMemory
;
1120 lockeddata
->Scan0
= bitmap
->bitmapbits
;
1123 if (flags
& ImageLockModeRead
)
1125 static BOOL fixme
= FALSE
;
1127 if (!fixme
&& (PIXELFORMATBPP(bitmap
->format
) * act_rect
.X
) % 8 != 0)
1129 FIXME("Cannot copy rows that don't start at a whole byte.\n");
1133 stat
= convert_pixels(act_rect
.Width
, act_rect
.Height
,
1134 lockeddata
->Stride
, lockeddata
->Scan0
, format
,
1136 bitmap
->bits
+ bitmap
->stride
* act_rect
.Y
+ PIXELFORMATBPP(bitmap
->format
) * act_rect
.X
/ 8,
1137 bitmap
->format
, bitmap
->image
.palette
);
1141 GdipFree(bitmap
->bitmapbits
);
1142 bitmap
->bitmapbits
= NULL
;
1147 bitmap
->lockmode
= flags
| ImageLockModeRead
;
1149 bitmap
->lockx
= act_rect
.X
;
1150 bitmap
->locky
= act_rect
.Y
;
1155 GpStatus WINGDIPAPI
GdipBitmapSetResolution(GpBitmap
* bitmap
, REAL xdpi
, REAL ydpi
)
1157 TRACE("(%p, %.2f, %.2f)\n", bitmap
, xdpi
, ydpi
);
1159 if (!bitmap
|| xdpi
== 0.0 || ydpi
== 0.0)
1160 return InvalidParameter
;
1162 bitmap
->image
.xres
= xdpi
;
1163 bitmap
->image
.yres
= ydpi
;
1168 GpStatus WINGDIPAPI
GdipBitmapUnlockBits(GpBitmap
* bitmap
,
1169 BitmapData
* lockeddata
)
1172 static BOOL fixme
= FALSE
;
1174 TRACE("(%p,%p)\n", bitmap
, lockeddata
);
1176 if(!bitmap
|| !lockeddata
)
1177 return InvalidParameter
;
1179 if(!bitmap
->lockmode
)
1182 if(!(lockeddata
->Reserved
& ImageLockModeWrite
)){
1183 if(!(--bitmap
->numlocks
))
1184 bitmap
->lockmode
= 0;
1186 GdipFree(bitmap
->bitmapbits
);
1187 bitmap
->bitmapbits
= NULL
;
1191 if (!bitmap
->bitmapbits
&& !(lockeddata
->Reserved
& ImageLockModeUserInputBuf
))
1193 /* we passed a direct reference; no need to do anything */
1194 bitmap
->lockmode
= 0;
1195 bitmap
->numlocks
= 0;
1199 if (!fixme
&& (PIXELFORMATBPP(bitmap
->format
) * bitmap
->lockx
) % 8 != 0)
1201 FIXME("Cannot copy rows that don't start at a whole byte.\n");
1205 stat
= convert_pixels(lockeddata
->Width
, lockeddata
->Height
,
1207 bitmap
->bits
+ bitmap
->stride
* bitmap
->locky
+ PIXELFORMATBPP(bitmap
->format
) * bitmap
->lockx
/ 8,
1209 lockeddata
->Stride
, lockeddata
->Scan0
, lockeddata
->PixelFormat
, NULL
);
1213 ERR("failed to convert pixels; this should never happen\n");
1216 GdipFree(bitmap
->bitmapbits
);
1217 bitmap
->bitmapbits
= NULL
;
1218 bitmap
->lockmode
= 0;
1219 bitmap
->numlocks
= 0;
1224 GpStatus WINGDIPAPI
GdipCloneBitmapArea(REAL x
, REAL y
, REAL width
, REAL height
,
1225 PixelFormat format
, GpBitmap
* srcBitmap
, GpBitmap
** dstBitmap
)
1230 TRACE("(%f,%f,%f,%f,0x%x,%p,%p)\n", x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1232 if (!srcBitmap
|| !dstBitmap
|| srcBitmap
->image
.type
!= ImageTypeBitmap
||
1234 x
+ width
> srcBitmap
->width
|| y
+ height
> srcBitmap
->height
)
1236 TRACE("<-- InvalidParameter\n");
1237 return InvalidParameter
;
1240 if (format
== PixelFormatDontCare
)
1241 format
= srcBitmap
->format
;
1243 area
.X
= gdip_round(x
);
1244 area
.Y
= gdip_round(y
);
1245 area
.Width
= gdip_round(width
);
1246 area
.Height
= gdip_round(height
);
1248 stat
= GdipCreateBitmapFromScan0(area
.Width
, area
.Height
, 0, format
, NULL
, dstBitmap
);
1251 stat
= convert_pixels(area
.Width
, area
.Height
, (*dstBitmap
)->stride
, (*dstBitmap
)->bits
, (*dstBitmap
)->format
,
1253 srcBitmap
->bits
+ srcBitmap
->stride
* area
.Y
+ PIXELFORMATBPP(srcBitmap
->format
) * area
.X
/ 8,
1254 srcBitmap
->format
, srcBitmap
->image
.palette
);
1256 GdipDisposeImage((GpImage
*)*dstBitmap
);
1265 GpStatus WINGDIPAPI
GdipCloneBitmapAreaI(INT x
, INT y
, INT width
, INT height
,
1266 PixelFormat format
, GpBitmap
* srcBitmap
, GpBitmap
** dstBitmap
)
1268 TRACE("(%i,%i,%i,%i,0x%x,%p,%p)\n", x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1270 return GdipCloneBitmapArea(x
, y
, width
, height
, format
, srcBitmap
, dstBitmap
);
1273 GpStatus WINGDIPAPI
GdipCloneImage(GpImage
*image
, GpImage
**cloneImage
)
1275 GpStatus stat
= GenericError
;
1277 TRACE("%p, %p\n", image
, cloneImage
);
1279 if (!image
|| !cloneImage
)
1280 return InvalidParameter
;
1289 hr
= CreateStreamOnHGlobal(0, TRUE
, &stream
);
1291 return GenericError
;
1293 hr
= IPicture_SaveAsFile(image
->picture
, stream
, FALSE
, &size
);
1296 WARN("Failed to save image on stream\n");
1300 /* Set seek pointer back to the beginning of the picture */
1302 hr
= IStream_Seek(stream
, move
, STREAM_SEEK_SET
, NULL
);
1306 stat
= GdipLoadImageFromStream(stream
, cloneImage
);
1307 if (stat
!= Ok
) WARN("Failed to load image from stream\n");
1310 IStream_Release(stream
);
1313 else if (image
->type
== ImageTypeBitmap
)
1315 GpBitmap
*bitmap
= (GpBitmap
*)image
;
1317 return GdipCloneBitmapAreaI(0, 0, bitmap
->width
, bitmap
->height
,
1318 bitmap
->format
, bitmap
, (GpBitmap
**)cloneImage
);
1320 else if (image
->type
== ImageTypeMetafile
&& ((GpMetafile
*)image
)->hemf
)
1322 GpMetafile
*result
, *metafile
;
1324 metafile
= (GpMetafile
*)image
;
1326 result
= GdipAlloc(sizeof(*result
));
1330 result
->image
.type
= ImageTypeMetafile
;
1331 result
->image
.format
= image
->format
;
1332 result
->image
.flags
= image
->flags
;
1333 result
->image
.frame_count
= 1;
1334 result
->image
.xres
= image
->xres
;
1335 result
->image
.yres
= image
->yres
;
1336 result
->bounds
= metafile
->bounds
;
1337 result
->unit
= metafile
->unit
;
1338 result
->metafile_type
= metafile
->metafile_type
;
1339 result
->hemf
= CopyEnhMetaFileW(metafile
->hemf
, NULL
);
1347 *cloneImage
= &result
->image
;
1352 WARN("GpImage with no image data (metafile in wrong state?)\n");
1353 return InvalidParameter
;
1357 GpStatus WINGDIPAPI
GdipCreateBitmapFromFile(GDIPCONST WCHAR
* filename
,
1363 TRACE("(%s) %p\n", debugstr_w(filename
), bitmap
);
1365 if(!filename
|| !bitmap
)
1366 return InvalidParameter
;
1368 stat
= GdipCreateStreamOnFile(filename
, GENERIC_READ
, &stream
);
1373 stat
= GdipCreateBitmapFromStream(stream
, bitmap
);
1375 IStream_Release(stream
);
1380 GpStatus WINGDIPAPI
GdipCreateBitmapFromGdiDib(GDIPCONST BITMAPINFO
* info
,
1381 VOID
*bits
, GpBitmap
**bitmap
)
1383 DWORD height
, stride
;
1386 FIXME("(%p, %p, %p) - partially implemented\n", info
, bits
, bitmap
);
1388 if (!info
|| !bits
|| !bitmap
)
1389 return InvalidParameter
;
1391 height
= abs(info
->bmiHeader
.biHeight
);
1392 stride
= ((info
->bmiHeader
.biWidth
* info
->bmiHeader
.biBitCount
+ 31) >> 3) & ~3;
1394 if(info
->bmiHeader
.biHeight
> 0) /* bottom-up */
1396 bits
= (BYTE
*)bits
+ (height
- 1) * stride
;
1400 switch(info
->bmiHeader
.biBitCount
) {
1402 format
= PixelFormat1bppIndexed
;
1405 format
= PixelFormat4bppIndexed
;
1408 format
= PixelFormat8bppIndexed
;
1411 format
= PixelFormat16bppRGB555
;
1414 format
= PixelFormat24bppRGB
;
1417 format
= PixelFormat32bppRGB
;
1420 FIXME("don't know how to handle %d bpp\n", info
->bmiHeader
.biBitCount
);
1422 return InvalidParameter
;
1425 return GdipCreateBitmapFromScan0(info
->bmiHeader
.biWidth
, height
, stride
, format
,
1431 GpStatus WINGDIPAPI
GdipCreateBitmapFromFileICM(GDIPCONST WCHAR
* filename
,
1434 TRACE("(%s) %p\n", debugstr_w(filename
), bitmap
);
1436 return GdipCreateBitmapFromFile(filename
, bitmap
);
1439 GpStatus WINGDIPAPI
GdipCreateBitmapFromResource(HINSTANCE hInstance
,
1440 GDIPCONST WCHAR
* lpBitmapName
, GpBitmap
** bitmap
)
1443 GpStatus stat
= InvalidParameter
;
1445 TRACE("%p (%s) %p\n", hInstance
, debugstr_w(lpBitmapName
), bitmap
);
1447 if(!lpBitmapName
|| !bitmap
)
1448 return InvalidParameter
;
1451 hbm
= LoadImageW(hInstance
, lpBitmapName
, IMAGE_BITMAP
, 0, 0,
1452 LR_CREATEDIBSECTION
);
1455 stat
= GdipCreateBitmapFromHBITMAP(hbm
, NULL
, bitmap
);
1462 GpStatus WINGDIPAPI
GdipCreateHBITMAPFromBitmap(GpBitmap
* bitmap
,
1463 HBITMAP
* hbmReturn
, ARGB background
)
1468 BITMAPINFOHEADER bih
;
1470 BitmapData lockeddata
;
1471 TRACE("(%p,%p,%x)\n", bitmap
, hbmReturn
, background
);
1473 if (!bitmap
|| !hbmReturn
) return InvalidParameter
;
1475 GdipGetImageWidth((GpImage
*)bitmap
, &width
);
1476 GdipGetImageHeight((GpImage
*)bitmap
, &height
);
1478 bih
.biSize
= sizeof(bih
);
1479 bih
.biWidth
= width
;
1480 bih
.biHeight
= height
;
1482 bih
.biBitCount
= 32;
1483 bih
.biCompression
= BI_RGB
;
1484 bih
.biSizeImage
= 0;
1485 bih
.biXPelsPerMeter
= 0;
1486 bih
.biYPelsPerMeter
= 0;
1488 bih
.biClrImportant
= 0;
1490 result
= CreateDIBSection(0, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
1494 lockeddata
.Stride
= -width
* 4;
1495 lockeddata
.Scan0
= bits
+ (width
* 4 * (height
- 1));
1497 stat
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
|ImageLockModeUserInputBuf
,
1498 PixelFormat32bppPARGB
, &lockeddata
);
1501 stat
= GdipBitmapUnlockBits(bitmap
, &lockeddata
);
1504 stat
= GenericError
;
1506 if (stat
!= Ok
&& result
)
1508 DeleteObject(result
);
1512 *hbmReturn
= result
;
1517 GpStatus WINGDIPAPI
GdipConvertToEmfPlus(const GpGraphics
* ref
,
1518 GpMetafile
* metafile
, BOOL
* succ
, EmfType emfType
,
1519 const WCHAR
* description
, GpMetafile
** out_metafile
)
1523 TRACE("(%p,%p,%p,%u,%s,%p)\n", ref
, metafile
, succ
, emfType
,
1524 debugstr_w(description
), out_metafile
);
1526 if(!ref
|| !metafile
|| !out_metafile
)
1527 return InvalidParameter
;
1530 *out_metafile
= NULL
;
1533 FIXME("not implemented\n");
1535 return NotImplemented
;
1538 GpStatus WINGDIPAPI
GdipCreateBitmapFromGraphics(INT width
, INT height
,
1539 GpGraphics
* target
, GpBitmap
** bitmap
)
1543 TRACE("(%d, %d, %p, %p)\n", width
, height
, target
, bitmap
);
1545 if(!target
|| !bitmap
)
1546 return InvalidParameter
;
1548 ret
= GdipCreateBitmapFromScan0(width
, height
, 0, PixelFormat32bppPARGB
,
1553 GdipGetDpiX(target
, &(*bitmap
)->image
.xres
);
1554 GdipGetDpiY(target
, &(*bitmap
)->image
.yres
);
1560 GpStatus WINGDIPAPI
GdipCreateBitmapFromHICON(HICON hicon
, GpBitmap
** bitmap
)
1566 UINT width
, height
, stride
;
1568 BitmapData lockeddata
;
1572 BITMAPINFOHEADER bih
;
1577 TRACE("%p, %p\n", hicon
, bitmap
);
1579 if(!bitmap
|| !GetIconInfo(hicon
, &iinfo
))
1580 return InvalidParameter
;
1582 /* get the size of the icon */
1583 ret
= GetObjectA(iinfo
.hbmColor
? iinfo
.hbmColor
: iinfo
.hbmMask
, sizeof(bm
), &bm
);
1585 DeleteObject(iinfo
.hbmColor
);
1586 DeleteObject(iinfo
.hbmMask
);
1587 return GenericError
;
1591 height
= iinfo
.hbmColor
? abs(bm
.bmHeight
) : abs(bm
.bmHeight
) / 2;
1594 stat
= GdipCreateBitmapFromScan0(width
, height
, stride
, PixelFormat32bppARGB
, NULL
, bitmap
);
1596 DeleteObject(iinfo
.hbmColor
);
1597 DeleteObject(iinfo
.hbmMask
);
1604 rect
.Height
= height
;
1606 stat
= GdipBitmapLockBits(*bitmap
, &rect
, ImageLockModeWrite
, PixelFormat32bppARGB
, &lockeddata
);
1608 DeleteObject(iinfo
.hbmColor
);
1609 DeleteObject(iinfo
.hbmMask
);
1610 GdipDisposeImage((GpImage
*)*bitmap
);
1614 bih
.biSize
= sizeof(bih
);
1615 bih
.biWidth
= width
;
1616 bih
.biHeight
= iinfo
.hbmColor
? -height
: -height
* 2;
1618 bih
.biBitCount
= 32;
1619 bih
.biCompression
= BI_RGB
;
1620 bih
.biSizeImage
= 0;
1621 bih
.biXPelsPerMeter
= 0;
1622 bih
.biYPelsPerMeter
= 0;
1624 bih
.biClrImportant
= 0;
1626 screendc
= CreateCompatibleDC(0);
1629 GetDIBits(screendc
, iinfo
.hbmColor
, 0, height
, lockeddata
.Scan0
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1631 if (bm
.bmBitsPixel
== 32)
1635 /* If any pixel has a non-zero alpha, ignore hbmMask */
1636 src
= (DWORD
*)lockeddata
.Scan0
;
1637 for (x
=0; x
<width
&& !has_alpha
; x
++)
1638 for (y
=0; y
<height
&& !has_alpha
; y
++)
1639 if ((*src
++ & 0xff000000) != 0)
1642 else has_alpha
= FALSE
;
1646 GetDIBits(screendc
, iinfo
.hbmMask
, 0, height
, lockeddata
.Scan0
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1654 BYTE
*bits
= HeapAlloc(GetProcessHeap(), 0, height
* stride
);
1656 /* read alpha data from the mask */
1658 GetDIBits(screendc
, iinfo
.hbmMask
, 0, height
, bits
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1660 GetDIBits(screendc
, iinfo
.hbmMask
, height
, height
, bits
, (BITMAPINFO
*)&bih
, DIB_RGB_COLORS
);
1663 dst_row
= lockeddata
.Scan0
;
1664 for (y
=0; y
<height
; y
++)
1666 dst
= (DWORD
*)dst_row
;
1667 for (x
=0; x
<height
; x
++)
1669 DWORD src_value
= *src
++;
1673 *dst
++ |= 0xff000000;
1675 dst_row
+= lockeddata
.Stride
;
1678 HeapFree(GetProcessHeap(), 0, bits
);
1682 /* set constant alpha of 255 */
1683 dst_row
= lockeddata
.Scan0
;
1684 for (y
=0; y
<height
; y
++)
1686 dst
= (DWORD
*)dst_row
;
1687 for (x
=0; x
<height
; x
++)
1688 *dst
++ |= 0xff000000;
1689 dst_row
+= lockeddata
.Stride
;
1696 DeleteObject(iinfo
.hbmColor
);
1697 DeleteObject(iinfo
.hbmMask
);
1699 GdipBitmapUnlockBits(*bitmap
, &lockeddata
);
1704 static void generate_halftone_palette(ARGB
*entries
, UINT count
)
1706 static const BYTE halftone_values
[6]={0x00,0x33,0x66,0x99,0xcc,0xff};
1709 for (i
=0; i
<8 && i
<count
; i
++)
1711 entries
[i
] = 0xff000000;
1712 if (i
&1) entries
[i
] |= 0x800000;
1713 if (i
&2) entries
[i
] |= 0x8000;
1714 if (i
&4) entries
[i
] |= 0x80;
1718 entries
[i
] = 0xffc0c0c0;
1720 for (i
=9; i
<16 && i
<count
; i
++)
1722 entries
[i
] = 0xff000000;
1723 if (i
&1) entries
[i
] |= 0xff0000;
1724 if (i
&2) entries
[i
] |= 0xff00;
1725 if (i
&4) entries
[i
] |= 0xff;
1728 for (i
=16; i
<40 && i
<count
; i
++)
1733 for (i
=40; i
<256 && i
<count
; i
++)
1735 entries
[i
] = 0xff000000;
1736 entries
[i
] |= halftone_values
[(i
-40)%6];
1737 entries
[i
] |= halftone_values
[((i
-40)/6)%6] << 8;
1738 entries
[i
] |= halftone_values
[((i
-40)/36)%6] << 16;
1742 static GpStatus
get_screen_resolution(REAL
*xres
, REAL
*yres
)
1744 HDC screendc
= CreateCompatibleDC(0);
1746 if (!screendc
) return GenericError
;
1748 *xres
= (REAL
)GetDeviceCaps(screendc
, LOGPIXELSX
);
1749 *yres
= (REAL
)GetDeviceCaps(screendc
, LOGPIXELSY
);
1756 GpStatus WINGDIPAPI
GdipCreateBitmapFromScan0(INT width
, INT height
, INT stride
,
1757 PixelFormat format
, BYTE
* scan0
, GpBitmap
** bitmap
)
1759 HBITMAP hbitmap
=NULL
;
1760 INT row_size
, dib_stride
;
1761 BYTE
*bits
=NULL
, *own_bits
=NULL
;
1765 TRACE("%d %d %d 0x%x %p %p\n", width
, height
, stride
, format
, scan0
, bitmap
);
1767 if (!bitmap
) return InvalidParameter
;
1769 if(width
<= 0 || height
<= 0 || (scan0
&& (stride
% 4))){
1771 return InvalidParameter
;
1774 if(scan0
&& !stride
)
1775 return InvalidParameter
;
1777 stat
= get_screen_resolution(&xres
, &yres
);
1778 if (stat
!= Ok
) return stat
;
1780 row_size
= (width
* PIXELFORMATBPP(format
)+7) / 8;
1781 dib_stride
= (row_size
+ 3) & ~3;
1784 stride
= dib_stride
;
1786 if (format
& PixelFormatGDI
&& !(format
& (PixelFormatAlpha
|PixelFormatIndexed
)) && !scan0
)
1788 char bmibuf
[FIELD_OFFSET(BITMAPINFO
, bmiColors
[256])];
1789 BITMAPINFO
*pbmi
= (BITMAPINFO
*)bmibuf
;
1791 pbmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1792 pbmi
->bmiHeader
.biWidth
= width
;
1793 pbmi
->bmiHeader
.biHeight
= -height
;
1794 pbmi
->bmiHeader
.biPlanes
= 1;
1795 /* FIXME: use the rest of the data from format */
1796 pbmi
->bmiHeader
.biBitCount
= PIXELFORMATBPP(format
);
1797 pbmi
->bmiHeader
.biCompression
= BI_RGB
;
1798 pbmi
->bmiHeader
.biSizeImage
= 0;
1799 pbmi
->bmiHeader
.biXPelsPerMeter
= 0;
1800 pbmi
->bmiHeader
.biYPelsPerMeter
= 0;
1801 pbmi
->bmiHeader
.biClrUsed
= 0;
1802 pbmi
->bmiHeader
.biClrImportant
= 0;
1804 hbitmap
= CreateDIBSection(0, pbmi
, DIB_RGB_COLORS
, (void**)&bits
, NULL
, 0);
1806 if (!hbitmap
) return GenericError
;
1808 stride
= dib_stride
;
1812 /* Not a GDI format; don't try to make an HBITMAP. */
1817 INT size
= abs(stride
) * height
;
1819 own_bits
= bits
= GdipAlloc(size
);
1820 if (!own_bits
) return OutOfMemory
;
1823 bits
+= stride
* (1 - height
);
1827 *bitmap
= GdipAlloc(sizeof(GpBitmap
));
1830 DeleteObject(hbitmap
);
1835 (*bitmap
)->image
.type
= ImageTypeBitmap
;
1836 memcpy(&(*bitmap
)->image
.format
, &ImageFormatMemoryBMP
, sizeof(GUID
));
1837 (*bitmap
)->image
.flags
= ImageFlagsNone
;
1838 (*bitmap
)->image
.frame_count
= 1;
1839 (*bitmap
)->image
.current_frame
= 0;
1840 (*bitmap
)->image
.palette
= NULL
;
1841 (*bitmap
)->image
.xres
= xres
;
1842 (*bitmap
)->image
.yres
= yres
;
1843 (*bitmap
)->width
= width
;
1844 (*bitmap
)->height
= height
;
1845 (*bitmap
)->format
= format
;
1846 (*bitmap
)->image
.picture
= NULL
;
1847 (*bitmap
)->image
.stream
= NULL
;
1848 (*bitmap
)->hbitmap
= hbitmap
;
1849 (*bitmap
)->hdc
= NULL
;
1850 (*bitmap
)->bits
= bits
;
1851 (*bitmap
)->stride
= stride
;
1852 (*bitmap
)->own_bits
= own_bits
;
1853 (*bitmap
)->metadata_reader
= NULL
;
1854 (*bitmap
)->prop_count
= 0;
1855 (*bitmap
)->prop_item
= NULL
;
1857 /* set format-related flags */
1858 if (format
& (PixelFormatAlpha
|PixelFormatPAlpha
|PixelFormatIndexed
))
1859 (*bitmap
)->image
.flags
|= ImageFlagsHasAlpha
;
1861 if (format
== PixelFormat1bppIndexed
||
1862 format
== PixelFormat4bppIndexed
||
1863 format
== PixelFormat8bppIndexed
)
1865 (*bitmap
)->image
.palette
= GdipAlloc(sizeof(UINT
) * 2 + sizeof(ARGB
) * (1 << PIXELFORMATBPP(format
)));
1867 if (!(*bitmap
)->image
.palette
)
1869 GdipDisposeImage(&(*bitmap
)->image
);
1874 (*bitmap
)->image
.palette
->Count
= 1 << PIXELFORMATBPP(format
);
1876 if (format
== PixelFormat1bppIndexed
)
1878 (*bitmap
)->image
.palette
->Flags
= PaletteFlagsGrayScale
;
1879 (*bitmap
)->image
.palette
->Entries
[0] = 0xff000000;
1880 (*bitmap
)->image
.palette
->Entries
[1] = 0xffffffff;
1884 if (format
== PixelFormat8bppIndexed
)
1885 (*bitmap
)->image
.palette
->Flags
= PaletteFlagsHalftone
;
1887 generate_halftone_palette((*bitmap
)->image
.palette
->Entries
,
1888 (*bitmap
)->image
.palette
->Count
);
1892 TRACE("<-- %p\n", *bitmap
);
1897 GpStatus WINGDIPAPI
GdipCreateBitmapFromStream(IStream
* stream
,
1902 TRACE("%p %p\n", stream
, bitmap
);
1904 stat
= GdipLoadImageFromStream(stream
, (GpImage
**) bitmap
);
1909 if((*bitmap
)->image
.type
!= ImageTypeBitmap
){
1910 GdipDisposeImage(&(*bitmap
)->image
);
1912 return GenericError
; /* FIXME: what error to return? */
1919 GpStatus WINGDIPAPI
GdipCreateBitmapFromStreamICM(IStream
* stream
,
1922 TRACE("%p %p\n", stream
, bitmap
);
1924 return GdipCreateBitmapFromStream(stream
, bitmap
);
1927 GpStatus WINGDIPAPI
GdipCreateCachedBitmap(GpBitmap
*bitmap
, GpGraphics
*graphics
,
1928 GpCachedBitmap
**cachedbmp
)
1932 TRACE("%p %p %p\n", bitmap
, graphics
, cachedbmp
);
1934 if(!bitmap
|| !graphics
|| !cachedbmp
)
1935 return InvalidParameter
;
1937 *cachedbmp
= GdipAlloc(sizeof(GpCachedBitmap
));
1941 stat
= GdipCloneImage(&(bitmap
->image
), &(*cachedbmp
)->image
);
1943 GdipFree(*cachedbmp
);
1950 GpStatus WINGDIPAPI
GdipCreateHICONFromBitmap(GpBitmap
*bitmap
, HICON
*hicon
)
1953 BitmapData lockeddata
;
1954 ULONG andstride
, xorstride
, bitssize
;
1955 LPBYTE andbits
, xorbits
, androw
, xorrow
, srcrow
;
1958 TRACE("(%p, %p)\n", bitmap
, hicon
);
1960 if (!bitmap
|| !hicon
)
1961 return InvalidParameter
;
1963 stat
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
,
1964 PixelFormat32bppPARGB
, &lockeddata
);
1967 andstride
= ((lockeddata
.Width
+31)/32)*4;
1968 xorstride
= lockeddata
.Width
*4;
1969 bitssize
= (andstride
+ xorstride
) * lockeddata
.Height
;
1971 andbits
= GdipAlloc(bitssize
);
1975 xorbits
= andbits
+ andstride
* lockeddata
.Height
;
1977 for (y
=0; y
<lockeddata
.Height
; y
++)
1979 srcrow
= ((LPBYTE
)lockeddata
.Scan0
) + lockeddata
.Stride
* y
;
1981 androw
= andbits
+ andstride
* y
;
1982 for (x
=0; x
<lockeddata
.Width
; x
++)
1983 if (srcrow
[3+4*x
] >= 128)
1984 androw
[x
/8] |= 1 << (7-x
%8);
1986 xorrow
= xorbits
+ xorstride
* y
;
1987 memcpy(xorrow
, srcrow
, xorstride
);
1990 *hicon
= CreateIcon(NULL
, lockeddata
.Width
, lockeddata
.Height
, 1, 32,
1998 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
2004 GpStatus WINGDIPAPI
GdipDeleteCachedBitmap(GpCachedBitmap
*cachedbmp
)
2006 TRACE("%p\n", cachedbmp
);
2009 return InvalidParameter
;
2011 GdipDisposeImage(cachedbmp
->image
);
2012 GdipFree(cachedbmp
);
2017 GpStatus WINGDIPAPI
GdipDrawCachedBitmap(GpGraphics
*graphics
,
2018 GpCachedBitmap
*cachedbmp
, INT x
, INT y
)
2020 TRACE("%p %p %d %d\n", graphics
, cachedbmp
, x
, y
);
2022 if(!graphics
|| !cachedbmp
)
2023 return InvalidParameter
;
2025 return GdipDrawImage(graphics
, cachedbmp
->image
, (REAL
)x
, (REAL
)y
);
2028 GpStatus WINGDIPAPI
GdipEmfToWmfBits(HENHMETAFILE hemf
, UINT cbData16
,
2029 LPBYTE pData16
, INT iMapMode
, INT eFlags
)
2031 FIXME("(%p, %d, %p, %d, %d): stub\n", hemf
, cbData16
, pData16
, iMapMode
, eFlags
);
2032 return NotImplemented
;
2035 /* Internal utility function: Replace the image data of dst with that of src,
2037 static void move_bitmap(GpBitmap
*dst
, GpBitmap
*src
, BOOL clobber_palette
)
2039 assert(src
->image
.type
== ImageTypeBitmap
);
2040 assert(dst
->image
.type
== ImageTypeBitmap
);
2042 GdipFree(dst
->bitmapbits
);
2043 GdipFree(dst
->own_bits
);
2045 DeleteObject(dst
->hbitmap
);
2047 if (clobber_palette
)
2049 GdipFree(dst
->image
.palette
);
2050 dst
->image
.palette
= src
->image
.palette
;
2053 GdipFree(src
->image
.palette
);
2055 dst
->image
.xres
= src
->image
.xres
;
2056 dst
->image
.yres
= src
->image
.yres
;
2057 dst
->width
= src
->width
;
2058 dst
->height
= src
->height
;
2059 dst
->format
= src
->format
;
2060 dst
->hbitmap
= src
->hbitmap
;
2061 dst
->hdc
= src
->hdc
;
2062 dst
->bits
= src
->bits
;
2063 dst
->stride
= src
->stride
;
2064 dst
->own_bits
= src
->own_bits
;
2065 if (dst
->metadata_reader
)
2066 IWICMetadataReader_Release(dst
->metadata_reader
);
2067 dst
->metadata_reader
= src
->metadata_reader
;
2068 GdipFree(dst
->prop_item
);
2069 dst
->prop_item
= src
->prop_item
;
2070 dst
->prop_count
= src
->prop_count
;
2071 if (dst
->image
.stream
)
2072 IStream_Release(dst
->image
.stream
);
2073 dst
->image
.stream
= src
->image
.stream
;
2074 dst
->image
.frame_count
= src
->image
.frame_count
;
2075 dst
->image
.current_frame
= src
->image
.current_frame
;
2076 dst
->image
.format
= src
->image
.format
;
2078 src
->image
.type
= ~0;
2082 static GpStatus
free_image_data(GpImage
*image
)
2085 return InvalidParameter
;
2087 if (image
->type
== ImageTypeBitmap
)
2089 GdipFree(((GpBitmap
*)image
)->bitmapbits
);
2090 GdipFree(((GpBitmap
*)image
)->own_bits
);
2091 DeleteDC(((GpBitmap
*)image
)->hdc
);
2092 DeleteObject(((GpBitmap
*)image
)->hbitmap
);
2093 if (((GpBitmap
*)image
)->metadata_reader
)
2094 IWICMetadataReader_Release(((GpBitmap
*)image
)->metadata_reader
);
2095 GdipFree(((GpBitmap
*)image
)->prop_item
);
2097 else if (image
->type
== ImageTypeMetafile
)
2099 GpMetafile
*metafile
= (GpMetafile
*)image
;
2100 GdipFree(metafile
->comment_data
);
2101 DeleteEnhMetaFile(CloseEnhMetaFile(metafile
->record_dc
));
2102 if (!metafile
->preserve_hemf
)
2103 DeleteEnhMetaFile(metafile
->hemf
);
2104 if (metafile
->record_graphics
)
2106 WARN("metafile closed while recording\n");
2107 /* not sure what to do here; for now just prevent the graphics from functioning or using this object */
2108 metafile
->record_graphics
->image
= NULL
;
2109 metafile
->record_graphics
->busy
= TRUE
;
2114 WARN("invalid image: %p\n", image
);
2118 IPicture_Release(image
->picture
);
2120 IStream_Release(image
->stream
);
2121 GdipFree(image
->palette
);
2126 GpStatus WINGDIPAPI
GdipDisposeImage(GpImage
*image
)
2130 TRACE("%p\n", image
);
2132 status
= free_image_data(image
);
2133 if (status
!= Ok
) return status
;
2140 GpStatus WINGDIPAPI
GdipFindFirstImageItem(GpImage
*image
, ImageItemData
* item
)
2144 TRACE("(%p,%p)\n", image
, item
);
2147 return InvalidParameter
;
2150 FIXME("not implemented\n");
2152 return NotImplemented
;
2155 GpStatus WINGDIPAPI
GdipGetImageItemData(GpImage
*image
, ImageItemData
*item
)
2159 TRACE("(%p,%p)\n", image
, item
);
2162 FIXME("not implemented\n");
2164 return NotImplemented
;
2167 GpStatus WINGDIPAPI
GdipGetImageBounds(GpImage
*image
, GpRectF
*srcRect
,
2170 TRACE("%p %p %p\n", image
, srcRect
, srcUnit
);
2172 if(!image
|| !srcRect
|| !srcUnit
)
2173 return InvalidParameter
;
2174 if(image
->type
== ImageTypeMetafile
){
2175 *srcRect
= ((GpMetafile
*)image
)->bounds
;
2176 *srcUnit
= ((GpMetafile
*)image
)->unit
;
2178 else if(image
->type
== ImageTypeBitmap
){
2179 srcRect
->X
= srcRect
->Y
= 0.0;
2180 srcRect
->Width
= (REAL
) ((GpBitmap
*)image
)->width
;
2181 srcRect
->Height
= (REAL
) ((GpBitmap
*)image
)->height
;
2182 *srcUnit
= UnitPixel
;
2185 srcRect
->X
= srcRect
->Y
= 0.0;
2186 srcRect
->Width
= ipicture_pixel_width(image
->picture
);
2187 srcRect
->Height
= ipicture_pixel_height(image
->picture
);
2188 *srcUnit
= UnitPixel
;
2191 TRACE("returning (%f, %f) (%f, %f) unit type %d\n", srcRect
->X
, srcRect
->Y
,
2192 srcRect
->Width
, srcRect
->Height
, *srcUnit
);
2197 GpStatus WINGDIPAPI
GdipGetImageDimension(GpImage
*image
, REAL
*width
,
2200 TRACE("%p %p %p\n", image
, width
, height
);
2202 if(!image
|| !height
|| !width
)
2203 return InvalidParameter
;
2205 if(image
->type
== ImageTypeMetafile
){
2206 *height
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Height
, ((GpMetafile
*)image
)->unit
, image
->yres
);
2207 *width
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Width
, ((GpMetafile
*)image
)->unit
, image
->xres
);
2209 else if(image
->type
== ImageTypeBitmap
){
2210 *height
= ((GpBitmap
*)image
)->height
;
2211 *width
= ((GpBitmap
*)image
)->width
;
2214 *height
= ipicture_pixel_height(image
->picture
);
2215 *width
= ipicture_pixel_width(image
->picture
);
2218 TRACE("returning (%f, %f)\n", *height
, *width
);
2222 GpStatus WINGDIPAPI
GdipGetImageGraphicsContext(GpImage
*image
,
2223 GpGraphics
**graphics
)
2228 TRACE("%p %p\n", image
, graphics
);
2230 if(!image
|| !graphics
)
2231 return InvalidParameter
;
2233 if (image
->type
== ImageTypeBitmap
&& ((GpBitmap
*)image
)->hbitmap
)
2235 hdc
= ((GpBitmap
*)image
)->hdc
;
2238 hdc
= CreateCompatibleDC(0);
2239 SelectObject(hdc
, ((GpBitmap
*)image
)->hbitmap
);
2240 ((GpBitmap
*)image
)->hdc
= hdc
;
2243 stat
= GdipCreateFromHDC(hdc
, graphics
);
2247 (*graphics
)->image
= image
;
2248 (*graphics
)->xres
= image
->xres
;
2249 (*graphics
)->yres
= image
->yres
;
2252 else if (image
->type
== ImageTypeMetafile
)
2253 stat
= METAFILE_GetGraphicsContext((GpMetafile
*)image
, graphics
);
2255 stat
= graphics_from_image(image
, graphics
);
2260 GpStatus WINGDIPAPI
GdipGetImageHeight(GpImage
*image
, UINT
*height
)
2262 TRACE("%p %p\n", image
, height
);
2264 if(!image
|| !height
)
2265 return InvalidParameter
;
2267 if(image
->type
== ImageTypeMetafile
)
2268 *height
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Height
, ((GpMetafile
*)image
)->unit
, image
->yres
);
2269 else if(image
->type
== ImageTypeBitmap
)
2270 *height
= ((GpBitmap
*)image
)->height
;
2272 *height
= ipicture_pixel_height(image
->picture
);
2274 TRACE("returning %d\n", *height
);
2279 GpStatus WINGDIPAPI
GdipGetImageHorizontalResolution(GpImage
*image
, REAL
*res
)
2282 return InvalidParameter
;
2286 TRACE("(%p) <-- %0.2f\n", image
, *res
);
2291 GpStatus WINGDIPAPI
GdipGetImagePaletteSize(GpImage
*image
, INT
*size
)
2293 TRACE("%p %p\n", image
, size
);
2296 return InvalidParameter
;
2298 if (!image
->palette
|| image
->palette
->Count
== 0)
2299 *size
= sizeof(ColorPalette
);
2301 *size
= sizeof(UINT
)*2 + sizeof(ARGB
)*image
->palette
->Count
;
2303 TRACE("<-- %u\n", *size
);
2308 /* FIXME: test this function for non-bitmap types */
2309 GpStatus WINGDIPAPI
GdipGetImagePixelFormat(GpImage
*image
, PixelFormat
*format
)
2311 TRACE("%p %p\n", image
, format
);
2313 if(!image
|| !format
)
2314 return InvalidParameter
;
2316 if(image
->type
!= ImageTypeBitmap
)
2317 *format
= PixelFormat24bppRGB
;
2319 *format
= ((GpBitmap
*) image
)->format
;
2324 GpStatus WINGDIPAPI
GdipGetImageRawFormat(GpImage
*image
, GUID
*format
)
2326 TRACE("(%p, %p)\n", image
, format
);
2328 if(!image
|| !format
)
2329 return InvalidParameter
;
2331 memcpy(format
, &image
->format
, sizeof(GUID
));
2336 GpStatus WINGDIPAPI
GdipGetImageType(GpImage
*image
, ImageType
*type
)
2338 TRACE("%p %p\n", image
, type
);
2341 return InvalidParameter
;
2343 *type
= image
->type
;
2348 GpStatus WINGDIPAPI
GdipGetImageVerticalResolution(GpImage
*image
, REAL
*res
)
2351 return InvalidParameter
;
2355 TRACE("(%p) <-- %0.2f\n", image
, *res
);
2360 GpStatus WINGDIPAPI
GdipGetImageWidth(GpImage
*image
, UINT
*width
)
2362 TRACE("%p %p\n", image
, width
);
2364 if(!image
|| !width
)
2365 return InvalidParameter
;
2367 if(image
->type
== ImageTypeMetafile
)
2368 *width
= units_to_pixels(((GpMetafile
*)image
)->bounds
.Width
, ((GpMetafile
*)image
)->unit
, image
->xres
);
2369 else if(image
->type
== ImageTypeBitmap
)
2370 *width
= ((GpBitmap
*)image
)->width
;
2372 *width
= ipicture_pixel_width(image
->picture
);
2374 TRACE("returning %d\n", *width
);
2379 GpStatus WINGDIPAPI
GdipGetMetafileHeaderFromMetafile(GpMetafile
* metafile
,
2380 MetafileHeader
* header
)
2384 TRACE("(%p, %p)\n", metafile
, header
);
2386 if(!metafile
|| !header
)
2387 return InvalidParameter
;
2390 FIXME("not implemented\n");
2392 memset(header
, 0, sizeof(MetafileHeader
));
2397 GpStatus WINGDIPAPI
GdipGetMetafileHeaderFromEmf(HENHMETAFILE hEmf
,
2398 MetafileHeader
*header
)
2402 if(!hEmf
|| !header
)
2403 return InvalidParameter
;
2406 FIXME("not implemented\n");
2408 memset(header
, 0, sizeof(MetafileHeader
));
2413 GpStatus WINGDIPAPI
GdipGetMetafileHeaderFromFile(GDIPCONST WCHAR
*filename
,
2414 MetafileHeader
*header
)
2418 TRACE("(%s,%p)\n", debugstr_w(filename
), header
);
2420 if(!filename
|| !header
)
2421 return InvalidParameter
;
2424 FIXME("not implemented\n");
2426 memset(header
, 0, sizeof(MetafileHeader
));
2431 GpStatus WINGDIPAPI
GdipGetMetafileHeaderFromStream(IStream
*stream
,
2432 MetafileHeader
*header
)
2436 TRACE("(%p,%p)\n", stream
, header
);
2438 if(!stream
|| !header
)
2439 return InvalidParameter
;
2442 FIXME("not implemented\n");
2444 memset(header
, 0, sizeof(MetafileHeader
));
2449 GpStatus WINGDIPAPI
GdipGetPropertyCount(GpImage
*image
, UINT
*num
)
2451 TRACE("(%p, %p)\n", image
, num
);
2453 if (!image
|| !num
) return InvalidParameter
;
2457 if (image
->type
== ImageTypeBitmap
)
2459 if (((GpBitmap
*)image
)->prop_item
)
2461 *num
= ((GpBitmap
*)image
)->prop_count
;
2465 if (((GpBitmap
*)image
)->metadata_reader
)
2466 IWICMetadataReader_GetCount(((GpBitmap
*)image
)->metadata_reader
, num
);
2472 GpStatus WINGDIPAPI
GdipGetPropertyIdList(GpImage
*image
, UINT num
, PROPID
*list
)
2475 IWICMetadataReader
*reader
;
2476 IWICEnumMetadataItem
*enumerator
;
2477 UINT prop_count
, i
, items_returned
;
2479 TRACE("(%p, %u, %p)\n", image
, num
, list
);
2481 if (!image
|| !list
) return InvalidParameter
;
2483 if (image
->type
!= ImageTypeBitmap
)
2485 FIXME("Not implemented for type %d\n", image
->type
);
2486 return NotImplemented
;
2489 if (((GpBitmap
*)image
)->prop_item
)
2491 if (num
!= ((GpBitmap
*)image
)->prop_count
) return InvalidParameter
;
2493 for (i
= 0; i
< num
; i
++)
2495 list
[i
] = ((GpBitmap
*)image
)->prop_item
[i
].id
;
2501 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2504 if (num
!= 0) return InvalidParameter
;
2508 hr
= IWICMetadataReader_GetCount(reader
, &prop_count
);
2509 if (FAILED(hr
)) return hresult_to_status(hr
);
2511 if (num
!= prop_count
) return InvalidParameter
;
2513 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2514 if (FAILED(hr
)) return hresult_to_status(hr
);
2516 IWICEnumMetadataItem_Reset(enumerator
);
2518 for (i
= 0; i
< num
; i
++)
2522 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, NULL
, &items_returned
);
2523 if (hr
!= S_OK
) break;
2525 if (id
.vt
!= VT_UI2
)
2527 FIXME("not supported propvariant type for id: %u\n", id
.vt
);
2531 list
[i
] = id
.u
.uiVal
;
2534 IWICEnumMetadataItem_Release(enumerator
);
2536 return hr
== S_OK
? Ok
: hresult_to_status(hr
);
2539 static UINT
propvariant_size(PROPVARIANT
*value
)
2541 switch (value
->vt
& ~VT_VECTOR
)
2547 if (!(value
->vt
& VT_VECTOR
)) return 1;
2548 return value
->u
.caub
.cElems
;
2551 if (!(value
->vt
& VT_VECTOR
)) return 2;
2552 return value
->u
.caui
.cElems
* 2;
2556 if (!(value
->vt
& VT_VECTOR
)) return 4;
2557 return value
->u
.caul
.cElems
* 4;
2561 if (!(value
->vt
& VT_VECTOR
)) return 8;
2562 return value
->u
.cauh
.cElems
* 8;
2564 return value
->u
.pszVal
? strlen(value
->u
.pszVal
) + 1 : 0;
2566 return value
->u
.blob
.cbSize
;
2568 FIXME("not supported variant type %d\n", value
->vt
);
2573 GpStatus WINGDIPAPI
GdipGetPropertyItemSize(GpImage
*image
, PROPID propid
, UINT
*size
)
2576 IWICMetadataReader
*reader
;
2577 PROPVARIANT id
, value
;
2579 TRACE("(%p,%#x,%p)\n", image
, propid
, size
);
2581 if (!size
|| !image
) return InvalidParameter
;
2583 if (image
->type
!= ImageTypeBitmap
)
2585 FIXME("Not implemented for type %d\n", image
->type
);
2586 return NotImplemented
;
2589 if (((GpBitmap
*)image
)->prop_item
)
2593 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2595 if (propid
== ((GpBitmap
*)image
)->prop_item
[i
].id
)
2597 *size
= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
;
2602 return PropertyNotFound
;
2605 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2606 if (!reader
) return PropertyNotFound
;
2609 id
.u
.uiVal
= propid
;
2610 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
2611 if (FAILED(hr
)) return PropertyNotFound
;
2613 *size
= propvariant_size(&value
);
2614 if (*size
) *size
+= sizeof(PropertyItem
);
2615 PropVariantClear(&value
);
2620 #ifndef PropertyTagTypeSByte
2621 #define PropertyTagTypeSByte 6
2622 #define PropertyTagTypeSShort 8
2623 #define PropertyTagTypeFloat 11
2624 #define PropertyTagTypeDouble 12
2627 static UINT
vt_to_itemtype(UINT vt
)
2634 { VT_I1
, PropertyTagTypeSByte
},
2635 { VT_UI1
, PropertyTagTypeByte
},
2636 { VT_I2
, PropertyTagTypeSShort
},
2637 { VT_UI2
, PropertyTagTypeShort
},
2638 { VT_I4
, PropertyTagTypeSLONG
},
2639 { VT_UI4
, PropertyTagTypeLong
},
2640 { VT_I8
, PropertyTagTypeSRational
},
2641 { VT_UI8
, PropertyTagTypeRational
},
2642 { VT_R4
, PropertyTagTypeFloat
},
2643 { VT_R8
, PropertyTagTypeDouble
},
2644 { VT_LPSTR
, PropertyTagTypeASCII
},
2645 { VT_BLOB
, PropertyTagTypeUndefined
}
2648 for (i
= 0; i
< sizeof(vt2type
)/sizeof(vt2type
[0]); i
++)
2650 if (vt2type
[i
].vt
== vt
) return vt2type
[i
].type
;
2652 FIXME("not supported variant type %u\n", vt
);
2656 static GpStatus
propvariant_to_item(PROPVARIANT
*value
, PropertyItem
*item
,
2657 UINT size
, PROPID id
)
2659 UINT item_size
, item_type
;
2661 item_size
= propvariant_size(value
);
2662 if (size
!= item_size
+ sizeof(PropertyItem
)) return InvalidParameter
;
2664 item_type
= vt_to_itemtype(value
->vt
& ~VT_VECTOR
);
2665 if (!item_type
) return InvalidParameter
;
2667 item
->value
= item
+ 1;
2669 switch (value
->vt
& ~VT_VECTOR
)
2673 if (!(value
->vt
& VT_VECTOR
))
2674 *(BYTE
*)item
->value
= value
->u
.bVal
;
2676 memcpy(item
->value
, value
->u
.caub
.pElems
, item_size
);
2680 if (!(value
->vt
& VT_VECTOR
))
2681 *(USHORT
*)item
->value
= value
->u
.uiVal
;
2683 memcpy(item
->value
, value
->u
.caui
.pElems
, item_size
);
2688 if (!(value
->vt
& VT_VECTOR
))
2689 *(ULONG
*)item
->value
= value
->u
.ulVal
;
2691 memcpy(item
->value
, value
->u
.caul
.pElems
, item_size
);
2696 if (!(value
->vt
& VT_VECTOR
))
2697 *(ULONGLONG
*)item
->value
= value
->u
.uhVal
.QuadPart
;
2699 memcpy(item
->value
, value
->u
.cauh
.pElems
, item_size
);
2702 memcpy(item
->value
, value
->u
.pszVal
, item_size
);
2705 memcpy(item
->value
, value
->u
.blob
.pBlobData
, item_size
);
2708 FIXME("not supported variant type %d\n", value
->vt
);
2709 return InvalidParameter
;
2712 item
->length
= item_size
;
2713 item
->type
= item_type
;
2719 GpStatus WINGDIPAPI
GdipGetPropertyItem(GpImage
*image
, PROPID propid
, UINT size
,
2720 PropertyItem
*buffer
)
2724 IWICMetadataReader
*reader
;
2725 PROPVARIANT id
, value
;
2727 TRACE("(%p,%#x,%u,%p)\n", image
, propid
, size
, buffer
);
2729 if (!image
|| !buffer
) return InvalidParameter
;
2731 if (image
->type
!= ImageTypeBitmap
)
2733 FIXME("Not implemented for type %d\n", image
->type
);
2734 return NotImplemented
;
2737 if (((GpBitmap
*)image
)->prop_item
)
2741 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2743 if (propid
== ((GpBitmap
*)image
)->prop_item
[i
].id
)
2745 if (size
!= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
)
2746 return InvalidParameter
;
2748 *buffer
= ((GpBitmap
*)image
)->prop_item
[i
];
2749 buffer
->value
= buffer
+ 1;
2750 memcpy(buffer
->value
, ((GpBitmap
*)image
)->prop_item
[i
].value
, buffer
->length
);
2755 return PropertyNotFound
;
2758 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2759 if (!reader
) return PropertyNotFound
;
2762 id
.u
.uiVal
= propid
;
2763 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
2764 if (FAILED(hr
)) return PropertyNotFound
;
2766 stat
= propvariant_to_item(&value
, buffer
, size
, propid
);
2767 PropVariantClear(&value
);
2772 GpStatus WINGDIPAPI
GdipGetPropertySize(GpImage
*image
, UINT
*size
, UINT
*count
)
2775 IWICMetadataReader
*reader
;
2776 IWICEnumMetadataItem
*enumerator
;
2777 UINT prop_count
, prop_size
, i
;
2778 PROPVARIANT id
, value
;
2780 TRACE("(%p,%p,%p)\n", image
, size
, count
);
2782 if (!image
|| !size
|| !count
) return InvalidParameter
;
2784 if (image
->type
!= ImageTypeBitmap
)
2786 FIXME("Not implemented for type %d\n", image
->type
);
2787 return NotImplemented
;
2790 if (((GpBitmap
*)image
)->prop_item
)
2792 *count
= ((GpBitmap
*)image
)->prop_count
;
2795 for (i
= 0; i
< ((GpBitmap
*)image
)->prop_count
; i
++)
2797 *size
+= sizeof(PropertyItem
) + ((GpBitmap
*)image
)->prop_item
[i
].length
;
2803 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2804 if (!reader
) return PropertyNotFound
;
2806 hr
= IWICMetadataReader_GetCount(reader
, &prop_count
);
2807 if (FAILED(hr
)) return hresult_to_status(hr
);
2809 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2810 if (FAILED(hr
)) return hresult_to_status(hr
);
2812 IWICEnumMetadataItem_Reset(enumerator
);
2816 PropVariantInit(&id
);
2817 PropVariantInit(&value
);
2819 for (i
= 0; i
< prop_count
; i
++)
2821 UINT items_returned
, item_size
;
2823 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, &value
, &items_returned
);
2824 if (hr
!= S_OK
) break;
2826 item_size
= propvariant_size(&value
);
2827 if (item_size
) prop_size
+= sizeof(PropertyItem
) + item_size
;
2829 PropVariantClear(&id
);
2830 PropVariantClear(&value
);
2833 IWICEnumMetadataItem_Release(enumerator
);
2835 if (hr
!= S_OK
) return PropertyNotFound
;
2837 *count
= prop_count
;
2842 GpStatus WINGDIPAPI
GdipGetAllPropertyItems(GpImage
*image
, UINT size
,
2843 UINT count
, PropertyItem
*buf
)
2847 IWICMetadataReader
*reader
;
2848 IWICEnumMetadataItem
*enumerator
;
2849 UINT prop_count
, prop_size
, i
;
2850 PROPVARIANT id
, value
;
2853 TRACE("(%p,%u,%u,%p)\n", image
, size
, count
, buf
);
2855 if (!image
|| !buf
) return InvalidParameter
;
2857 if (image
->type
!= ImageTypeBitmap
)
2859 FIXME("Not implemented for type %d\n", image
->type
);
2860 return NotImplemented
;
2863 status
= GdipGetPropertySize(image
, &prop_size
, &prop_count
);
2864 if (status
!= Ok
) return status
;
2866 if (prop_count
!= count
|| prop_size
!= size
) return InvalidParameter
;
2868 if (((GpBitmap
*)image
)->prop_item
)
2870 memcpy(buf
, ((GpBitmap
*)image
)->prop_item
, prop_size
);
2872 item_value
= (char *)(buf
+ prop_count
);
2874 for (i
= 0; i
< prop_count
; i
++)
2876 buf
[i
].value
= item_value
;
2877 item_value
+= buf
[i
].length
;
2883 reader
= ((GpBitmap
*)image
)->metadata_reader
;
2884 if (!reader
) return PropertyNotFound
;
2886 hr
= IWICMetadataReader_GetEnumerator(reader
, &enumerator
);
2887 if (FAILED(hr
)) return hresult_to_status(hr
);
2889 IWICEnumMetadataItem_Reset(enumerator
);
2891 item_value
= (char *)(buf
+ prop_count
);
2893 PropVariantInit(&id
);
2894 PropVariantInit(&value
);
2896 for (i
= 0; i
< prop_count
; i
++)
2899 UINT items_returned
, item_size
;
2901 hr
= IWICEnumMetadataItem_Next(enumerator
, 1, NULL
, &id
, &value
, &items_returned
);
2902 if (hr
!= S_OK
) break;
2904 if (id
.vt
!= VT_UI2
)
2906 FIXME("not supported propvariant type for id: %u\n", id
.vt
);
2910 item_size
= propvariant_size(&value
);
2913 item
= HeapAlloc(GetProcessHeap(), 0, item_size
+ sizeof(*item
));
2915 propvariant_to_item(&value
, item
, item_size
+ sizeof(*item
), id
.u
.uiVal
);
2916 buf
[i
].id
= item
->id
;
2917 buf
[i
].type
= item
->type
;
2918 buf
[i
].length
= item_size
;
2919 buf
[i
].value
= item_value
;
2920 memcpy(item_value
, item
->value
, item_size
);
2921 item_value
+= item_size
;
2923 HeapFree(GetProcessHeap(), 0, item
);
2926 PropVariantClear(&id
);
2927 PropVariantClear(&value
);
2930 IWICEnumMetadataItem_Release(enumerator
);
2932 if (hr
!= S_OK
) return PropertyNotFound
;
2937 struct image_format_dimension
2940 const GUID
*dimension
;
2943 static const struct image_format_dimension image_format_dimensions
[] =
2945 {&ImageFormatGIF
, &FrameDimensionTime
},
2946 {&ImageFormatIcon
, &FrameDimensionResolution
},
2950 GpStatus WINGDIPAPI
GdipImageGetFrameCount(GpImage
*image
,
2951 GDIPCONST GUID
* dimensionID
, UINT
* count
)
2953 TRACE("(%p,%s,%p)\n", image
, debugstr_guid(dimensionID
), count
);
2955 if(!image
|| !count
)
2956 return InvalidParameter
;
2959 IsEqualGUID(dimensionID
, &image
->format
) ||
2960 IsEqualGUID(dimensionID
, &FrameDimensionPage
) ||
2961 IsEqualGUID(dimensionID
, &FrameDimensionTime
))
2963 *count
= image
->frame_count
;
2967 return InvalidParameter
;
2970 GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsCount(GpImage
*image
,
2973 TRACE("(%p, %p)\n", image
, count
);
2975 /* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
2977 if(!image
|| !count
)
2978 return InvalidParameter
;
2985 GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsList(GpImage
* image
,
2986 GUID
* dimensionIDs
, UINT count
)
2989 const GUID
*result
=NULL
;
2991 TRACE("(%p,%p,%u)\n", image
, dimensionIDs
, count
);
2993 if(!image
|| !dimensionIDs
|| count
!= 1)
2994 return InvalidParameter
;
2996 for (i
=0; image_format_dimensions
[i
].format
; i
++)
2998 if (IsEqualGUID(&image
->format
, image_format_dimensions
[i
].format
))
3000 result
= image_format_dimensions
[i
].dimension
;
3006 result
= &FrameDimensionPage
;
3008 memcpy(dimensionIDs
, result
, sizeof(GUID
));
3013 GpStatus WINGDIPAPI
GdipLoadImageFromFile(GDIPCONST WCHAR
* filename
,
3019 TRACE("(%s) %p\n", debugstr_w(filename
), image
);
3021 if (!filename
|| !image
)
3022 return InvalidParameter
;
3024 stat
= GdipCreateStreamOnFile(filename
, GENERIC_READ
, &stream
);
3029 stat
= GdipLoadImageFromStream(stream
, image
);
3031 IStream_Release(stream
);
3036 /* FIXME: no icm handling */
3037 GpStatus WINGDIPAPI
GdipLoadImageFromFileICM(GDIPCONST WCHAR
* filename
,GpImage
**image
)
3039 TRACE("(%s) %p\n", debugstr_w(filename
), image
);
3041 return GdipLoadImageFromFile(filename
, image
);
3044 static void add_property(GpBitmap
*bitmap
, PropertyItem
*item
)
3046 UINT prop_size
, prop_count
;
3047 PropertyItem
*prop_item
;
3049 if (bitmap
->prop_item
== NULL
)
3051 prop_size
= prop_count
= 0;
3052 prop_item
= GdipAlloc(item
->length
+ sizeof(PropertyItem
));
3053 if (!prop_item
) return;
3060 GdipGetPropertySize((GpImage
*)bitmap
, &prop_size
, &prop_count
);
3062 prop_item
= GdipAlloc(prop_size
+ item
->length
+ sizeof(PropertyItem
));
3063 if (!prop_item
) return;
3064 memcpy(prop_item
, bitmap
->prop_item
, sizeof(PropertyItem
) * bitmap
->prop_count
);
3065 prop_size
-= sizeof(PropertyItem
) * bitmap
->prop_count
;
3066 memcpy(prop_item
+ prop_count
+ 1, bitmap
->prop_item
+ prop_count
, prop_size
);
3068 item_value
= (char *)(prop_item
+ prop_count
+ 1);
3070 for (i
= 0; i
< prop_count
; i
++)
3072 prop_item
[i
].value
= item_value
;
3073 item_value
+= prop_item
[i
].length
;
3077 prop_item
[prop_count
].id
= item
->id
;
3078 prop_item
[prop_count
].type
= item
->type
;
3079 prop_item
[prop_count
].length
= item
->length
;
3080 prop_item
[prop_count
].value
= (char *)(prop_item
+ prop_count
+ 1) + prop_size
;
3081 memcpy(prop_item
[prop_count
].value
, item
->value
, item
->length
);
3083 GdipFree(bitmap
->prop_item
);
3084 bitmap
->prop_item
= prop_item
;
3085 bitmap
->prop_count
++;
3088 static BOOL
get_bool_property(IWICMetadataReader
*reader
, const GUID
*guid
, const WCHAR
*prop_name
)
3092 PROPVARIANT id
, value
;
3095 IWICMetadataReader_GetMetadataFormat(reader
, &format
);
3096 if (!IsEqualGUID(&format
, guid
)) return FALSE
;
3098 PropVariantInit(&id
);
3099 PropVariantInit(&value
);
3102 id
.u
.pwszVal
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(prop_name
) + 1) * sizeof(WCHAR
));
3103 if (!id
.u
.pwszVal
) return FALSE
;
3104 lstrcpyW(id
.u
.pwszVal
, prop_name
);
3105 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
3106 if (hr
== S_OK
&& value
.vt
== VT_BOOL
)
3107 ret
= value
.u
.boolVal
;
3109 PropVariantClear(&id
);
3110 PropVariantClear(&value
);
3115 static PropertyItem
*get_property(IWICMetadataReader
*reader
, const GUID
*guid
, const WCHAR
*prop_name
)
3119 PROPVARIANT id
, value
;
3120 PropertyItem
*item
= NULL
;
3122 IWICMetadataReader_GetMetadataFormat(reader
, &format
);
3123 if (!IsEqualGUID(&format
, guid
)) return NULL
;
3125 PropVariantInit(&id
);
3126 PropVariantInit(&value
);
3129 id
.u
.pwszVal
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(prop_name
) + 1) * sizeof(WCHAR
));
3130 if (!id
.u
.pwszVal
) return NULL
;
3131 lstrcpyW(id
.u
.pwszVal
, prop_name
);
3132 hr
= IWICMetadataReader_GetValue(reader
, NULL
, &id
, &value
);
3135 UINT item_size
= propvariant_size(&value
);
3138 item_size
+= sizeof(*item
);
3139 item
= GdipAlloc(item_size
);
3140 if (propvariant_to_item(&value
, item
, item_size
, 0) != Ok
)
3148 PropVariantClear(&id
);
3149 PropVariantClear(&value
);
3154 static PropertyItem
*get_gif_comment(IWICMetadataReader
*reader
)
3156 static const WCHAR textentryW
[] = { 'T','e','x','t','E','n','t','r','y',0 };
3157 PropertyItem
*comment
;
3159 comment
= get_property(reader
, &GUID_MetadataFormatGifComment
, textentryW
);
3161 comment
->id
= PropertyTagExifUserComment
;
3166 static PropertyItem
*get_gif_loopcount(IWICMetadataReader
*reader
)
3168 static const WCHAR applicationW
[] = { 'A','p','p','l','i','c','a','t','i','o','n',0 };
3169 static const WCHAR dataW
[] = { 'D','a','t','a',0 };
3170 PropertyItem
*appext
= NULL
, *appdata
= NULL
, *loop
= NULL
;
3172 appext
= get_property(reader
, &GUID_MetadataFormatAPE
, applicationW
);
3175 if (appext
->type
== PropertyTagTypeByte
&& appext
->length
== 11 &&
3176 (!memcmp(appext
->value
, "NETSCAPE2.0", 11) || !memcmp(appext
->value
, "ANIMEXTS1.0", 11)))
3178 appdata
= get_property(reader
, &GUID_MetadataFormatAPE
, dataW
);
3181 if (appdata
->type
== PropertyTagTypeByte
&& appdata
->length
== 4)
3183 BYTE
*data
= appdata
->value
;
3184 if (data
[0] == 3 && data
[1] == 1)
3186 loop
= GdipAlloc(sizeof(*loop
) + sizeof(SHORT
));
3189 loop
->type
= PropertyTagTypeShort
;
3190 loop
->id
= PropertyTagLoopCount
;
3191 loop
->length
= sizeof(SHORT
);
3192 loop
->value
= loop
+ 1;
3193 *(SHORT
*)loop
->value
= data
[2] | (data
[3] << 8);
3207 static PropertyItem
*get_gif_background(IWICMetadataReader
*reader
)
3209 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 };
3210 PropertyItem
*background
;
3212 background
= get_property(reader
, &GUID_MetadataFormatLSD
, backgroundW
);
3214 background
->id
= PropertyTagIndexBackground
;
3219 static PropertyItem
*get_gif_palette(IWICBitmapDecoder
*decoder
, IWICMetadataReader
*reader
)
3221 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 };
3223 IWICImagingFactory
*factory
;
3224 IWICPalette
*palette
;
3226 WICColor colors
[256];
3228 if (!get_bool_property(reader
, &GUID_MetadataFormatLSD
, global_flagW
))
3231 hr
= CoCreateInstance(&CLSID_WICImagingFactory
, NULL
, CLSCTX_INPROC_SERVER
,
3232 &IID_IWICImagingFactory
, (void **)&factory
);
3233 if (hr
!= S_OK
) return NULL
;
3235 hr
= IWICImagingFactory_CreatePalette(factory
, &palette
);
3238 hr
= IWICBitmapDecoder_CopyPalette(decoder
, palette
);
3240 IWICPalette_GetColors(palette
, 256, colors
, &count
);
3242 IWICPalette_Release(palette
);
3245 IWICImagingFactory_Release(factory
);
3253 pal
= GdipAlloc(sizeof(*pal
) + count
* 3);
3254 if (!pal
) return NULL
;
3255 pal
->type
= PropertyTagTypeByte
;
3256 pal
->id
= PropertyTagGlobalPalette
;
3257 pal
->value
= pal
+ 1;
3258 pal
->length
= count
* 3;
3262 for (i
= 0; i
< count
; i
++)
3264 rgb
[i
*3] = (colors
[i
] >> 16) & 0xff;
3265 rgb
[i
*3 + 1] = (colors
[i
] >> 8) & 0xff;
3266 rgb
[i
*3 + 2] = colors
[i
] & 0xff;
3275 static PropertyItem
*get_gif_transparent_idx(IWICMetadataReader
*reader
)
3277 static const WCHAR transparency_flagW
[] = { 'T','r','a','n','s','p','a','r','e','n','c','y','F','l','a','g',0 };
3278 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 };
3279 PropertyItem
*index
= NULL
;
3281 if (get_bool_property(reader
, &GUID_MetadataFormatGCE
, transparency_flagW
))
3283 index
= get_property(reader
, &GUID_MetadataFormatGCE
, colorW
);
3285 index
->id
= PropertyTagIndexTransparent
;
3290 static LONG
get_gif_frame_delay(IWICBitmapFrameDecode
*frame
)
3292 static const WCHAR delayW
[] = { 'D','e','l','a','y',0 };
3294 IWICMetadataBlockReader
*block_reader
;
3295 IWICMetadataReader
*reader
;
3296 UINT block_count
, i
;
3297 PropertyItem
*delay
;
3300 hr
= IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3303 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3306 for (i
= 0; i
< block_count
; i
++)
3308 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3311 delay
= get_property(reader
, &GUID_MetadataFormatGCE
, delayW
);
3314 if (delay
->type
== PropertyTagTypeShort
&& delay
->length
== 2)
3315 value
= *(SHORT
*)delay
->value
;
3319 IWICMetadataReader_Release(reader
);
3323 IWICMetadataBlockReader_Release(block_reader
);
3329 static void gif_metadata_reader(GpBitmap
*bitmap
, IWICBitmapDecoder
*decoder
, UINT active_frame
)
3332 IWICBitmapFrameDecode
*frame
;
3333 IWICMetadataBlockReader
*block_reader
;
3334 IWICMetadataReader
*reader
;
3335 UINT frame_count
, block_count
, i
;
3336 PropertyItem
*delay
= NULL
, *comment
= NULL
, *background
= NULL
;
3337 PropertyItem
*transparent_idx
= NULL
, *loop
= NULL
, *palette
= NULL
;
3339 IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
3340 if (frame_count
> 1)
3342 delay
= GdipAlloc(sizeof(*delay
) + frame_count
* sizeof(LONG
));
3347 delay
->type
= PropertyTagTypeLong
;
3348 delay
->id
= PropertyTagFrameDelay
;
3349 delay
->length
= frame_count
* sizeof(LONG
);
3350 delay
->value
= delay
+ 1;
3352 value
= delay
->value
;
3354 for (i
= 0; i
< frame_count
; i
++)
3356 hr
= IWICBitmapDecoder_GetFrame(decoder
, i
, &frame
);
3359 value
[i
] = get_gif_frame_delay(frame
);
3360 IWICBitmapFrameDecode_Release(frame
);
3367 hr
= IWICBitmapDecoder_QueryInterface(decoder
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3370 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3373 for (i
= 0; i
< block_count
; i
++)
3375 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3379 comment
= get_gif_comment(reader
);
3381 if (frame_count
> 1 && !loop
)
3382 loop
= get_gif_loopcount(reader
);
3385 background
= get_gif_background(reader
);
3388 palette
= get_gif_palette(decoder
, reader
);
3390 IWICMetadataReader_Release(reader
);
3394 IWICMetadataBlockReader_Release(block_reader
);
3397 if (frame_count
> 1 && !loop
)
3399 loop
= GdipAlloc(sizeof(*loop
) + sizeof(SHORT
));
3402 loop
->type
= PropertyTagTypeShort
;
3403 loop
->id
= PropertyTagLoopCount
;
3404 loop
->length
= sizeof(SHORT
);
3405 loop
->value
= loop
+ 1;
3406 *(SHORT
*)loop
->value
= 1;
3410 if (delay
) add_property(bitmap
, delay
);
3411 if (comment
) add_property(bitmap
, comment
);
3412 if (loop
) add_property(bitmap
, loop
);
3413 if (palette
) add_property(bitmap
, palette
);
3414 if (background
) add_property(bitmap
, background
);
3420 GdipFree(background
);
3422 /* Win7 gdiplus always returns transparent color index from frame 0 */
3423 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &frame
);
3424 if (hr
!= S_OK
) return;
3426 hr
= IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
);
3429 hr
= IWICMetadataBlockReader_GetCount(block_reader
, &block_count
);
3432 for (i
= 0; i
< block_count
; i
++)
3434 hr
= IWICMetadataBlockReader_GetReaderByIndex(block_reader
, i
, &reader
);
3437 if (!transparent_idx
)
3438 transparent_idx
= get_gif_transparent_idx(reader
);
3440 IWICMetadataReader_Release(reader
);
3444 IWICMetadataBlockReader_Release(block_reader
);
3447 if (transparent_idx
) add_property(bitmap
, transparent_idx
);
3448 GdipFree(transparent_idx
);
3450 IWICBitmapFrameDecode_Release(frame
);
3453 typedef void (*metadata_reader_func
)(GpBitmap
*bitmap
, IWICBitmapDecoder
*decoder
, UINT frame
);
3455 static GpStatus
decode_image_wic(IStream
*stream
, GDIPCONST CLSID
*clsid
,
3456 UINT active_frame
, metadata_reader_func metadata_reader
, GpImage
**image
)
3461 IWICBitmapDecoder
*decoder
;
3462 IWICBitmapFrameDecode
*frame
;
3463 IWICBitmapSource
*source
=NULL
;
3464 IWICMetadataBlockReader
*block_reader
;
3465 WICPixelFormatGUID wic_format
;
3466 PixelFormat gdip_format
=0;
3467 ColorPalette
*palette
= NULL
;
3468 WICBitmapPaletteType palette_type
= WICBitmapPaletteTypeFixedHalftone256
;
3470 UINT width
, height
, frame_count
;
3471 BitmapData lockeddata
;
3475 TRACE("%p,%s,%u,%p\n", stream
, wine_dbgstr_guid(clsid
), active_frame
, image
);
3477 initresult
= CoInitialize(NULL
);
3479 hr
= CoCreateInstance(clsid
, NULL
, CLSCTX_INPROC_SERVER
,
3480 &IID_IWICBitmapDecoder
, (void**)&decoder
);
3481 if (FAILED(hr
)) goto end
;
3483 hr
= IWICBitmapDecoder_Initialize(decoder
, stream
, WICDecodeMetadataCacheOnLoad
);
3486 IWICBitmapDecoder_GetFrameCount(decoder
, &frame_count
);
3487 hr
= IWICBitmapDecoder_GetFrame(decoder
, active_frame
, &frame
);
3490 if (SUCCEEDED(hr
)) /* got frame */
3492 hr
= IWICBitmapFrameDecode_GetPixelFormat(frame
, &wic_format
);
3496 IWICBitmapSource
*bmp_source
;
3497 IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICBitmapSource
, (void **)&bmp_source
);
3499 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
3501 if (IsEqualGUID(&wic_format
, pixel_formats
[i
].wic_format
))
3503 source
= bmp_source
;
3504 gdip_format
= pixel_formats
[i
].gdip_format
;
3505 palette_type
= pixel_formats
[i
].palette_type
;
3511 /* unknown format; fall back on 32bppARGB */
3512 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
, bmp_source
, &source
);
3513 gdip_format
= PixelFormat32bppARGB
;
3514 IWICBitmapSource_Release(bmp_source
);
3516 TRACE("%s => %#x\n", wine_dbgstr_guid(&wic_format
), gdip_format
);
3519 if (SUCCEEDED(hr
)) /* got source */
3521 hr
= IWICBitmapSource_GetSize(source
, &width
, &height
);
3524 status
= GdipCreateBitmapFromScan0(width
, height
, 0, gdip_format
,
3527 if (SUCCEEDED(hr
) && status
== Ok
) /* created bitmap */
3529 status
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeWrite
,
3530 gdip_format
, &lockeddata
);
3531 if (status
== Ok
) /* locked bitmap */
3536 for (i
=0; i
<height
; i
++)
3539 hr
= IWICBitmapSource_CopyPixels(source
, &wrc
, abs(lockeddata
.Stride
),
3540 abs(lockeddata
.Stride
), (BYTE
*)lockeddata
.Scan0
+lockeddata
.Stride
*i
);
3541 if (FAILED(hr
)) break;
3544 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
3547 if (SUCCEEDED(hr
) && status
== Ok
)
3548 *image
= (GpImage
*)bitmap
;
3552 GdipDisposeImage((GpImage
*)bitmap
);
3555 if (SUCCEEDED(hr
) && status
== Ok
)
3558 hr
= IWICBitmapSource_GetResolution(source
, &dpix
, &dpiy
);
3561 bitmap
->image
.xres
= dpix
;
3562 bitmap
->image
.yres
= dpiy
;
3568 IWICBitmapSource_Release(source
);
3571 if (SUCCEEDED(hr
)) {
3572 bitmap
->metadata_reader
= NULL
;
3574 if (metadata_reader
)
3575 metadata_reader(bitmap
, decoder
, active_frame
);
3576 else if (IWICBitmapFrameDecode_QueryInterface(frame
, &IID_IWICMetadataBlockReader
, (void **)&block_reader
) == S_OK
)
3578 UINT block_count
= 0;
3579 if (IWICMetadataBlockReader_GetCount(block_reader
, &block_count
) == S_OK
&& block_count
)
3580 IWICMetadataBlockReader_GetReaderByIndex(block_reader
, 0, &bitmap
->metadata_reader
);
3581 IWICMetadataBlockReader_Release(block_reader
);
3584 palette
= get_palette(frame
, palette_type
);
3585 IWICBitmapFrameDecode_Release(frame
);
3589 IWICBitmapDecoder_Release(decoder
);
3592 if (SUCCEEDED(initresult
)) CoUninitialize();
3594 if (FAILED(hr
) && status
== Ok
) status
= hresult_to_status(hr
);
3598 /* Native GDI+ used to be smarter, but since Win7 it just sets these flags. */
3599 bitmap
->image
.flags
|= ImageFlagsReadOnly
|ImageFlagsHasRealPixelSize
|ImageFlagsHasRealDPI
|ImageFlagsColorSpaceRGB
;
3600 bitmap
->image
.frame_count
= frame_count
;
3601 bitmap
->image
.current_frame
= active_frame
;
3602 bitmap
->image
.stream
= stream
;
3605 GdipFree(bitmap
->image
.palette
);
3606 bitmap
->image
.palette
= palette
;
3610 if (IsEqualGUID(&wic_format
, &GUID_WICPixelFormatBlackWhite
))
3611 bitmap
->image
.palette
->Flags
= 0;
3613 /* Pin the source stream */
3614 IStream_AddRef(stream
);
3615 TRACE("=> %p\n", *image
);
3621 static GpStatus
decode_image_icon(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3623 return decode_image_wic(stream
, &CLSID_WICIcoDecoder
, active_frame
, NULL
, image
);
3626 static GpStatus
decode_image_bmp(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3631 status
= decode_image_wic(stream
, &CLSID_WICBmpDecoder
, active_frame
, NULL
, image
);
3633 bitmap
= (GpBitmap
*)*image
;
3635 if (status
== Ok
&& bitmap
->format
== PixelFormat32bppARGB
)
3637 /* WIC supports bmp files with alpha, but gdiplus does not */
3638 bitmap
->format
= PixelFormat32bppRGB
;
3644 static GpStatus
decode_image_jpeg(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3646 return decode_image_wic(stream
, &CLSID_WICJpegDecoder
, active_frame
, NULL
, image
);
3649 static GpStatus
decode_image_png(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3651 return decode_image_wic(stream
, &CLSID_WICPngDecoder
, active_frame
, NULL
, image
);
3654 static GpStatus
decode_image_gif(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3656 return decode_image_wic(stream
, &CLSID_WICGifDecoder
, active_frame
, gif_metadata_reader
, image
);
3659 static GpStatus
decode_image_tiff(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3661 return decode_image_wic(stream
, &CLSID_WICTiffDecoder
, active_frame
, NULL
, image
);
3664 static GpStatus
decode_image_olepicture_metafile(IStream
* stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
)
3668 TRACE("%p %p\n", stream
, image
);
3670 if(!stream
|| !image
)
3671 return InvalidParameter
;
3673 if(OleLoadPicture(stream
, 0, FALSE
, &IID_IPicture
,
3674 (LPVOID
*) &pic
) != S_OK
){
3675 TRACE("Could not load picture\n");
3676 return GenericError
;
3679 /* FIXME: missing initialization code */
3680 *image
= GdipAlloc(sizeof(GpMetafile
));
3681 if(!*image
) return OutOfMemory
;
3682 (*image
)->type
= ImageTypeMetafile
;
3683 (*image
)->stream
= NULL
;
3684 (*image
)->picture
= pic
;
3685 (*image
)->flags
= ImageFlagsNone
;
3686 (*image
)->frame_count
= 1;
3687 (*image
)->current_frame
= 0;
3688 (*image
)->palette
= NULL
;
3690 TRACE("<-- %p\n", *image
);
3695 typedef GpStatus (*encode_image_func
)(GpImage
*image
, IStream
* stream
,
3696 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
);
3698 typedef GpStatus (*decode_image_func
)(IStream
*stream
, REFCLSID clsid
, UINT active_frame
, GpImage
**image
);
3700 typedef struct image_codec
{
3701 ImageCodecInfo info
;
3702 encode_image_func encode_func
;
3703 decode_image_func decode_func
;
3718 static const struct image_codec codecs
[NUM_CODECS
];
3720 static GpStatus
get_decoder_info(IStream
* stream
, const struct image_codec
**result
)
3723 const BYTE
*pattern
, *mask
;
3730 /* seek to the start of the stream */
3732 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
3733 if (FAILED(hr
)) return hresult_to_status(hr
);
3735 /* read the first 8 bytes */
3736 /* FIXME: This assumes all codecs have signatures <= 8 bytes in length */
3737 hr
= IStream_Read(stream
, signature
, 8, &bytesread
);
3738 if (FAILED(hr
)) return hresult_to_status(hr
);
3739 if (hr
== S_FALSE
|| bytesread
== 0) return GenericError
;
3741 for (i
= 0; i
< NUM_CODECS
; i
++) {
3742 if ((codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
) &&
3743 bytesread
>= codecs
[i
].info
.SigSize
)
3745 for (sig
=0; sig
<codecs
[i
].info
.SigCount
; sig
++)
3747 pattern
= &codecs
[i
].info
.SigPattern
[codecs
[i
].info
.SigSize
*sig
];
3748 mask
= &codecs
[i
].info
.SigMask
[codecs
[i
].info
.SigSize
*sig
];
3749 for (j
=0; j
<codecs
[i
].info
.SigSize
; j
++)
3750 if ((signature
[j
] & mask
[j
]) != pattern
[j
])
3752 if (j
== codecs
[i
].info
.SigSize
)
3754 *result
= &codecs
[i
];
3761 TRACE("no match for %i byte signature %x %x %x %x %x %x %x %x\n", bytesread
,
3762 signature
[0],signature
[1],signature
[2],signature
[3],
3763 signature
[4],signature
[5],signature
[6],signature
[7]);
3765 return GenericError
;
3768 GpStatus WINGDIPAPI
GdipImageSelectActiveFrame(GpImage
*image
, GDIPCONST GUID
*dimensionID
,
3774 const struct image_codec
*codec
= NULL
;
3777 TRACE("(%p,%s,%u)\n", image
, debugstr_guid(dimensionID
), frame
);
3779 if (!image
|| !dimensionID
)
3780 return InvalidParameter
;
3782 if (frame
>= image
->frame_count
)
3784 WARN("requested frame %u, but image has only %u\n", frame
, image
->frame_count
);
3785 return InvalidParameter
;
3788 if (image
->type
!= ImageTypeBitmap
&& image
->type
!= ImageTypeMetafile
)
3790 WARN("invalid image type %d\n", image
->type
);
3791 return InvalidParameter
;
3794 if (image
->current_frame
== frame
)
3799 TRACE("image doesn't have an associated stream\n");
3803 /* choose an appropriate image decoder */
3804 stat
= get_decoder_info(image
->stream
, &codec
);
3807 WARN("can't find decoder info\n");
3811 /* seek to the start of the stream */
3813 hr
= IStream_Seek(image
->stream
, seek
, STREAM_SEEK_SET
, NULL
);
3815 return hresult_to_status(hr
);
3817 /* call on the image decoder to do the real work */
3818 stat
= codec
->decode_func(image
->stream
, &codec
->info
.Clsid
, frame
, &new_image
);
3822 memcpy(&new_image
->format
, &codec
->info
.FormatID
, sizeof(GUID
));
3823 free_image_data(image
);
3824 if (image
->type
== ImageTypeBitmap
)
3825 *(GpBitmap
*)image
= *(GpBitmap
*)new_image
;
3826 else if (image
->type
== ImageTypeMetafile
)
3827 *(GpMetafile
*)image
= *(GpMetafile
*)new_image
;
3828 new_image
->type
= ~0;
3829 GdipFree(new_image
);
3836 GpStatus WINGDIPAPI
GdipLoadImageFromStream(IStream
*stream
, GpImage
**image
)
3841 const struct image_codec
*codec
=NULL
;
3843 /* choose an appropriate image decoder */
3844 stat
= get_decoder_info(stream
, &codec
);
3845 if (stat
!= Ok
) return stat
;
3847 /* seek to the start of the stream */
3849 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, NULL
);
3850 if (FAILED(hr
)) return hresult_to_status(hr
);
3852 /* call on the image decoder to do the real work */
3853 stat
= codec
->decode_func(stream
, &codec
->info
.Clsid
, 0, image
);
3855 /* take note of the original data format */
3858 memcpy(&(*image
)->format
, &codec
->info
.FormatID
, sizeof(GUID
));
3866 GpStatus WINGDIPAPI
GdipLoadImageFromStreamICM(IStream
* stream
, GpImage
**image
)
3868 TRACE("%p %p\n", stream
, image
);
3870 return GdipLoadImageFromStream(stream
, image
);
3873 GpStatus WINGDIPAPI
GdipRemovePropertyItem(GpImage
*image
, PROPID propId
)
3877 TRACE("(%p,%u)\n", image
, propId
);
3880 return InvalidParameter
;
3883 FIXME("not implemented\n");
3885 return NotImplemented
;
3888 GpStatus WINGDIPAPI
GdipSetPropertyItem(GpImage
*image
, GDIPCONST PropertyItem
* item
)
3892 if (!image
|| !item
) return InvalidParameter
;
3894 TRACE("(%p,%p:%#x,%u,%u,%p)\n", image
, item
, item
->id
, item
->type
, item
->length
, item
->value
);
3897 FIXME("not implemented\n");
3902 GpStatus WINGDIPAPI
GdipSaveImageToFile(GpImage
*image
, GDIPCONST WCHAR
* filename
,
3903 GDIPCONST CLSID
*clsidEncoder
,
3904 GDIPCONST EncoderParameters
*encoderParams
)
3909 TRACE("%p (%s) %p %p\n", image
, debugstr_w(filename
), clsidEncoder
, encoderParams
);
3911 if (!image
|| !filename
|| !clsidEncoder
)
3912 return InvalidParameter
;
3914 stat
= GdipCreateStreamOnFile(filename
, GENERIC_WRITE
, &stream
);
3916 return GenericError
;
3918 stat
= GdipSaveImageToStream(image
, stream
, clsidEncoder
, encoderParams
);
3920 IStream_Release(stream
);
3924 /*************************************************************************
3925 * Encoding functions -
3926 * These functions encode an image in different image file formats.
3928 #define BITMAP_FORMAT_BMP 0x4d42 /* "BM" */
3929 #define BITMAP_FORMAT_JPEG 0xd8ff
3930 #define BITMAP_FORMAT_GIF 0x4947
3931 #define BITMAP_FORMAT_PNG 0x5089
3932 #define BITMAP_FORMAT_APM 0xcdd7
3934 static GpStatus
encode_image_WIC(GpImage
*image
, IStream
* stream
,
3935 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
3939 IWICBitmapEncoder
*encoder
;
3940 IWICBitmapFrameEncode
*frameencode
;
3941 IPropertyBag2
*encoderoptions
;
3944 PixelFormat gdipformat
=0;
3945 const WICPixelFormatGUID
*desired_wicformat
;
3946 WICPixelFormatGUID wicformat
;
3948 BitmapData lockeddata
;
3952 if (image
->type
!= ImageTypeBitmap
)
3953 return GenericError
;
3955 bitmap
= (GpBitmap
*)image
;
3957 GdipGetImageWidth(image
, &width
);
3958 GdipGetImageHeight(image
, &height
);
3965 initresult
= CoInitialize(NULL
);
3967 hr
= CoCreateInstance(clsid
, NULL
, CLSCTX_INPROC_SERVER
,
3968 &IID_IWICBitmapEncoder
, (void**)&encoder
);
3971 if (SUCCEEDED(initresult
)) CoUninitialize();
3972 return hresult_to_status(hr
);
3975 hr
= IWICBitmapEncoder_Initialize(encoder
, stream
, WICBitmapEncoderNoCache
);
3979 hr
= IWICBitmapEncoder_CreateNewFrame(encoder
, &frameencode
, &encoderoptions
);
3982 if (SUCCEEDED(hr
)) /* created frame */
3984 hr
= IWICBitmapFrameEncode_Initialize(frameencode
, encoderoptions
);
3987 hr
= IWICBitmapFrameEncode_SetSize(frameencode
, width
, height
);
3990 hr
= IWICBitmapFrameEncode_SetResolution(frameencode
, image
->xres
, image
->yres
);
3994 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
3996 if (pixel_formats
[i
].gdip_format
== bitmap
->format
)
3998 desired_wicformat
= pixel_formats
[i
].wic_format
;
3999 gdipformat
= bitmap
->format
;
4005 desired_wicformat
= &GUID_WICPixelFormat32bppBGRA
;
4006 gdipformat
= PixelFormat32bppARGB
;
4009 memcpy(&wicformat
, desired_wicformat
, sizeof(GUID
));
4010 hr
= IWICBitmapFrameEncode_SetPixelFormat(frameencode
, &wicformat
);
4013 if (SUCCEEDED(hr
) && !IsEqualGUID(desired_wicformat
, &wicformat
))
4015 /* Encoder doesn't support this bitmap's format. */
4017 for (i
=0; pixel_formats
[i
].wic_format
; i
++)
4019 if (IsEqualGUID(&wicformat
, pixel_formats
[i
].wic_format
))
4021 gdipformat
= pixel_formats
[i
].gdip_format
;
4027 ERR("Cannot support encoder format %s\n", debugstr_guid(&wicformat
));
4034 stat
= GdipBitmapLockBits(bitmap
, &rc
, ImageLockModeRead
, gdipformat
,
4039 UINT row_size
= (lockeddata
.Width
* PIXELFORMATBPP(gdipformat
) + 7)/8;
4042 /* write one row at a time in case stride is negative */
4043 row
= lockeddata
.Scan0
;
4044 for (i
=0; i
<lockeddata
.Height
; i
++)
4046 hr
= IWICBitmapFrameEncode_WritePixels(frameencode
, 1, row_size
, row_size
, row
);
4047 if (FAILED(hr
)) break;
4048 row
+= lockeddata
.Stride
;
4051 GdipBitmapUnlockBits(bitmap
, &lockeddata
);
4058 hr
= IWICBitmapFrameEncode_Commit(frameencode
);
4060 IWICBitmapFrameEncode_Release(frameencode
);
4061 IPropertyBag2_Release(encoderoptions
);
4065 hr
= IWICBitmapEncoder_Commit(encoder
);
4067 IWICBitmapEncoder_Release(encoder
);
4069 if (SUCCEEDED(initresult
)) CoUninitialize();
4071 return hresult_to_status(hr
);
4074 static GpStatus
encode_image_BMP(GpImage
*image
, IStream
* stream
,
4075 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4077 return encode_image_WIC(image
, stream
, &CLSID_WICBmpEncoder
, params
);
4080 static GpStatus
encode_image_tiff(GpImage
*image
, IStream
* stream
,
4081 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4083 return encode_image_WIC(image
, stream
, &CLSID_WICTiffEncoder
, params
);
4086 static GpStatus
encode_image_png(GpImage
*image
, IStream
* stream
,
4087 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4089 return encode_image_WIC(image
, stream
, &CLSID_WICPngEncoder
, params
);
4092 static GpStatus
encode_image_jpeg(GpImage
*image
, IStream
* stream
,
4093 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4095 return encode_image_WIC(image
, stream
, &CLSID_WICJpegEncoder
, params
);
4098 /*****************************************************************************
4099 * GdipSaveImageToStream [GDIPLUS.@]
4101 GpStatus WINGDIPAPI
GdipSaveImageToStream(GpImage
*image
, IStream
* stream
,
4102 GDIPCONST CLSID
* clsid
, GDIPCONST EncoderParameters
* params
)
4105 encode_image_func encode_image
;
4108 TRACE("%p %p %p %p\n", image
, stream
, clsid
, params
);
4110 if(!image
|| !stream
)
4111 return InvalidParameter
;
4113 /* select correct encoder */
4114 encode_image
= NULL
;
4115 for (i
= 0; i
< NUM_CODECS
; i
++) {
4116 if ((codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
) &&
4117 IsEqualCLSID(clsid
, &codecs
[i
].info
.Clsid
))
4118 encode_image
= codecs
[i
].encode_func
;
4120 if (encode_image
== NULL
)
4121 return UnknownImageFormat
;
4123 stat
= encode_image(image
, stream
, clsid
, params
);
4128 /*****************************************************************************
4129 * GdipSaveAdd [GDIPLUS.@]
4131 GpStatus WINGDIPAPI
GdipSaveAdd(GpImage
*image
, GDIPCONST EncoderParameters
*params
)
4133 FIXME("(%p,%p): stub\n", image
, params
);
4137 /*****************************************************************************
4138 * GdipGetImagePalette [GDIPLUS.@]
4140 GpStatus WINGDIPAPI
GdipGetImagePalette(GpImage
*image
, ColorPalette
*palette
, INT size
)
4144 TRACE("(%p,%p,%i)\n", image
, palette
, size
);
4146 if (!image
|| !palette
)
4147 return InvalidParameter
;
4149 count
= image
->palette
? image
->palette
->Count
: 0;
4151 if (size
< (sizeof(UINT
)*2+sizeof(ARGB
)*count
))
4153 TRACE("<-- InsufficientBuffer\n");
4154 return InsufficientBuffer
;
4159 palette
->Flags
= image
->palette
->Flags
;
4160 palette
->Count
= image
->palette
->Count
;
4161 memcpy(palette
->Entries
, image
->palette
->Entries
, sizeof(ARGB
)*image
->palette
->Count
);
4171 /*****************************************************************************
4172 * GdipSetImagePalette [GDIPLUS.@]
4174 GpStatus WINGDIPAPI
GdipSetImagePalette(GpImage
*image
,
4175 GDIPCONST ColorPalette
*palette
)
4177 ColorPalette
*new_palette
;
4179 TRACE("(%p,%p)\n", image
, palette
);
4181 if(!image
|| !palette
|| palette
->Count
> 256)
4182 return InvalidParameter
;
4184 new_palette
= GdipAlloc(2 * sizeof(UINT
) + palette
->Count
* sizeof(ARGB
));
4185 if (!new_palette
) return OutOfMemory
;
4187 GdipFree(image
->palette
);
4188 image
->palette
= new_palette
;
4189 image
->palette
->Flags
= palette
->Flags
;
4190 image
->palette
->Count
= palette
->Count
;
4191 memcpy(image
->palette
->Entries
, palette
->Entries
, sizeof(ARGB
)*palette
->Count
);
4196 /*************************************************************************
4198 * Structures that represent which formats we support for encoding.
4201 /* ImageCodecInfo creation routines taken from libgdiplus */
4202 static const WCHAR bmp_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'B', 'M', 'P', 0}; /* Built-in BMP */
4203 static const WCHAR bmp_extension
[] = {'*','.','B', 'M', 'P',';', '*','.', 'D','I', 'B',';', '*','.', 'R', 'L', 'E',0}; /* *.BMP;*.DIB;*.RLE */
4204 static const WCHAR bmp_mimetype
[] = {'i', 'm', 'a','g', 'e', '/', 'b', 'm', 'p', 0}; /* image/bmp */
4205 static const WCHAR bmp_format
[] = {'B', 'M', 'P', 0}; /* BMP */
4206 static const BYTE bmp_sig_pattern
[] = { 0x42, 0x4D };
4207 static const BYTE bmp_sig_mask
[] = { 0xFF, 0xFF };
4209 static const WCHAR jpeg_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'J','P','E','G', 0};
4210 static const WCHAR jpeg_extension
[] = {'*','.','J','P','G',';', '*','.','J','P','E','G',';', '*','.','J','P','E',';', '*','.','J','F','I','F',0};
4211 static const WCHAR jpeg_mimetype
[] = {'i','m','a','g','e','/','j','p','e','g', 0};
4212 static const WCHAR jpeg_format
[] = {'J','P','E','G',0};
4213 static const BYTE jpeg_sig_pattern
[] = { 0xFF, 0xD8 };
4214 static const BYTE jpeg_sig_mask
[] = { 0xFF, 0xFF };
4216 static const WCHAR gif_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'G','I','F', 0};
4217 static const WCHAR gif_extension
[] = {'*','.','G','I','F',0};
4218 static const WCHAR gif_mimetype
[] = {'i','m','a','g','e','/','g','i','f', 0};
4219 static const WCHAR gif_format
[] = {'G','I','F',0};
4220 static const BYTE gif_sig_pattern
[12] = "GIF87aGIF89a";
4221 static const BYTE gif_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4223 static const WCHAR tiff_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'T','I','F','F', 0};
4224 static const WCHAR tiff_extension
[] = {'*','.','T','I','F','F',';','*','.','T','I','F',0};
4225 static const WCHAR tiff_mimetype
[] = {'i','m','a','g','e','/','t','i','f','f', 0};
4226 static const WCHAR tiff_format
[] = {'T','I','F','F',0};
4227 static const BYTE tiff_sig_pattern
[] = {0x49,0x49,42,0,0x4d,0x4d,0,42};
4228 static const BYTE tiff_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4230 static const WCHAR emf_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'E','M','F', 0};
4231 static const WCHAR emf_extension
[] = {'*','.','E','M','F',0};
4232 static const WCHAR emf_mimetype
[] = {'i','m','a','g','e','/','x','-','e','m','f', 0};
4233 static const WCHAR emf_format
[] = {'E','M','F',0};
4234 static const BYTE emf_sig_pattern
[] = { 0x01, 0x00, 0x00, 0x00 };
4235 static const BYTE emf_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF };
4237 static const WCHAR wmf_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'W','M','F', 0};
4238 static const WCHAR wmf_extension
[] = {'*','.','W','M','F',0};
4239 static const WCHAR wmf_mimetype
[] = {'i','m','a','g','e','/','x','-','w','m','f', 0};
4240 static const WCHAR wmf_format
[] = {'W','M','F',0};
4241 static const BYTE wmf_sig_pattern
[] = { 0xd7, 0xcd };
4242 static const BYTE wmf_sig_mask
[] = { 0xFF, 0xFF };
4244 static const WCHAR png_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'P','N','G', 0};
4245 static const WCHAR png_extension
[] = {'*','.','P','N','G',0};
4246 static const WCHAR png_mimetype
[] = {'i','m','a','g','e','/','p','n','g', 0};
4247 static const WCHAR png_format
[] = {'P','N','G',0};
4248 static const BYTE png_sig_pattern
[] = { 137, 80, 78, 71, 13, 10, 26, 10, };
4249 static const BYTE png_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
4251 static const WCHAR ico_codecname
[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'I','C','O', 0};
4252 static const WCHAR ico_extension
[] = {'*','.','I','C','O',0};
4253 static const WCHAR ico_mimetype
[] = {'i','m','a','g','e','/','x','-','i','c','o','n', 0};
4254 static const WCHAR ico_format
[] = {'I','C','O',0};
4255 static const BYTE ico_sig_pattern
[] = { 0x00, 0x00, 0x01, 0x00 };
4256 static const BYTE ico_sig_mask
[] = { 0xFF, 0xFF, 0xFF, 0xFF };
4258 static const struct image_codec codecs
[NUM_CODECS
] = {
4261 /* Clsid */ { 0x557cf400, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4262 /* FormatID */ { 0xb96b3cabU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4263 /* CodecName */ bmp_codecname
,
4265 /* FormatDescription */ bmp_format
,
4266 /* FilenameExtension */ bmp_extension
,
4267 /* MimeType */ bmp_mimetype
,
4268 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4272 /* SigPattern */ bmp_sig_pattern
,
4273 /* SigMask */ bmp_sig_mask
,
4280 /* Clsid */ { 0x557cf401, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4281 /* FormatID */ { 0xb96b3caeU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4282 /* CodecName */ jpeg_codecname
,
4284 /* FormatDescription */ jpeg_format
,
4285 /* FilenameExtension */ jpeg_extension
,
4286 /* MimeType */ jpeg_mimetype
,
4287 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4291 /* SigPattern */ jpeg_sig_pattern
,
4292 /* SigMask */ jpeg_sig_mask
,
4299 /* Clsid */ { 0x557cf402, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4300 /* FormatID */ { 0xb96b3cb0U
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4301 /* CodecName */ gif_codecname
,
4303 /* FormatDescription */ gif_format
,
4304 /* FilenameExtension */ gif_extension
,
4305 /* MimeType */ gif_mimetype
,
4306 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4310 /* SigPattern */ gif_sig_pattern
,
4311 /* SigMask */ gif_sig_mask
,
4318 /* Clsid */ { 0x557cf405, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4319 /* FormatID */ { 0xb96b3cb1U
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4320 /* CodecName */ tiff_codecname
,
4322 /* FormatDescription */ tiff_format
,
4323 /* FilenameExtension */ tiff_extension
,
4324 /* MimeType */ tiff_mimetype
,
4325 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsEncoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4329 /* SigPattern */ tiff_sig_pattern
,
4330 /* SigMask */ tiff_sig_mask
,
4337 /* Clsid */ { 0x557cf403, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4338 /* FormatID */ { 0xb96b3cacU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4339 /* CodecName */ emf_codecname
,
4341 /* FormatDescription */ emf_format
,
4342 /* FilenameExtension */ emf_extension
,
4343 /* MimeType */ emf_mimetype
,
4344 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportVector
| ImageCodecFlagsBuiltin
,
4348 /* SigPattern */ emf_sig_pattern
,
4349 /* SigMask */ emf_sig_mask
,
4352 decode_image_olepicture_metafile
4356 /* Clsid */ { 0x557cf404, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4357 /* FormatID */ { 0xb96b3cadU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4358 /* CodecName */ wmf_codecname
,
4360 /* FormatDescription */ wmf_format
,
4361 /* FilenameExtension */ wmf_extension
,
4362 /* MimeType */ wmf_mimetype
,
4363 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportVector
| ImageCodecFlagsBuiltin
,
4367 /* SigPattern */ wmf_sig_pattern
,
4368 /* SigMask */ wmf_sig_mask
,
4371 decode_image_olepicture_metafile
4375 /* Clsid */ { 0x557cf406, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4376 /* FormatID */ { 0xb96b3cafU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4377 /* CodecName */ png_codecname
,
4379 /* FormatDescription */ png_format
,
4380 /* FilenameExtension */ png_extension
,
4381 /* MimeType */ png_mimetype
,
4382 /* Flags */ ImageCodecFlagsEncoder
| ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4386 /* SigPattern */ png_sig_pattern
,
4387 /* SigMask */ png_sig_mask
,
4394 /* Clsid */ { 0x557cf407, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
4395 /* FormatID */ { 0xb96b3cabU
, 0x0728U
, 0x11d3U
, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
4396 /* CodecName */ ico_codecname
,
4398 /* FormatDescription */ ico_format
,
4399 /* FilenameExtension */ ico_extension
,
4400 /* MimeType */ ico_mimetype
,
4401 /* Flags */ ImageCodecFlagsDecoder
| ImageCodecFlagsSupportBitmap
| ImageCodecFlagsBuiltin
,
4405 /* SigPattern */ ico_sig_pattern
,
4406 /* SigMask */ ico_sig_mask
,
4413 /*****************************************************************************
4414 * GdipGetImageDecodersSize [GDIPLUS.@]
4416 GpStatus WINGDIPAPI
GdipGetImageDecodersSize(UINT
*numDecoders
, UINT
*size
)
4418 int decoder_count
=0;
4420 TRACE("%p %p\n", numDecoders
, size
);
4422 if (!numDecoders
|| !size
)
4423 return InvalidParameter
;
4425 for (i
=0; i
<NUM_CODECS
; i
++)
4427 if (codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
)
4431 *numDecoders
= decoder_count
;
4432 *size
= decoder_count
* sizeof(ImageCodecInfo
);
4437 /*****************************************************************************
4438 * GdipGetImageDecoders [GDIPLUS.@]
4440 GpStatus WINGDIPAPI
GdipGetImageDecoders(UINT numDecoders
, UINT size
, ImageCodecInfo
*decoders
)
4442 int i
, decoder_count
=0;
4443 TRACE("%u %u %p\n", numDecoders
, size
, decoders
);
4446 size
!= numDecoders
* sizeof(ImageCodecInfo
))
4447 return GenericError
;
4449 for (i
=0; i
<NUM_CODECS
; i
++)
4451 if (codecs
[i
].info
.Flags
& ImageCodecFlagsDecoder
)
4453 if (decoder_count
== numDecoders
) return GenericError
;
4454 memcpy(&decoders
[decoder_count
], &codecs
[i
].info
, sizeof(ImageCodecInfo
));
4459 if (decoder_count
< numDecoders
) return GenericError
;
4464 /*****************************************************************************
4465 * GdipGetImageEncodersSize [GDIPLUS.@]
4467 GpStatus WINGDIPAPI
GdipGetImageEncodersSize(UINT
*numEncoders
, UINT
*size
)
4469 int encoder_count
=0;
4471 TRACE("%p %p\n", numEncoders
, size
);
4473 if (!numEncoders
|| !size
)
4474 return InvalidParameter
;
4476 for (i
=0; i
<NUM_CODECS
; i
++)
4478 if (codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
)
4482 *numEncoders
= encoder_count
;
4483 *size
= encoder_count
* sizeof(ImageCodecInfo
);
4488 /*****************************************************************************
4489 * GdipGetImageEncoders [GDIPLUS.@]
4491 GpStatus WINGDIPAPI
GdipGetImageEncoders(UINT numEncoders
, UINT size
, ImageCodecInfo
*encoders
)
4493 int i
, encoder_count
=0;
4494 TRACE("%u %u %p\n", numEncoders
, size
, encoders
);
4497 size
!= numEncoders
* sizeof(ImageCodecInfo
))
4498 return GenericError
;
4500 for (i
=0; i
<NUM_CODECS
; i
++)
4502 if (codecs
[i
].info
.Flags
& ImageCodecFlagsEncoder
)
4504 if (encoder_count
== numEncoders
) return GenericError
;
4505 memcpy(&encoders
[encoder_count
], &codecs
[i
].info
, sizeof(ImageCodecInfo
));
4510 if (encoder_count
< numEncoders
) return GenericError
;
4515 GpStatus WINGDIPAPI
GdipGetEncoderParameterListSize(GpImage
*image
,
4516 GDIPCONST CLSID
* clsidEncoder
, UINT
*size
)
4520 TRACE("(%p,%s,%p)\n", image
, debugstr_guid(clsidEncoder
), size
);
4523 FIXME("not implemented\n");
4527 return NotImplemented
;
4530 static PixelFormat
get_16bpp_format(HBITMAP hbm
)
4536 hdc
= CreateCompatibleDC(NULL
);
4538 memset(&bmh
, 0, sizeof(bmh
));
4539 bmh
.bV4Size
= sizeof(bmh
);
4542 bmh
.bV4V4Compression
= BI_BITFIELDS
;
4543 bmh
.bV4BitCount
= 16;
4545 GetDIBits(hdc
, hbm
, 0, 0, NULL
, (BITMAPINFO
*)&bmh
, DIB_RGB_COLORS
);
4547 if (bmh
.bV4RedMask
== 0x7c00 &&
4548 bmh
.bV4GreenMask
== 0x3e0 &&
4549 bmh
.bV4BlueMask
== 0x1f)
4551 result
= PixelFormat16bppRGB555
;
4553 else if (bmh
.bV4RedMask
== 0xf800 &&
4554 bmh
.bV4GreenMask
== 0x7e0 &&
4555 bmh
.bV4BlueMask
== 0x1f)
4557 result
= PixelFormat16bppRGB565
;
4561 FIXME("unrecognized bitfields %x,%x,%x\n", bmh
.bV4RedMask
,
4562 bmh
.bV4GreenMask
, bmh
.bV4BlueMask
);
4563 result
= PixelFormatUndefined
;
4571 /*****************************************************************************
4572 * GdipCreateBitmapFromHBITMAP [GDIPLUS.@]
4574 GpStatus WINGDIPAPI
GdipCreateBitmapFromHBITMAP(HBITMAP hbm
, HPALETTE hpal
, GpBitmap
** bitmap
)
4579 BitmapData lockeddata
;
4581 TRACE("%p %p %p\n", hbm
, hpal
, bitmap
);
4584 return InvalidParameter
;
4586 if (GetObjectA(hbm
, sizeof(bm
), &bm
) != sizeof(bm
))
4587 return InvalidParameter
;
4589 /* TODO: Figure out the correct format for 16, 32, 64 bpp */
4590 switch(bm
.bmBitsPixel
) {
4592 format
= PixelFormat1bppIndexed
;
4595 format
= PixelFormat4bppIndexed
;
4598 format
= PixelFormat8bppIndexed
;
4601 format
= get_16bpp_format(hbm
);
4602 if (format
== PixelFormatUndefined
)
4603 return InvalidParameter
;
4606 format
= PixelFormat24bppRGB
;
4609 format
= PixelFormat32bppRGB
;
4612 format
= PixelFormat48bppRGB
;
4615 FIXME("don't know how to handle %d bpp\n", bm
.bmBitsPixel
);
4616 return InvalidParameter
;
4619 retval
= GdipCreateBitmapFromScan0(bm
.bmWidth
, bm
.bmHeight
, 0,
4620 format
, NULL
, bitmap
);
4624 retval
= GdipBitmapLockBits(*bitmap
, NULL
, ImageLockModeWrite
,
4625 format
, &lockeddata
);
4629 char bmibuf
[FIELD_OFFSET(BITMAPINFO
, bmiColors
[256])];
4630 BITMAPINFO
*pbmi
= (BITMAPINFO
*)bmibuf
;
4633 hdc
= CreateCompatibleDC(NULL
);
4635 pbmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
4636 pbmi
->bmiHeader
.biBitCount
= 0;
4638 GetDIBits(hdc
, hbm
, 0, 0, NULL
, pbmi
, DIB_RGB_COLORS
);
4640 src_height
= abs(pbmi
->bmiHeader
.biHeight
);
4641 pbmi
->bmiHeader
.biHeight
= -src_height
;
4643 GetDIBits(hdc
, hbm
, 0, src_height
, lockeddata
.Scan0
, pbmi
, DIB_RGB_COLORS
);
4647 GdipBitmapUnlockBits(*bitmap
, &lockeddata
);
4650 if (retval
== Ok
&& hpal
)
4652 PALETTEENTRY entry
[256];
4653 ColorPalette
*palette
=NULL
;
4654 int i
, num_palette_entries
;
4656 num_palette_entries
= GetPaletteEntries(hpal
, 0, 256, entry
);
4657 if (!num_palette_entries
)
4658 retval
= GenericError
;
4660 palette
= GdipAlloc(sizeof(ColorPalette
) + sizeof(ARGB
) * (num_palette_entries
-1));
4662 retval
= OutOfMemory
;
4667 palette
->Count
= num_palette_entries
;
4669 for (i
=0; i
<num_palette_entries
; i
++)
4671 palette
->Entries
[i
] = 0xff000000 | entry
[i
].peRed
<< 16 |
4672 entry
[i
].peGreen
<< 8 | entry
[i
].peBlue
;
4675 retval
= GdipSetImagePalette((GpImage
*)*bitmap
, palette
);
4683 GdipDisposeImage((GpImage
*)*bitmap
);
4691 GpStatus WINGDIPAPI
GdipDeleteEffect(CGpEffect
*effect
)
4693 FIXME("(%p): stub\n", effect
);
4694 /* note: According to Jose Roca's GDI+ Docs, this is not implemented
4695 * in Windows's gdiplus */
4696 return NotImplemented
;
4699 /*****************************************************************************
4700 * GdipSetEffectParameters [GDIPLUS.@]
4702 GpStatus WINGDIPAPI
GdipSetEffectParameters(CGpEffect
*effect
,
4703 const VOID
*params
, const UINT size
)
4707 TRACE("(%p,%p,%u)\n", effect
, params
, size
);
4710 FIXME("not implemented\n");
4712 return NotImplemented
;
4715 /*****************************************************************************
4716 * GdipGetImageFlags [GDIPLUS.@]
4718 GpStatus WINGDIPAPI
GdipGetImageFlags(GpImage
*image
, UINT
*flags
)
4720 TRACE("%p %p\n", image
, flags
);
4722 if(!image
|| !flags
)
4723 return InvalidParameter
;
4725 *flags
= image
->flags
;
4730 GpStatus WINGDIPAPI
GdipTestControl(GpTestControlEnum control
, void *param
)
4732 TRACE("(%d, %p)\n", control
, param
);
4735 case TestControlForceBilinear
:
4737 FIXME("TestControlForceBilinear not handled\n");
4739 case TestControlNoICM
:
4741 FIXME("TestControlNoICM not handled\n");
4743 case TestControlGetBuildNumber
:
4744 *((DWORD
*)param
) = 3102;
4751 GpStatus WINGDIPAPI
GdipRecordMetafileFileName(GDIPCONST WCHAR
* fileName
,
4752 HDC hdc
, EmfType type
, GDIPCONST GpRectF
*pFrameRect
,
4753 MetafileFrameUnit frameUnit
, GDIPCONST WCHAR
*desc
,
4754 GpMetafile
**metafile
)
4756 FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName
), hdc
, type
, pFrameRect
,
4757 frameUnit
, debugstr_w(desc
), metafile
);
4759 return NotImplemented
;
4762 GpStatus WINGDIPAPI
GdipRecordMetafileFileNameI(GDIPCONST WCHAR
* fileName
, HDC hdc
, EmfType type
,
4763 GDIPCONST GpRect
*pFrameRect
, MetafileFrameUnit frameUnit
,
4764 GDIPCONST WCHAR
*desc
, GpMetafile
**metafile
)
4766 FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName
), hdc
, type
, pFrameRect
,
4767 frameUnit
, debugstr_w(desc
), metafile
);
4769 return NotImplemented
;
4772 GpStatus WINGDIPAPI
GdipImageForceValidation(GpImage
*image
)
4774 TRACE("%p\n", image
);
4779 /*****************************************************************************
4780 * GdipGetImageThumbnail [GDIPLUS.@]
4782 GpStatus WINGDIPAPI
GdipGetImageThumbnail(GpImage
*image
, UINT width
, UINT height
,
4783 GpImage
**ret_image
, GetThumbnailImageAbort cb
,
4787 GpGraphics
*graphics
;
4788 UINT srcwidth
, srcheight
;
4790 TRACE("(%p %u %u %p %p %p)\n",
4791 image
, width
, height
, ret_image
, cb
, cb_data
);
4793 if (!image
|| !ret_image
)
4794 return InvalidParameter
;
4796 if (!width
) width
= 120;
4797 if (!height
) height
= 120;
4799 GdipGetImageWidth(image
, &srcwidth
);
4800 GdipGetImageHeight(image
, &srcheight
);
4802 stat
= GdipCreateBitmapFromScan0(width
, height
, 0, PixelFormat32bppPARGB
,
4803 NULL
, (GpBitmap
**)ret_image
);
4807 stat
= GdipGetImageGraphicsContext(*ret_image
, &graphics
);
4811 stat
= GdipDrawImageRectRectI(graphics
, image
,
4812 0, 0, width
, height
, 0, 0, srcwidth
, srcheight
, UnitPixel
,
4815 GdipDeleteGraphics(graphics
);
4820 GdipDisposeImage(*ret_image
);
4828 /*****************************************************************************
4829 * GdipImageRotateFlip [GDIPLUS.@]
4831 GpStatus WINGDIPAPI
GdipImageRotateFlip(GpImage
*image
, RotateFlipType type
)
4833 GpBitmap
*new_bitmap
;
4835 int bpp
, bytesperpixel
;
4836 int rotate_90
, flip_x
, flip_y
;
4837 int src_x_offset
, src_y_offset
;
4839 UINT x
, y
, width
, height
;
4840 BitmapData src_lock
, dst_lock
;
4843 TRACE("(%p, %u)\n", image
, type
);
4846 return InvalidParameter
;
4849 flip_x
= (type
&6) == 2 || (type
&6) == 4;
4850 flip_y
= (type
&3) == 1 || (type
&3) == 2;
4852 if (image
->type
!= ImageTypeBitmap
)
4854 FIXME("Not implemented for type %i\n", image
->type
);
4855 return NotImplemented
;
4858 bitmap
= (GpBitmap
*)image
;
4859 bpp
= PIXELFORMATBPP(bitmap
->format
);
4863 FIXME("Not implemented for %i bit images\n", bpp
);
4864 return NotImplemented
;
4869 width
= bitmap
->height
;
4870 height
= bitmap
->width
;
4874 width
= bitmap
->width
;
4875 height
= bitmap
->height
;
4878 bytesperpixel
= bpp
/8;
4880 stat
= GdipCreateBitmapFromScan0(width
, height
, 0, bitmap
->format
, NULL
, &new_bitmap
);
4885 stat
= GdipBitmapLockBits(bitmap
, NULL
, ImageLockModeRead
, bitmap
->format
, &src_lock
);
4889 stat
= GdipBitmapLockBits(new_bitmap
, NULL
, ImageLockModeWrite
, bitmap
->format
, &dst_lock
);
4893 LPBYTE src_row
, src_pixel
;
4894 LPBYTE dst_row
, dst_pixel
;
4896 src_origin
= src_lock
.Scan0
;
4897 if (flip_x
) src_origin
+= bytesperpixel
* (bitmap
->width
- 1);
4898 if (flip_y
) src_origin
+= src_lock
.Stride
* (bitmap
->height
- 1);
4902 if (flip_y
) src_x_offset
= -src_lock
.Stride
;
4903 else src_x_offset
= src_lock
.Stride
;
4904 if (flip_x
) src_y_offset
= -bytesperpixel
;
4905 else src_y_offset
= bytesperpixel
;
4909 if (flip_x
) src_x_offset
= -bytesperpixel
;
4910 else src_x_offset
= bytesperpixel
;
4911 if (flip_y
) src_y_offset
= -src_lock
.Stride
;
4912 else src_y_offset
= src_lock
.Stride
;
4915 src_row
= src_origin
;
4916 dst_row
= dst_lock
.Scan0
;
4917 for (y
=0; y
<height
; y
++)
4919 src_pixel
= src_row
;
4920 dst_pixel
= dst_row
;
4921 for (x
=0; x
<width
; x
++)
4923 /* FIXME: This could probably be faster without memcpy. */
4924 memcpy(dst_pixel
, src_pixel
, bytesperpixel
);
4925 dst_pixel
+= bytesperpixel
;
4926 src_pixel
+= src_x_offset
;
4928 src_row
+= src_y_offset
;
4929 dst_row
+= dst_lock
.Stride
;
4932 GdipBitmapUnlockBits(new_bitmap
, &dst_lock
);
4935 GdipBitmapUnlockBits(bitmap
, &src_lock
);
4939 move_bitmap(bitmap
, new_bitmap
, FALSE
);
4941 GdipDisposeImage((GpImage
*)new_bitmap
);
4946 /*****************************************************************************
4947 * GdipConvertToEmfPlusToFile [GDIPLUS.@]
4950 GpStatus WINGDIPAPI
GdipConvertToEmfPlusToFile(const GpGraphics
* refGraphics
,
4951 GpMetafile
* metafile
, BOOL
* conversionSuccess
,
4952 const WCHAR
* filename
, EmfType emfType
,
4953 const WCHAR
* description
, GpMetafile
** out_metafile
)
4955 FIXME("stub: %p, %p, %p, %p, %u, %p, %p\n", refGraphics
, metafile
, conversionSuccess
, filename
, emfType
, description
, out_metafile
);
4956 return NotImplemented
;