configure: Don't build wow32.dll when 16-bit support is disabled.
[wine/hacks.git] / dlls / gdiplus / image.c
blobda94ee2746349e7fad7ff0e86d2e61ff781d0f4f
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #define NONAMELESSUNION
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "wingdi.h"
28 #define COBJMACROS
29 #include "objbase.h"
30 #include "olectl.h"
31 #include "ole2.h"
33 #include "initguid.h"
34 #include "wincodec.h"
35 #include "gdiplus.h"
36 #include "gdiplus_private.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
41 #define PIXELFORMATBPP(x) ((x) ? ((x) >> 8) & 255 : 24)
43 static INT ipicture_pixel_height(IPicture *pic)
45 HDC hdcref;
46 OLE_YSIZE_HIMETRIC y;
48 IPicture_get_Height(pic, &y);
50 hdcref = GetDC(0);
52 y = MulDiv(y, GetDeviceCaps(hdcref, LOGPIXELSY), INCH_HIMETRIC);
53 ReleaseDC(0, hdcref);
55 return y;
58 static INT ipicture_pixel_width(IPicture *pic)
60 HDC hdcref;
61 OLE_XSIZE_HIMETRIC x;
63 IPicture_get_Width(pic, &x);
65 hdcref = GetDC(0);
67 x = MulDiv(x, GetDeviceCaps(hdcref, LOGPIXELSX), INCH_HIMETRIC);
69 ReleaseDC(0, hdcref);
71 return x;
74 GpStatus WINGDIPAPI GdipBitmapApplyEffect(GpBitmap* bitmap, CGpEffect* effect,
75 RECT* roi, BOOL useAuxData, VOID** auxData, INT* auxDataSize)
77 FIXME("(%p %p %p %d %p %p): stub\n", bitmap, effect, roi, useAuxData, auxData, auxDataSize);
79 * Note: According to Jose Roca's GDI+ docs, this function is not
80 * implemented in Windows's GDI+.
82 return NotImplemented;
85 GpStatus WINGDIPAPI GdipBitmapCreateApplyEffect(GpBitmap** inputBitmaps,
86 INT numInputs, CGpEffect* effect, RECT* roi, RECT* outputRect,
87 GpBitmap** outputBitmap, BOOL useAuxData, VOID** auxData, INT* auxDataSize)
89 FIXME("(%p %d %p %p %p %p %d %p %p): stub\n", inputBitmaps, numInputs, effect, roi, outputRect, outputBitmap, useAuxData, auxData, auxDataSize);
91 * Note: According to Jose Roca's GDI+ docs, this function is not
92 * implemented in Windows's GDI+.
94 return NotImplemented;
97 static inline void getpixel_16bppGrayScale(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
98 const BYTE *row, UINT x)
100 *r = *g = *b = row[x*2+1];
101 *a = 255;
104 static inline void getpixel_16bppRGB555(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
105 const BYTE *row, UINT x)
107 WORD pixel = *((WORD*)(row)+x);
108 *r = (pixel>>7&0xf8)|(pixel>>12&0x7);
109 *g = (pixel>>2&0xf8)|(pixel>>6&0x7);
110 *b = (pixel<<3&0xf8)|(pixel>>2&0x7);
111 *a = 255;
114 static inline void getpixel_16bppRGB565(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
115 const BYTE *row, UINT x)
117 WORD pixel = *((WORD*)(row)+x);
118 *r = (pixel>>8&0xf8)|(pixel>>13&0x7);
119 *g = (pixel>>3&0xfc)|(pixel>>9&0x3);
120 *b = (pixel<<3&0xf8)|(pixel>>2&0x7);
121 *a = 255;
124 static inline void getpixel_16bppARGB1555(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
125 const BYTE *row, UINT x)
127 WORD pixel = *((WORD*)(row)+x);
128 *r = (pixel>>7&0xf8)|(pixel>>12&0x7);
129 *g = (pixel>>2&0xf8)|(pixel>>6&0x7);
130 *b = (pixel<<3&0xf8)|(pixel>>2&0x7);
131 if ((pixel&0x8000) == 0x8000)
132 *a = 255;
133 else
134 *a = 0;
137 static inline void getpixel_24bppRGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
138 const BYTE *row, UINT x)
140 *r = row[x*3+2];
141 *g = row[x*3+1];
142 *b = row[x*3];
143 *a = 255;
146 static inline void getpixel_32bppRGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
147 const BYTE *row, UINT x)
149 *r = row[x*4+2];
150 *g = row[x*4+1];
151 *b = row[x*4];
152 *a = 255;
155 static inline void getpixel_32bppARGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
156 const BYTE *row, UINT x)
158 *r = row[x*4+2];
159 *g = row[x*4+1];
160 *b = row[x*4];
161 *a = row[x*4+3];
164 static inline void getpixel_32bppPARGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
165 const BYTE *row, UINT x)
167 *a = row[x*4+3];
168 if (*a == 0)
169 *r = *g = *b = 0;
170 else
172 *r = row[x*4+2] * 255 / *a;
173 *g = row[x*4+1] * 255 / *a;
174 *b = row[x*4] * 255 / *a;
178 static inline void getpixel_48bppRGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
179 const BYTE *row, UINT x)
181 *r = row[x*6+5];
182 *g = row[x*6+3];
183 *b = row[x*6+1];
184 *a = 255;
187 static inline void getpixel_64bppARGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
188 const BYTE *row, UINT x)
190 *r = row[x*8+5];
191 *g = row[x*8+3];
192 *b = row[x*8+1];
193 *a = row[x*8+7];
196 static inline void getpixel_64bppPARGB(BYTE *r, BYTE *g, BYTE *b, BYTE *a,
197 const BYTE *row, UINT x)
199 *a = row[x*8+7];
200 if (*a == 0)
201 *r = *g = *b = 0;
202 else
204 *r = row[x*8+5] * 255 / *a;
205 *g = row[x*8+3] * 255 / *a;
206 *b = row[x*8+1] * 255 / *a;
210 GpStatus WINGDIPAPI GdipBitmapGetPixel(GpBitmap* bitmap, INT x, INT y,
211 ARGB *color)
213 BYTE r, g, b, a;
214 BYTE *row;
215 TRACE("%p %d %d %p\n", bitmap, x, y, color);
217 if(!bitmap || !color ||
218 x < 0 || y < 0 || x >= bitmap->width || y >= bitmap->height)
219 return InvalidParameter;
221 row = bitmap->bits+bitmap->stride*y;
223 switch (bitmap->format)
225 case PixelFormat16bppGrayScale:
226 getpixel_16bppGrayScale(&r,&g,&b,&a,row,x);
227 break;
228 case PixelFormat16bppRGB555:
229 getpixel_16bppRGB555(&r,&g,&b,&a,row,x);
230 break;
231 case PixelFormat16bppRGB565:
232 getpixel_16bppRGB565(&r,&g,&b,&a,row,x);
233 break;
234 case PixelFormat16bppARGB1555:
235 getpixel_16bppARGB1555(&r,&g,&b,&a,row,x);
236 break;
237 case PixelFormat24bppRGB:
238 getpixel_24bppRGB(&r,&g,&b,&a,row,x);
239 break;
240 case PixelFormat32bppRGB:
241 getpixel_32bppRGB(&r,&g,&b,&a,row,x);
242 break;
243 case PixelFormat32bppARGB:
244 getpixel_32bppARGB(&r,&g,&b,&a,row,x);
245 break;
246 case PixelFormat32bppPARGB:
247 getpixel_32bppPARGB(&r,&g,&b,&a,row,x);
248 break;
249 case PixelFormat48bppRGB:
250 getpixel_48bppRGB(&r,&g,&b,&a,row,x);
251 break;
252 case PixelFormat64bppARGB:
253 getpixel_64bppARGB(&r,&g,&b,&a,row,x);
254 break;
255 case PixelFormat64bppPARGB:
256 getpixel_64bppPARGB(&r,&g,&b,&a,row,x);
257 break;
258 default:
259 FIXME("not implemented for format 0x%x\n", bitmap->format);
260 return NotImplemented;
263 *color = a<<24|r<<16|g<<8|b;
265 return Ok;
268 static inline void setpixel_16bppGrayScale(BYTE r, BYTE g, BYTE b, BYTE a,
269 BYTE *row, UINT x)
271 *((WORD*)(row)+x) = (r+g+b)*85;
274 static inline void setpixel_16bppRGB555(BYTE r, BYTE g, BYTE b, BYTE a,
275 BYTE *row, UINT x)
277 *((WORD*)(row)+x) = (r<<7&0x7c00)|
278 (g<<2&0x03e0)|
279 (b>>3&0x001f);
282 static inline void setpixel_16bppRGB565(BYTE r, BYTE g, BYTE b, BYTE a,
283 BYTE *row, UINT x)
285 *((WORD*)(row)+x) = (r<<8&0xf800)|
286 (g<<3&0x07e0)|
287 (b>>3&0x001f);
290 static inline void setpixel_16bppARGB1555(BYTE r, BYTE g, BYTE b, BYTE a,
291 BYTE *row, UINT x)
293 *((WORD*)(row)+x) = (a<<8&0x8000)|
294 (r<<7&0x7c00)|
295 (g<<2&0x03e0)|
296 (b>>3&0x001f);
299 static inline void setpixel_24bppRGB(BYTE r, BYTE g, BYTE b, BYTE a,
300 BYTE *row, UINT x)
302 row[x*3+2] = r;
303 row[x*3+1] = g;
304 row[x*3] = b;
307 static inline void setpixel_32bppRGB(BYTE r, BYTE g, BYTE b, BYTE a,
308 BYTE *row, UINT x)
310 *((DWORD*)(row)+x) = (r<<16)|(g<<8)|b;
313 static inline void setpixel_32bppARGB(BYTE r, BYTE g, BYTE b, BYTE a,
314 BYTE *row, UINT x)
316 *((DWORD*)(row)+x) = (a<<24)|(r<<16)|(g<<8)|b;
319 static inline void setpixel_32bppPARGB(BYTE r, BYTE g, BYTE b, BYTE a,
320 BYTE *row, UINT x)
322 r = r * a / 255;
323 g = g * a / 255;
324 b = b * a / 255;
325 *((DWORD*)(row)+x) = (a<<24)|(r<<16)|(g<<8)|b;
328 static inline void setpixel_48bppRGB(BYTE r, BYTE g, BYTE b, BYTE a,
329 BYTE *row, UINT x)
331 row[x*6+5] = row[x*6+4] = r;
332 row[x*6+3] = row[x*6+2] = g;
333 row[x*6+1] = row[x*6] = b;
336 static inline void setpixel_64bppARGB(BYTE r, BYTE g, BYTE b, BYTE a,
337 BYTE *row, UINT x)
339 UINT64 a64=a, r64=r, g64=g, b64=b;
340 *((UINT64*)(row)+x) = (a64<<56)|(a64<<48)|(r64<<40)|(r64<<32)|(g64<<24)|(g64<<16)|(b64<<8)|b64;
343 static inline void setpixel_64bppPARGB(BYTE r, BYTE g, BYTE b, BYTE a,
344 BYTE *row, UINT x)
346 UINT64 a64, r64, g64, b64;
347 a64 = a * 257;
348 r64 = r * a / 255;
349 g64 = g * a / 255;
350 b64 = b * a / 255;
351 *((UINT64*)(row)+x) = (a64<<48)|(r64<<32)|(g64<<16)|b64;
354 GpStatus WINGDIPAPI GdipBitmapSetPixel(GpBitmap* bitmap, INT x, INT y,
355 ARGB color)
357 BYTE a, r, g, b;
358 BYTE *row;
359 TRACE("bitmap:%p, x:%d, y:%d, color:%08x\n", bitmap, x, y, color);
361 if(!bitmap || x < 0 || y < 0 || x >= bitmap->width || y >= bitmap->height)
362 return InvalidParameter;
364 a = color>>24;
365 r = color>>16;
366 g = color>>8;
367 b = color;
369 row = bitmap->bits + bitmap->stride * y;
371 switch (bitmap->format)
373 case PixelFormat16bppGrayScale:
374 setpixel_16bppGrayScale(r,g,b,a,row,x);
375 break;
376 case PixelFormat16bppRGB555:
377 setpixel_16bppRGB555(r,g,b,a,row,x);
378 break;
379 case PixelFormat16bppRGB565:
380 setpixel_16bppRGB565(r,g,b,a,row,x);
381 break;
382 case PixelFormat16bppARGB1555:
383 setpixel_16bppARGB1555(r,g,b,a,row,x);
384 break;
385 case PixelFormat24bppRGB:
386 setpixel_24bppRGB(r,g,b,a,row,x);
387 break;
388 case PixelFormat32bppRGB:
389 setpixel_32bppRGB(r,g,b,a,row,x);
390 break;
391 case PixelFormat32bppARGB:
392 setpixel_32bppARGB(r,g,b,a,row,x);
393 break;
394 case PixelFormat32bppPARGB:
395 setpixel_32bppPARGB(r,g,b,a,row,x);
396 break;
397 case PixelFormat48bppRGB:
398 setpixel_48bppRGB(r,g,b,a,row,x);
399 break;
400 case PixelFormat64bppARGB:
401 setpixel_64bppARGB(r,g,b,a,row,x);
402 break;
403 case PixelFormat64bppPARGB:
404 setpixel_64bppPARGB(r,g,b,a,row,x);
405 break;
406 default:
407 FIXME("not implemented for format 0x%x\n", bitmap->format);
408 return NotImplemented;
411 return Ok;
414 /* This function returns a pointer to an array of pixels that represents the
415 * bitmap. The *entire* bitmap is locked according to the lock mode specified by
416 * flags. It is correct behavior that a user who calls this function with write
417 * privileges can write to the whole bitmap (not just the area in rect).
419 * FIXME: only used portion of format is bits per pixel. */
420 GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap* bitmap, GDIPCONST GpRect* rect,
421 UINT flags, PixelFormat format, BitmapData* lockeddata)
423 BOOL bm_is_selected;
424 INT stride, bitspp = PIXELFORMATBPP(format);
425 HDC hdc;
426 HBITMAP hbm, old = NULL;
427 BITMAPINFO *pbmi;
428 BYTE *buff = NULL;
429 UINT abs_height;
430 GpRect act_rect; /* actual rect to be used */
432 TRACE("%p %p %d %d %p\n", bitmap, rect, flags, format, lockeddata);
434 if(!lockeddata || !bitmap)
435 return InvalidParameter;
437 if(rect){
438 if(rect->X < 0 || rect->Y < 0 || (rect->X + rect->Width > bitmap->width) ||
439 (rect->Y + rect->Height > bitmap->height) || !flags)
440 return InvalidParameter;
442 act_rect = *rect;
444 else{
445 act_rect.X = act_rect.Y = 0;
446 act_rect.Width = bitmap->width;
447 act_rect.Height = bitmap->height;
450 if(flags & ImageLockModeUserInputBuf)
451 return NotImplemented;
453 if(bitmap->lockmode)
454 return WrongState;
456 if (bitmap->bits && bitmap->format == format)
458 /* no conversion is necessary; just use the bits directly */
459 lockeddata->Width = act_rect.Width;
460 lockeddata->Height = act_rect.Height;
461 lockeddata->PixelFormat = format;
462 lockeddata->Reserved = flags;
463 lockeddata->Stride = bitmap->stride;
464 lockeddata->Scan0 = bitmap->bits + (bitspp / 8) * act_rect.X +
465 bitmap->stride * act_rect.Y;
467 bitmap->lockmode = flags;
468 bitmap->numlocks++;
470 return Ok;
473 hbm = bitmap->hbitmap;
474 hdc = bitmap->hdc;
475 bm_is_selected = (hdc != 0);
477 pbmi = GdipAlloc(sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
478 if (!pbmi)
479 return OutOfMemory;
480 pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
481 pbmi->bmiHeader.biBitCount = 0;
483 if(!bm_is_selected){
484 hdc = CreateCompatibleDC(0);
485 old = SelectObject(hdc, hbm);
488 /* fill out bmi */
489 GetDIBits(hdc, hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
491 abs_height = abs(pbmi->bmiHeader.biHeight);
492 stride = pbmi->bmiHeader.biWidth * bitspp / 8;
493 stride = (stride + 3) & ~3;
495 buff = GdipAlloc(stride * abs_height);
497 pbmi->bmiHeader.biBitCount = bitspp;
499 if(buff)
500 GetDIBits(hdc, hbm, 0, abs_height, buff, pbmi, DIB_RGB_COLORS);
502 if(!bm_is_selected){
503 SelectObject(hdc, old);
504 DeleteDC(hdc);
507 if(!buff){
508 GdipFree(pbmi);
509 return OutOfMemory;
512 lockeddata->Width = act_rect.Width;
513 lockeddata->Height = act_rect.Height;
514 lockeddata->PixelFormat = format;
515 lockeddata->Reserved = flags;
517 if(pbmi->bmiHeader.biHeight > 0){
518 lockeddata->Stride = -stride;
519 lockeddata->Scan0 = buff + (bitspp / 8) * act_rect.X +
520 stride * (abs_height - 1 - act_rect.Y);
522 else{
523 lockeddata->Stride = stride;
524 lockeddata->Scan0 = buff + (bitspp / 8) * act_rect.X + stride * act_rect.Y;
527 bitmap->lockmode = flags;
528 bitmap->numlocks++;
530 bitmap->bitmapbits = buff;
532 GdipFree(pbmi);
533 return Ok;
536 GpStatus WINGDIPAPI GdipBitmapSetResolution(GpBitmap* bitmap, REAL xdpi, REAL ydpi)
538 FIXME("(%p, %.2f, %.2f)\n", bitmap, xdpi, ydpi);
540 return NotImplemented;
543 GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
544 BitmapData* lockeddata)
546 HDC hdc;
547 HBITMAP hbm, old = NULL;
548 BOOL bm_is_selected;
549 BITMAPINFO *pbmi;
551 if(!bitmap || !lockeddata)
552 return InvalidParameter;
554 if(!bitmap->lockmode)
555 return WrongState;
557 if(lockeddata->Reserved & ImageLockModeUserInputBuf)
558 return NotImplemented;
560 if(lockeddata->Reserved & ImageLockModeRead){
561 if(!(--bitmap->numlocks))
562 bitmap->lockmode = 0;
564 GdipFree(bitmap->bitmapbits);
565 bitmap->bitmapbits = NULL;
566 return Ok;
569 if (!bitmap->bitmapbits)
571 /* we passed a direct reference; no need to do anything */
572 bitmap->lockmode = 0;
573 return Ok;
576 hbm = bitmap->hbitmap;
577 hdc = bitmap->hdc;
578 bm_is_selected = (hdc != 0);
580 pbmi = GdipAlloc(sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
581 pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
582 pbmi->bmiHeader.biBitCount = 0;
584 if(!bm_is_selected){
585 hdc = CreateCompatibleDC(0);
586 old = SelectObject(hdc, hbm);
589 GetDIBits(hdc, hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
590 pbmi->bmiHeader.biBitCount = PIXELFORMATBPP(lockeddata->PixelFormat);
591 SetDIBits(hdc, hbm, 0, abs(pbmi->bmiHeader.biHeight),
592 bitmap->bitmapbits, pbmi, DIB_RGB_COLORS);
594 if(!bm_is_selected){
595 SelectObject(hdc, old);
596 DeleteDC(hdc);
599 GdipFree(pbmi);
600 GdipFree(bitmap->bitmapbits);
601 bitmap->bitmapbits = NULL;
602 bitmap->lockmode = 0;
604 return Ok;
607 GpStatus WINGDIPAPI GdipCloneBitmapArea(REAL x, REAL y, REAL width, REAL height,
608 PixelFormat format, GpBitmap* srcBitmap, GpBitmap** dstBitmap)
610 FIXME("(%f,%f,%f,%f,%i,%p,%p): stub\n", x, y, width, height, format, srcBitmap, dstBitmap);
612 return NotImplemented;
615 GpStatus WINGDIPAPI GdipCloneBitmapAreaI(INT x, INT y, INT width, INT height,
616 PixelFormat format, GpBitmap* srcBitmap, GpBitmap** dstBitmap)
618 FIXME("(%i,%i,%i,%i,%i,%p,%p): stub\n", x, y, width, height, format, srcBitmap, dstBitmap);
620 return NotImplemented;
623 GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
625 GpStatus stat = GenericError;
627 TRACE("%p, %p\n", image, cloneImage);
629 if (!image || !cloneImage)
630 return InvalidParameter;
632 if (image->picture)
634 IStream* stream;
635 HRESULT hr;
636 INT size;
637 LARGE_INTEGER move;
639 hr = CreateStreamOnHGlobal(0, TRUE, &stream);
640 if (FAILED(hr))
641 return GenericError;
643 hr = IPicture_SaveAsFile(image->picture, stream, FALSE, &size);
644 if(FAILED(hr))
646 WARN("Failed to save image on stream\n");
647 goto out;
650 /* Set seek pointer back to the beginning of the picture */
651 move.QuadPart = 0;
652 hr = IStream_Seek(stream, move, STREAM_SEEK_SET, NULL);
653 if (FAILED(hr))
654 goto out;
656 stat = GdipLoadImageFromStream(stream, cloneImage);
657 if (stat != Ok) WARN("Failed to load image from stream\n");
659 out:
660 IStream_Release(stream);
661 return stat;
663 else if (image->type == ImageTypeBitmap)
665 GpBitmap *bitmap = (GpBitmap*)image;
666 BitmapData lockeddata_src, lockeddata_dst;
667 int i;
668 UINT row_size;
670 stat = GdipBitmapLockBits(bitmap, NULL, ImageLockModeRead, bitmap->format,
671 &lockeddata_src);
672 if (stat != Ok) return stat;
674 stat = GdipCreateBitmapFromScan0(lockeddata_src.Width, lockeddata_src.Height,
675 0, lockeddata_src.PixelFormat, NULL, (GpBitmap**)cloneImage);
676 if (stat == Ok)
678 stat = GdipBitmapLockBits((GpBitmap*)*cloneImage, NULL, ImageLockModeWrite,
679 lockeddata_src.PixelFormat, &lockeddata_dst);
681 if (stat == Ok)
683 /* copy the image data */
684 row_size = (lockeddata_src.Width * PIXELFORMATBPP(lockeddata_src.PixelFormat) +7)/8;
685 for (i=0; i<lockeddata_src.Height; i++)
686 memcpy((BYTE*)lockeddata_dst.Scan0+lockeddata_dst.Stride*i,
687 (BYTE*)lockeddata_src.Scan0+lockeddata_src.Stride*i,
688 row_size);
690 GdipBitmapUnlockBits((GpBitmap*)*cloneImage, &lockeddata_dst);
693 GdipBitmapUnlockBits(bitmap, &lockeddata_src);
696 if (stat != Ok)
698 GdipDisposeImage(*cloneImage);
699 *cloneImage = NULL;
701 else memcpy(&(*cloneImage)->format, &image->format, sizeof(GUID));
703 return stat;
705 else
707 ERR("GpImage with no IPicture or bitmap?!\n");
708 return NotImplemented;
712 GpStatus WINGDIPAPI GdipCreateBitmapFromFile(GDIPCONST WCHAR* filename,
713 GpBitmap **bitmap)
715 GpStatus stat;
716 IStream *stream;
718 TRACE("(%s) %p\n", debugstr_w(filename), bitmap);
720 if(!filename || !bitmap)
721 return InvalidParameter;
723 stat = GdipCreateStreamOnFile(filename, GENERIC_READ, &stream);
725 if(stat != Ok)
726 return stat;
728 stat = GdipCreateBitmapFromStream(stream, bitmap);
730 IStream_Release(stream);
732 return stat;
735 GpStatus WINGDIPAPI GdipCreateBitmapFromGdiDib(GDIPCONST BITMAPINFO* info,
736 VOID *bits, GpBitmap **bitmap)
738 DWORD height, stride;
739 PixelFormat format;
741 FIXME("(%p, %p, %p) - partially implemented\n", info, bits, bitmap);
743 height = abs(info->bmiHeader.biHeight);
744 stride = ((info->bmiHeader.biWidth * info->bmiHeader.biBitCount + 31) >> 3) & ~3;
746 if(info->bmiHeader.biHeight > 0) /* bottom-up */
748 bits = (BYTE*)bits + (height - 1) * stride;
749 stride = -stride;
752 switch(info->bmiHeader.biBitCount) {
753 case 1:
754 format = PixelFormat1bppIndexed;
755 break;
756 case 4:
757 format = PixelFormat4bppIndexed;
758 break;
759 case 8:
760 format = PixelFormat8bppIndexed;
761 break;
762 case 24:
763 format = PixelFormat24bppRGB;
764 break;
765 default:
766 FIXME("don't know how to handle %d bpp\n", info->bmiHeader.biBitCount);
767 *bitmap = NULL;
768 return InvalidParameter;
771 return GdipCreateBitmapFromScan0(info->bmiHeader.biWidth, height, stride, format,
772 bits, bitmap);
776 /* FIXME: no icm */
777 GpStatus WINGDIPAPI GdipCreateBitmapFromFileICM(GDIPCONST WCHAR* filename,
778 GpBitmap **bitmap)
780 TRACE("(%s) %p\n", debugstr_w(filename), bitmap);
782 return GdipCreateBitmapFromFile(filename, bitmap);
785 GpStatus WINGDIPAPI GdipCreateBitmapFromResource(HINSTANCE hInstance,
786 GDIPCONST WCHAR* lpBitmapName, GpBitmap** bitmap)
788 HBITMAP hbm;
789 GpStatus stat = InvalidParameter;
791 TRACE("%p (%s) %p\n", hInstance, debugstr_w(lpBitmapName), bitmap);
793 if(!lpBitmapName || !bitmap)
794 return InvalidParameter;
796 /* load DIB */
797 hbm = LoadImageW(hInstance, lpBitmapName, IMAGE_BITMAP, 0, 0,
798 LR_CREATEDIBSECTION);
800 if(hbm){
801 stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, bitmap);
802 DeleteObject(hbm);
805 return stat;
808 GpStatus WINGDIPAPI GdipCreateHBITMAPFromBitmap(GpBitmap* bitmap,
809 HBITMAP* hbmReturn, ARGB background)
811 GpStatus stat;
812 HBITMAP result, oldbitmap;
813 UINT width, height;
814 HDC hdc;
815 GpGraphics *graphics;
816 BITMAPINFOHEADER bih;
817 void *bits;
818 TRACE("(%p,%p,%x)\n", bitmap, hbmReturn, background);
820 if (!bitmap || !hbmReturn) return InvalidParameter;
822 GdipGetImageWidth((GpImage*)bitmap, &width);
823 GdipGetImageHeight((GpImage*)bitmap, &height);
825 bih.biSize = sizeof(bih);
826 bih.biWidth = width;
827 bih.biHeight = height;
828 bih.biPlanes = 1;
829 bih.biBitCount = 32;
830 bih.biCompression = BI_RGB;
831 bih.biSizeImage = 0;
832 bih.biXPelsPerMeter = 0;
833 bih.biYPelsPerMeter = 0;
834 bih.biClrUsed = 0;
835 bih.biClrImportant = 0;
837 hdc = CreateCompatibleDC(NULL);
838 if (!hdc) return GenericError;
840 result = CreateDIBSection(hdc, (BITMAPINFO*)&bih, DIB_RGB_COLORS, &bits,
841 NULL, 0);
843 if (result)
845 oldbitmap = SelectObject(hdc, result);
847 stat = GdipCreateFromHDC(hdc, &graphics);
848 if (stat == Ok)
850 stat = GdipGraphicsClear(graphics, background);
852 if (stat == Ok)
853 stat = GdipDrawImage(graphics, (GpImage*)bitmap, 0, 0);
855 GdipDeleteGraphics(graphics);
858 SelectObject(hdc, oldbitmap);
860 else
861 stat = GenericError;
863 DeleteDC(hdc);
865 if (stat != Ok && result)
867 DeleteObject(result);
868 result = NULL;
871 *hbmReturn = result;
873 return stat;
876 GpStatus WINGDIPAPI GdipConvertToEmfPlus(const GpGraphics* ref,
877 GpMetafile* metafile, BOOL* succ, EmfType emfType,
878 const WCHAR* description, GpMetafile** out_metafile)
880 static int calls;
882 if(!ref || !metafile || !out_metafile)
883 return InvalidParameter;
885 *succ = FALSE;
886 *out_metafile = NULL;
888 if(!(calls++))
889 FIXME("not implemented\n");
891 return NotImplemented;
894 /* FIXME: this should create a bitmap in the given size with the attributes
895 * (resolution etc.) of the graphics object */
896 GpStatus WINGDIPAPI GdipCreateBitmapFromGraphics(INT width, INT height,
897 GpGraphics* target, GpBitmap** bitmap)
899 static int calls;
900 GpStatus ret;
902 if(!target || !bitmap)
903 return InvalidParameter;
905 if(!(calls++))
906 FIXME("hacked stub\n");
908 ret = GdipCreateBitmapFromScan0(width, height, 0, PixelFormat24bppRGB,
909 NULL, bitmap);
911 return ret;
914 GpStatus WINGDIPAPI GdipCreateBitmapFromHICON(HICON hicon, GpBitmap** bitmap)
916 GpStatus stat;
917 ICONINFO iinfo;
918 BITMAP bm;
919 int ret;
920 UINT width, height;
921 GpRect rect;
922 BitmapData lockeddata;
923 HDC screendc;
924 BOOL has_alpha;
925 int x, y;
926 BYTE *bits;
927 BITMAPINFOHEADER bih;
928 DWORD *src;
929 BYTE *dst_row;
930 DWORD *dst;
932 TRACE("%p, %p\n", hicon, bitmap);
934 if(!bitmap || !GetIconInfo(hicon, &iinfo))
936 DeleteObject(iinfo.hbmColor);
937 DeleteObject(iinfo.hbmMask);
938 return InvalidParameter;
941 /* get the size of the icon */
942 ret = GetObjectA(iinfo.hbmColor ? iinfo.hbmColor : iinfo.hbmMask, sizeof(bm), &bm);
943 if (ret == 0) {
944 DeleteObject(iinfo.hbmColor);
945 DeleteObject(iinfo.hbmMask);
946 return GenericError;
949 width = bm.bmWidth;
951 if (iinfo.hbmColor)
952 height = abs(bm.bmHeight);
953 else /* combined bitmap + mask */
954 height = abs(bm.bmHeight) / 2;
956 bits = HeapAlloc(GetProcessHeap(), 0, 4*width*height);
957 if (!bits) {
958 DeleteObject(iinfo.hbmColor);
959 DeleteObject(iinfo.hbmMask);
960 return OutOfMemory;
963 stat = GdipCreateBitmapFromScan0(width, height, 0, PixelFormat32bppARGB, NULL, bitmap);
964 if (stat != Ok) {
965 DeleteObject(iinfo.hbmColor);
966 DeleteObject(iinfo.hbmMask);
967 HeapFree(GetProcessHeap(), 0, bits);
968 return stat;
971 rect.X = 0;
972 rect.Y = 0;
973 rect.Width = width;
974 rect.Height = height;
976 stat = GdipBitmapLockBits(*bitmap, &rect, ImageLockModeWrite, PixelFormat32bppARGB, &lockeddata);
977 if (stat != Ok) {
978 DeleteObject(iinfo.hbmColor);
979 DeleteObject(iinfo.hbmMask);
980 HeapFree(GetProcessHeap(), 0, bits);
981 GdipDisposeImage((GpImage*)*bitmap);
982 return stat;
985 bih.biSize = sizeof(bih);
986 bih.biWidth = width;
987 bih.biHeight = -height;
988 bih.biPlanes = 1;
989 bih.biBitCount = 32;
990 bih.biCompression = BI_RGB;
991 bih.biSizeImage = 0;
992 bih.biXPelsPerMeter = 0;
993 bih.biYPelsPerMeter = 0;
994 bih.biClrUsed = 0;
995 bih.biClrImportant = 0;
997 screendc = GetDC(0);
998 if (iinfo.hbmColor)
1000 GetDIBits(screendc, iinfo.hbmColor, 0, height, bits, (BITMAPINFO*)&bih, DIB_RGB_COLORS);
1002 if (bm.bmBitsPixel == 32)
1004 has_alpha = FALSE;
1006 /* If any pixel has a non-zero alpha, ignore hbmMask */
1007 src = (DWORD*)bits;
1008 for (x=0; x<width && !has_alpha; x++)
1009 for (y=0; y<height && !has_alpha; y++)
1010 if ((*src++ & 0xff000000) != 0)
1011 has_alpha = TRUE;
1013 else has_alpha = FALSE;
1015 else
1017 GetDIBits(screendc, iinfo.hbmMask, 0, height, bits, (BITMAPINFO*)&bih, DIB_RGB_COLORS);
1018 has_alpha = FALSE;
1021 /* copy the image data to the Bitmap */
1022 src = (DWORD*)bits;
1023 dst_row = lockeddata.Scan0;
1024 for (y=0; y<height; y++)
1026 memcpy(dst_row, src, width*4);
1027 src += width;
1028 dst_row += lockeddata.Stride;
1031 if (!has_alpha)
1033 if (iinfo.hbmMask)
1035 /* read alpha data from the mask */
1036 if (iinfo.hbmColor)
1037 GetDIBits(screendc, iinfo.hbmMask, 0, height, bits, (BITMAPINFO*)&bih, DIB_RGB_COLORS);
1038 else
1039 GetDIBits(screendc, iinfo.hbmMask, height, height, bits, (BITMAPINFO*)&bih, DIB_RGB_COLORS);
1041 src = (DWORD*)bits;
1042 dst_row = lockeddata.Scan0;
1043 for (y=0; y<height; y++)
1045 dst = (DWORD*)dst_row;
1046 for (x=0; x<height; x++)
1048 DWORD src_value = *src++;
1049 if (src_value)
1050 *dst++ = 0;
1051 else
1052 *dst++ |= 0xff000000;
1054 dst_row += lockeddata.Stride;
1057 else
1059 /* set constant alpha of 255 */
1060 dst_row = bits;
1061 for (y=0; y<height; y++)
1063 dst = (DWORD*)dst_row;
1064 for (x=0; x<height; x++)
1065 *dst++ |= 0xff000000;
1066 dst_row += lockeddata.Stride;
1071 ReleaseDC(0, screendc);
1073 DeleteObject(iinfo.hbmColor);
1074 DeleteObject(iinfo.hbmMask);
1076 GdipBitmapUnlockBits(*bitmap, &lockeddata);
1078 HeapFree(GetProcessHeap(), 0, bits);
1080 return Ok;
1083 GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
1084 PixelFormat format, BYTE* scan0, GpBitmap** bitmap)
1086 BITMAPINFOHEADER bmih;
1087 HBITMAP hbitmap;
1088 INT row_size, dib_stride;
1089 HDC hdc;
1090 BYTE *bits;
1091 int i;
1093 TRACE("%d %d %d %d %p %p\n", width, height, stride, format, scan0, bitmap);
1095 if (!bitmap) return InvalidParameter;
1097 if(width <= 0 || height <= 0 || (scan0 && (stride % 4))){
1098 *bitmap = NULL;
1099 return InvalidParameter;
1102 if(scan0 && !stride)
1103 return InvalidParameter;
1105 row_size = (width * PIXELFORMATBPP(format)+7) / 8;
1106 dib_stride = (row_size + 3) & ~3;
1108 if(stride == 0)
1109 stride = dib_stride;
1111 bmih.biSize = sizeof(BITMAPINFOHEADER);
1112 bmih.biWidth = width;
1113 bmih.biHeight = -height;
1114 bmih.biPlanes = 1;
1115 /* FIXME: use the rest of the data from format */
1116 bmih.biBitCount = PIXELFORMATBPP(format);
1117 bmih.biCompression = BI_RGB;
1118 bmih.biSizeImage = 0;
1119 bmih.biXPelsPerMeter = 0;
1120 bmih.biYPelsPerMeter = 0;
1121 bmih.biClrUsed = 0;
1122 bmih.biClrImportant = 0;
1124 hdc = CreateCompatibleDC(NULL);
1125 if (!hdc) return GenericError;
1127 hbitmap = CreateDIBSection(hdc, (BITMAPINFO*)&bmih, DIB_RGB_COLORS, (void**)&bits,
1128 NULL, 0);
1130 DeleteDC(hdc);
1132 if (!hbitmap) return GenericError;
1134 /* copy bits to the dib if necessary */
1135 /* FIXME: should reference the bits instead of copying them */
1136 if (scan0)
1137 for (i=0; i<height; i++)
1138 memcpy(bits+i*dib_stride, scan0+i*stride, row_size);
1140 *bitmap = GdipAlloc(sizeof(GpBitmap));
1141 if(!*bitmap)
1143 DeleteObject(hbitmap);
1144 return OutOfMemory;
1147 (*bitmap)->image.type = ImageTypeBitmap;
1148 memcpy(&(*bitmap)->image.format, &ImageFormatMemoryBMP, sizeof(GUID));
1149 (*bitmap)->image.flags = ImageFlagsNone;
1150 (*bitmap)->width = width;
1151 (*bitmap)->height = height;
1152 (*bitmap)->format = format;
1153 (*bitmap)->image.picture = NULL;
1154 (*bitmap)->hbitmap = hbitmap;
1155 (*bitmap)->hdc = NULL;
1156 (*bitmap)->bits = bits;
1157 (*bitmap)->stride = dib_stride;
1159 return Ok;
1162 GpStatus WINGDIPAPI GdipCreateBitmapFromStream(IStream* stream,
1163 GpBitmap **bitmap)
1165 GpStatus stat;
1167 TRACE("%p %p\n", stream, bitmap);
1169 stat = GdipLoadImageFromStream(stream, (GpImage**) bitmap);
1171 if(stat != Ok)
1172 return stat;
1174 if((*bitmap)->image.type != ImageTypeBitmap){
1175 GdipDisposeImage(&(*bitmap)->image);
1176 *bitmap = NULL;
1177 return GenericError; /* FIXME: what error to return? */
1180 return Ok;
1183 /* FIXME: no icm */
1184 GpStatus WINGDIPAPI GdipCreateBitmapFromStreamICM(IStream* stream,
1185 GpBitmap **bitmap)
1187 TRACE("%p %p\n", stream, bitmap);
1189 return GdipCreateBitmapFromStream(stream, bitmap);
1192 GpStatus WINGDIPAPI GdipCreateCachedBitmap(GpBitmap *bitmap, GpGraphics *graphics,
1193 GpCachedBitmap **cachedbmp)
1195 GpStatus stat;
1197 TRACE("%p %p %p\n", bitmap, graphics, cachedbmp);
1199 if(!bitmap || !graphics || !cachedbmp)
1200 return InvalidParameter;
1202 *cachedbmp = GdipAlloc(sizeof(GpCachedBitmap));
1203 if(!*cachedbmp)
1204 return OutOfMemory;
1206 stat = GdipCloneImage(&(bitmap->image), &(*cachedbmp)->image);
1207 if(stat != Ok){
1208 GdipFree(*cachedbmp);
1209 return stat;
1212 return Ok;
1215 GpStatus WINGDIPAPI GdipCreateHICONFromBitmap(GpBitmap *bitmap, HICON *hicon)
1217 FIXME("(%p, %p)\n", bitmap, hicon);
1219 return NotImplemented;
1222 GpStatus WINGDIPAPI GdipDeleteCachedBitmap(GpCachedBitmap *cachedbmp)
1224 TRACE("%p\n", cachedbmp);
1226 if(!cachedbmp)
1227 return InvalidParameter;
1229 GdipDisposeImage(cachedbmp->image);
1230 GdipFree(cachedbmp);
1232 return Ok;
1235 GpStatus WINGDIPAPI GdipDrawCachedBitmap(GpGraphics *graphics,
1236 GpCachedBitmap *cachedbmp, INT x, INT y)
1238 TRACE("%p %p %d %d\n", graphics, cachedbmp, x, y);
1240 if(!graphics || !cachedbmp)
1241 return InvalidParameter;
1243 return GdipDrawImage(graphics, cachedbmp->image, (REAL)x, (REAL)y);
1246 GpStatus WINGDIPAPI GdipEmfToWmfBits(HENHMETAFILE hemf, UINT cbData16,
1247 LPBYTE pData16, INT iMapMode, INT eFlags)
1249 FIXME("(%p, %d, %p, %d, %d): stub\n", hemf, cbData16, pData16, iMapMode, eFlags);
1250 return NotImplemented;
1253 GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
1255 TRACE("%p\n", image);
1257 if(!image)
1258 return InvalidParameter;
1260 if (image->picture)
1261 IPicture_Release(image->picture);
1262 if (image->type == ImageTypeBitmap)
1264 GdipFree(((GpBitmap*)image)->bitmapbits);
1265 DeleteDC(((GpBitmap*)image)->hdc);
1267 GdipFree(image);
1269 return Ok;
1272 GpStatus WINGDIPAPI GdipFindFirstImageItem(GpImage *image, ImageItemData* item)
1274 if(!image || !item)
1275 return InvalidParameter;
1277 return NotImplemented;
1280 GpStatus WINGDIPAPI GdipGetImageBounds(GpImage *image, GpRectF *srcRect,
1281 GpUnit *srcUnit)
1283 TRACE("%p %p %p\n", image, srcRect, srcUnit);
1285 if(!image || !srcRect || !srcUnit)
1286 return InvalidParameter;
1287 if(image->type == ImageTypeMetafile){
1288 *srcRect = ((GpMetafile*)image)->bounds;
1289 *srcUnit = ((GpMetafile*)image)->unit;
1291 else if(image->type == ImageTypeBitmap){
1292 srcRect->X = srcRect->Y = 0.0;
1293 srcRect->Width = (REAL) ((GpBitmap*)image)->width;
1294 srcRect->Height = (REAL) ((GpBitmap*)image)->height;
1295 *srcUnit = UnitPixel;
1297 else{
1298 srcRect->X = srcRect->Y = 0.0;
1299 srcRect->Width = ipicture_pixel_width(image->picture);
1300 srcRect->Height = ipicture_pixel_height(image->picture);
1301 *srcUnit = UnitPixel;
1304 TRACE("returning (%f, %f) (%f, %f) unit type %d\n", srcRect->X, srcRect->Y,
1305 srcRect->Width, srcRect->Height, *srcUnit);
1307 return Ok;
1310 GpStatus WINGDIPAPI GdipGetImageDimension(GpImage *image, REAL *width,
1311 REAL *height)
1313 TRACE("%p %p %p\n", image, width, height);
1315 if(!image || !height || !width)
1316 return InvalidParameter;
1318 if(image->type == ImageTypeMetafile){
1319 HDC hdc = GetDC(0);
1321 *height = convert_unit(hdc, ((GpMetafile*)image)->unit) *
1322 ((GpMetafile*)image)->bounds.Height;
1324 *width = convert_unit(hdc, ((GpMetafile*)image)->unit) *
1325 ((GpMetafile*)image)->bounds.Width;
1327 ReleaseDC(0, hdc);
1330 else if(image->type == ImageTypeBitmap){
1331 *height = ((GpBitmap*)image)->height;
1332 *width = ((GpBitmap*)image)->width;
1334 else{
1335 *height = ipicture_pixel_height(image->picture);
1336 *width = ipicture_pixel_width(image->picture);
1339 TRACE("returning (%f, %f)\n", *height, *width);
1340 return Ok;
1343 GpStatus WINGDIPAPI GdipGetImageGraphicsContext(GpImage *image,
1344 GpGraphics **graphics)
1346 HDC hdc;
1348 TRACE("%p %p\n", image, graphics);
1350 if(!image || !graphics)
1351 return InvalidParameter;
1353 if(image->type != ImageTypeBitmap){
1354 FIXME("not implemented for image type %d\n", image->type);
1355 return NotImplemented;
1358 hdc = ((GpBitmap*)image)->hdc;
1360 if(!hdc){
1361 hdc = CreateCompatibleDC(0);
1362 SelectObject(hdc, ((GpBitmap*)image)->hbitmap);
1363 ((GpBitmap*)image)->hdc = hdc;
1366 return GdipCreateFromHDC(hdc, graphics);
1369 GpStatus WINGDIPAPI GdipGetImageHeight(GpImage *image, UINT *height)
1371 TRACE("%p %p\n", image, height);
1373 if(!image || !height)
1374 return InvalidParameter;
1376 if(image->type == ImageTypeMetafile){
1377 HDC hdc = GetDC(0);
1379 *height = roundr(convert_unit(hdc, ((GpMetafile*)image)->unit) *
1380 ((GpMetafile*)image)->bounds.Height);
1382 ReleaseDC(0, hdc);
1384 else if(image->type == ImageTypeBitmap)
1385 *height = ((GpBitmap*)image)->height;
1386 else
1387 *height = ipicture_pixel_height(image->picture);
1389 TRACE("returning %d\n", *height);
1391 return Ok;
1394 GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res)
1396 static int calls;
1398 if(!image || !res)
1399 return InvalidParameter;
1401 if(!(calls++))
1402 FIXME("not implemented\n");
1404 return NotImplemented;
1407 GpStatus WINGDIPAPI GdipGetImagePaletteSize(GpImage *image, INT *size)
1409 FIXME("%p %p\n", image, size);
1411 if(!image || !size)
1412 return InvalidParameter;
1414 return NotImplemented;
1417 /* FIXME: test this function for non-bitmap types */
1418 GpStatus WINGDIPAPI GdipGetImagePixelFormat(GpImage *image, PixelFormat *format)
1420 TRACE("%p %p\n", image, format);
1422 if(!image || !format)
1423 return InvalidParameter;
1425 if(image->type != ImageTypeBitmap)
1426 *format = PixelFormat24bppRGB;
1427 else
1428 *format = ((GpBitmap*) image)->format;
1430 return Ok;
1433 GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage *image, GUID *format)
1435 if(!image || !format)
1436 return InvalidParameter;
1438 memcpy(format, &image->format, sizeof(GUID));
1440 return Ok;
1443 GpStatus WINGDIPAPI GdipGetImageType(GpImage *image, ImageType *type)
1445 TRACE("%p %p\n", image, type);
1447 if(!image || !type)
1448 return InvalidParameter;
1450 *type = image->type;
1452 return Ok;
1455 GpStatus WINGDIPAPI GdipGetImageVerticalResolution(GpImage *image, REAL *res)
1457 static int calls;
1459 if(!image || !res)
1460 return InvalidParameter;
1462 if(!(calls++))
1463 FIXME("not implemented\n");
1465 return NotImplemented;
1468 GpStatus WINGDIPAPI GdipGetImageWidth(GpImage *image, UINT *width)
1470 TRACE("%p %p\n", image, width);
1472 if(!image || !width)
1473 return InvalidParameter;
1475 if(image->type == ImageTypeMetafile){
1476 HDC hdc = GetDC(0);
1478 *width = roundr(convert_unit(hdc, ((GpMetafile*)image)->unit) *
1479 ((GpMetafile*)image)->bounds.Width);
1481 ReleaseDC(0, hdc);
1483 else if(image->type == ImageTypeBitmap)
1484 *width = ((GpBitmap*)image)->width;
1485 else
1486 *width = ipicture_pixel_width(image->picture);
1488 TRACE("returning %d\n", *width);
1490 return Ok;
1493 GpStatus WINGDIPAPI GdipGetMetafileHeaderFromMetafile(GpMetafile * metafile,
1494 MetafileHeader * header)
1496 static int calls;
1498 if(!metafile || !header)
1499 return InvalidParameter;
1501 if(!(calls++))
1502 FIXME("not implemented\n");
1504 return Ok;
1507 GpStatus WINGDIPAPI GdipGetAllPropertyItems(GpImage *image, UINT size,
1508 UINT num, PropertyItem* items)
1510 static int calls;
1512 if(!(calls++))
1513 FIXME("not implemented\n");
1515 return InvalidParameter;
1518 GpStatus WINGDIPAPI GdipGetPropertyCount(GpImage *image, UINT* num)
1520 static int calls;
1522 if(!(calls++))
1523 FIXME("not implemented\n");
1525 return InvalidParameter;
1528 GpStatus WINGDIPAPI GdipGetPropertyIdList(GpImage *image, UINT num, PROPID* list)
1530 static int calls;
1532 if(!(calls++))
1533 FIXME("not implemented\n");
1535 return InvalidParameter;
1538 GpStatus WINGDIPAPI GdipGetPropertyItem(GpImage *image, PROPID id, UINT size,
1539 PropertyItem* buffer)
1541 static int calls;
1543 if(!(calls++))
1544 FIXME("not implemented\n");
1546 return InvalidParameter;
1549 GpStatus WINGDIPAPI GdipGetPropertyItemSize(GpImage *image, PROPID pid,
1550 UINT* size)
1552 static int calls;
1554 TRACE("%p %x %p\n", image, pid, size);
1556 if(!size || !image)
1557 return InvalidParameter;
1559 if(!(calls++))
1560 FIXME("not implemented\n");
1562 return NotImplemented;
1565 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage *image, UINT* size, UINT* num)
1567 static int calls;
1569 if(!(calls++))
1570 FIXME("not implemented\n");
1572 return InvalidParameter;
1575 GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
1576 GDIPCONST GUID* dimensionID, UINT* count)
1578 static int calls;
1580 if(!image || !dimensionID || !count)
1581 return InvalidParameter;
1583 if(!(calls++))
1584 FIXME("not implemented\n");
1586 return NotImplemented;
1589 GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image,
1590 UINT* count)
1592 if(!image || !count)
1593 return InvalidParameter;
1595 *count = 1;
1597 FIXME("stub\n");
1599 return Ok;
1602 GpStatus WINGDIPAPI GdipImageGetFrameDimensionsList(GpImage* image,
1603 GUID* dimensionIDs, UINT count)
1605 static int calls;
1607 if(!image || !dimensionIDs)
1608 return InvalidParameter;
1610 if(!(calls++))
1611 FIXME("not implemented\n");
1613 return Ok;
1616 GpStatus WINGDIPAPI GdipImageSelectActiveFrame(GpImage *image,
1617 GDIPCONST GUID* dimensionID, UINT frameidx)
1619 static int calls;
1621 if(!image || !dimensionID)
1622 return InvalidParameter;
1624 if(!(calls++))
1625 FIXME("not implemented\n");
1627 return Ok;
1630 GpStatus WINGDIPAPI GdipLoadImageFromFile(GDIPCONST WCHAR* filename,
1631 GpImage **image)
1633 GpStatus stat;
1634 IStream *stream;
1636 TRACE("(%s) %p\n", debugstr_w(filename), image);
1638 if (!filename || !image)
1639 return InvalidParameter;
1641 stat = GdipCreateStreamOnFile(filename, GENERIC_READ, &stream);
1643 if (stat != Ok)
1644 return stat;
1646 stat = GdipLoadImageFromStream(stream, image);
1648 IStream_Release(stream);
1650 return stat;
1653 /* FIXME: no icm handling */
1654 GpStatus WINGDIPAPI GdipLoadImageFromFileICM(GDIPCONST WCHAR* filename,GpImage **image)
1656 TRACE("(%s) %p\n", debugstr_w(filename), image);
1658 return GdipLoadImageFromFile(filename, image);
1661 static const WICPixelFormatGUID *wic_pixel_formats[] = {
1662 &GUID_WICPixelFormat16bppBGR555,
1663 &GUID_WICPixelFormat24bppBGR,
1664 &GUID_WICPixelFormat32bppBGR,
1665 &GUID_WICPixelFormat32bppBGRA,
1666 &GUID_WICPixelFormat32bppPBGRA,
1667 NULL
1670 static const PixelFormat wic_gdip_formats[] = {
1671 PixelFormat16bppRGB555,
1672 PixelFormat24bppRGB,
1673 PixelFormat32bppRGB,
1674 PixelFormat32bppARGB,
1675 PixelFormat32bppPARGB,
1678 static GpStatus decode_image_wic(IStream* stream, REFCLSID clsid, GpImage **image)
1680 GpStatus status=Ok;
1681 GpBitmap *bitmap;
1682 HRESULT hr;
1683 IWICBitmapDecoder *decoder;
1684 IWICBitmapFrameDecode *frame;
1685 IWICBitmapSource *source=NULL;
1686 WICPixelFormatGUID wic_format;
1687 PixelFormat gdip_format=0;
1688 int i;
1689 UINT width, height;
1690 BitmapData lockeddata;
1691 WICRect wrc;
1692 HRESULT initresult;
1694 initresult = CoInitialize(NULL);
1696 hr = CoCreateInstance(clsid, NULL, CLSCTX_INPROC_SERVER,
1697 &IID_IWICBitmapDecoder, (void**)&decoder);
1698 if (FAILED(hr)) goto end;
1700 hr = IWICBitmapDecoder_Initialize(decoder, (IStream*)stream, WICDecodeMetadataCacheOnLoad);
1701 if (SUCCEEDED(hr))
1702 hr = IWICBitmapDecoder_GetFrame(decoder, 0, &frame);
1704 if (SUCCEEDED(hr)) /* got frame */
1706 hr = IWICBitmapFrameDecode_GetPixelFormat(frame, &wic_format);
1708 if (SUCCEEDED(hr))
1710 for (i=0; wic_pixel_formats[i]; i++)
1712 if (IsEqualGUID(&wic_format, wic_pixel_formats[i]))
1714 source = (IWICBitmapSource*)frame;
1715 IWICBitmapSource_AddRef(source);
1716 gdip_format = wic_gdip_formats[i];
1717 break;
1720 if (!source)
1722 /* unknown format; fall back on 32bppARGB */
1723 hr = WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA, (IWICBitmapSource*)frame, &source);
1724 gdip_format = PixelFormat32bppARGB;
1728 if (SUCCEEDED(hr)) /* got source */
1730 hr = IWICBitmapSource_GetSize(source, &width, &height);
1732 if (SUCCEEDED(hr))
1733 status = GdipCreateBitmapFromScan0(width, height, 0, gdip_format,
1734 NULL, &bitmap);
1736 if (SUCCEEDED(hr) && status == Ok) /* created bitmap */
1738 status = GdipBitmapLockBits(bitmap, NULL, ImageLockModeWrite,
1739 gdip_format, &lockeddata);
1740 if (status == Ok) /* locked bitmap */
1742 wrc.X = 0;
1743 wrc.Width = width;
1744 wrc.Height = 1;
1745 for (i=0; i<height; i++)
1747 wrc.Y = i;
1748 hr = IWICBitmapSource_CopyPixels(source, &wrc, abs(lockeddata.Stride),
1749 abs(lockeddata.Stride), (BYTE*)lockeddata.Scan0+lockeddata.Stride*i);
1750 if (FAILED(hr)) break;
1753 GdipBitmapUnlockBits(bitmap, &lockeddata);
1756 if (SUCCEEDED(hr) && status == Ok)
1757 *image = (GpImage*)bitmap;
1758 else
1760 *image = NULL;
1761 GdipDisposeImage((GpImage*)bitmap);
1765 IWICBitmapSource_Release(source);
1768 IWICBitmapFrameDecode_Release(frame);
1771 IWICBitmapDecoder_Release(decoder);
1773 end:
1774 if (SUCCEEDED(initresult)) CoUninitialize();
1776 if (FAILED(hr) && status == Ok) status = hresult_to_status(hr);
1778 return status;
1781 static GpStatus decode_image_icon(IStream* stream, REFCLSID clsid, GpImage **image)
1783 return decode_image_wic(stream, &CLSID_WICIcoDecoder, image);
1786 static GpStatus decode_image_bmp(IStream* stream, REFCLSID clsid, GpImage **image)
1788 GpStatus status;
1789 GpBitmap* bitmap;
1791 status = decode_image_wic(stream, &CLSID_WICBmpDecoder, image);
1793 bitmap = (GpBitmap*)*image;
1795 if (status == Ok && bitmap->format == PixelFormat32bppARGB)
1797 /* WIC supports bmp files with alpha, but gdiplus does not */
1798 bitmap->format = PixelFormat32bppRGB;
1801 return status;
1804 static GpStatus decode_image_jpeg(IStream* stream, REFCLSID clsid, GpImage **image)
1806 return decode_image_wic(stream, &CLSID_WICJpegDecoder, image);
1809 static GpStatus decode_image_png(IStream* stream, REFCLSID clsid, GpImage **image)
1811 return decode_image_wic(stream, &CLSID_WICPngDecoder, image);
1814 static GpStatus decode_image_gif(IStream* stream, REFCLSID clsid, GpImage **image)
1816 return decode_image_wic(stream, &CLSID_WICGifDecoder, image);
1819 static GpStatus decode_image_olepicture_metafile(IStream* stream, REFCLSID clsid, GpImage **image)
1821 IPicture *pic;
1823 TRACE("%p %p\n", stream, image);
1825 if(!stream || !image)
1826 return InvalidParameter;
1828 if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
1829 (LPVOID*) &pic) != S_OK){
1830 TRACE("Could not load picture\n");
1831 return GenericError;
1834 /* FIXME: missing initialization code */
1835 *image = GdipAlloc(sizeof(GpMetafile));
1836 if(!*image) return OutOfMemory;
1837 (*image)->type = ImageTypeMetafile;
1838 (*image)->picture = pic;
1839 (*image)->flags = ImageFlagsNone;
1841 return Ok;
1844 typedef GpStatus (*encode_image_func)(GpImage *image, IStream* stream,
1845 GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params);
1847 typedef GpStatus (*decode_image_func)(IStream *stream, REFCLSID clsid, GpImage** image);
1849 typedef struct image_codec {
1850 ImageCodecInfo info;
1851 encode_image_func encode_func;
1852 decode_image_func decode_func;
1853 } image_codec;
1855 typedef enum {
1856 BMP,
1857 JPEG,
1858 GIF,
1859 EMF,
1860 WMF,
1861 PNG,
1862 ICO,
1863 NUM_CODECS
1864 } ImageFormat;
1866 static const struct image_codec codecs[NUM_CODECS];
1868 static GpStatus get_decoder_info(IStream* stream, const struct image_codec **result)
1870 BYTE signature[8];
1871 LARGE_INTEGER seek;
1872 HRESULT hr;
1873 UINT bytesread;
1874 int i, j;
1876 /* seek to the start of the stream */
1877 seek.QuadPart = 0;
1878 hr = IStream_Seek(stream, seek, STREAM_SEEK_SET, NULL);
1879 if (FAILED(hr)) return hresult_to_status(hr);
1881 /* read the first 8 bytes */
1882 /* FIXME: This assumes all codecs have one signature <= 8 bytes in length */
1883 hr = IStream_Read(stream, signature, 8, &bytesread);
1884 if (FAILED(hr)) return hresult_to_status(hr);
1885 if (hr == S_FALSE || bytesread == 0) return GenericError;
1887 for (i = 0; i < NUM_CODECS; i++) {
1888 if ((codecs[i].info.Flags & ImageCodecFlagsDecoder) &&
1889 bytesread >= codecs[i].info.SigSize)
1891 for (j=0; j<codecs[i].info.SigSize; j++)
1892 if ((signature[j] & codecs[i].info.SigMask[j]) != codecs[i].info.SigPattern[j])
1893 break;
1894 if (j == codecs[i].info.SigSize)
1896 *result = &codecs[i];
1897 return Ok;
1902 TRACE("no match for %i byte signature %x %x %x %x %x %x %x %x\n", bytesread,
1903 signature[0],signature[1],signature[2],signature[3],
1904 signature[4],signature[5],signature[6],signature[7]);
1906 return GenericError;
1909 GpStatus WINGDIPAPI GdipLoadImageFromStream(IStream* stream, GpImage **image)
1911 GpStatus stat;
1912 LARGE_INTEGER seek;
1913 HRESULT hr;
1914 const struct image_codec *codec=NULL;
1916 /* choose an appropriate image decoder */
1917 stat = get_decoder_info(stream, &codec);
1918 if (stat != Ok) return stat;
1920 /* seek to the start of the stream */
1921 seek.QuadPart = 0;
1922 hr = IStream_Seek(stream, seek, STREAM_SEEK_SET, NULL);
1923 if (FAILED(hr)) return hresult_to_status(hr);
1925 /* call on the image decoder to do the real work */
1926 stat = codec->decode_func(stream, &codec->info.Clsid, image);
1928 /* take note of the original data format */
1929 if (stat == Ok)
1931 memcpy(&(*image)->format, &codec->info.FormatID, sizeof(GUID));
1934 return stat;
1937 /* FIXME: no ICM */
1938 GpStatus WINGDIPAPI GdipLoadImageFromStreamICM(IStream* stream, GpImage **image)
1940 TRACE("%p %p\n", stream, image);
1942 return GdipLoadImageFromStream(stream, image);
1945 GpStatus WINGDIPAPI GdipRemovePropertyItem(GpImage *image, PROPID propId)
1947 static int calls;
1949 if(!image)
1950 return InvalidParameter;
1952 if(!(calls++))
1953 FIXME("not implemented\n");
1955 return NotImplemented;
1958 GpStatus WINGDIPAPI GdipSetPropertyItem(GpImage *image, GDIPCONST PropertyItem* item)
1960 static int calls;
1962 if(!(calls++))
1963 FIXME("not implemented\n");
1965 return NotImplemented;
1968 GpStatus WINGDIPAPI GdipSaveImageToFile(GpImage *image, GDIPCONST WCHAR* filename,
1969 GDIPCONST CLSID *clsidEncoder,
1970 GDIPCONST EncoderParameters *encoderParams)
1972 GpStatus stat;
1973 IStream *stream;
1975 TRACE("%p (%s) %p %p\n", image, debugstr_w(filename), clsidEncoder, encoderParams);
1977 if (!image || !filename|| !clsidEncoder)
1978 return InvalidParameter;
1980 stat = GdipCreateStreamOnFile(filename, GENERIC_WRITE, &stream);
1981 if (stat != Ok)
1982 return GenericError;
1984 stat = GdipSaveImageToStream(image, stream, clsidEncoder, encoderParams);
1986 IStream_Release(stream);
1987 return stat;
1990 /*************************************************************************
1991 * Encoding functions -
1992 * These functions encode an image in different image file formats.
1994 #define BITMAP_FORMAT_BMP 0x4d42 /* "BM" */
1995 #define BITMAP_FORMAT_JPEG 0xd8ff
1996 #define BITMAP_FORMAT_GIF 0x4947
1997 #define BITMAP_FORMAT_PNG 0x5089
1998 #define BITMAP_FORMAT_APM 0xcdd7
2000 static GpStatus encode_image_WIC(GpImage *image, IStream* stream,
2001 GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params)
2003 GpStatus stat;
2004 GpBitmap *bitmap;
2005 IWICBitmapEncoder *encoder;
2006 IWICBitmapFrameEncode *frameencode;
2007 IPropertyBag2 *encoderoptions;
2008 HRESULT hr;
2009 UINT width, height;
2010 PixelFormat gdipformat=0;
2011 WICPixelFormatGUID wicformat;
2012 GpRect rc;
2013 BitmapData lockeddata;
2014 HRESULT initresult;
2015 UINT i;
2017 if (image->type != ImageTypeBitmap)
2018 return GenericError;
2020 bitmap = (GpBitmap*)image;
2022 GdipGetImageWidth(image, &width);
2023 GdipGetImageHeight(image, &height);
2025 rc.X = 0;
2026 rc.Y = 0;
2027 rc.Width = width;
2028 rc.Height = height;
2030 initresult = CoInitialize(NULL);
2032 hr = CoCreateInstance(clsid, NULL, CLSCTX_INPROC_SERVER,
2033 &IID_IWICBitmapEncoder, (void**)&encoder);
2034 if (FAILED(hr))
2036 if (SUCCEEDED(initresult)) CoUninitialize();
2037 return hresult_to_status(hr);
2040 hr = IWICBitmapEncoder_Initialize(encoder, stream, WICBitmapEncoderNoCache);
2042 if (SUCCEEDED(hr))
2044 hr = IWICBitmapEncoder_CreateNewFrame(encoder, &frameencode, &encoderoptions);
2047 if (SUCCEEDED(hr)) /* created frame */
2049 hr = IWICBitmapFrameEncode_Initialize(frameencode, encoderoptions);
2051 if (SUCCEEDED(hr))
2052 hr = IWICBitmapFrameEncode_SetSize(frameencode, width, height);
2054 if (SUCCEEDED(hr))
2055 /* FIXME: use the resolution from the image */
2056 hr = IWICBitmapFrameEncode_SetResolution(frameencode, 96.0, 96.0);
2058 if (SUCCEEDED(hr))
2060 for (i=0; wic_pixel_formats[i]; i++)
2062 if (wic_gdip_formats[i] == bitmap->format)
2063 break;
2065 if (wic_pixel_formats[i])
2066 memcpy(&wicformat, wic_pixel_formats[i], sizeof(GUID));
2067 else
2068 memcpy(&wicformat, &GUID_WICPixelFormat32bppBGRA, sizeof(GUID));
2070 hr = IWICBitmapFrameEncode_SetPixelFormat(frameencode, &wicformat);
2072 for (i=0; wic_pixel_formats[i]; i++)
2074 if (IsEqualGUID(&wicformat, wic_pixel_formats[i]))
2075 break;
2077 if (wic_pixel_formats[i])
2078 gdipformat = wic_gdip_formats[i];
2079 else
2081 ERR("cannot provide pixel format %s\n", debugstr_guid(&wicformat));
2082 hr = E_FAIL;
2086 if (SUCCEEDED(hr))
2088 stat = GdipBitmapLockBits(bitmap, &rc, ImageLockModeRead, gdipformat,
2089 &lockeddata);
2091 if (stat == Ok)
2093 UINT row_size = (lockeddata.Width * PIXELFORMATBPP(gdipformat) + 7)/8;
2094 BYTE *row;
2096 /* write one row at a time in case stride is negative */
2097 row = lockeddata.Scan0;
2098 for (i=0; i<lockeddata.Height; i++)
2100 hr = IWICBitmapFrameEncode_WritePixels(frameencode, 1, row_size, row_size, row);
2101 if (FAILED(hr)) break;
2102 row += lockeddata.Stride;
2105 GdipBitmapUnlockBits(bitmap, &lockeddata);
2107 else
2108 hr = E_FAIL;
2111 if (SUCCEEDED(hr))
2112 hr = IWICBitmapFrameEncode_Commit(frameencode);
2114 IWICBitmapFrameEncode_Release(frameencode);
2115 IPropertyBag2_Release(encoderoptions);
2118 if (SUCCEEDED(hr))
2119 hr = IWICBitmapEncoder_Commit(encoder);
2121 IWICBitmapEncoder_Release(encoder);
2123 if (SUCCEEDED(initresult)) CoUninitialize();
2125 return hresult_to_status(hr);
2128 static GpStatus encode_image_BMP(GpImage *image, IStream* stream,
2129 GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params)
2131 return encode_image_WIC(image, stream, &CLSID_WICBmpEncoder, params);
2134 /*****************************************************************************
2135 * GdipSaveImageToStream [GDIPLUS.@]
2137 GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage *image, IStream* stream,
2138 GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params)
2140 GpStatus stat;
2141 encode_image_func encode_image;
2142 int i;
2144 TRACE("%p %p %p %p\n", image, stream, clsid, params);
2146 if(!image || !stream)
2147 return InvalidParameter;
2149 /* select correct encoder */
2150 encode_image = NULL;
2151 for (i = 0; i < NUM_CODECS; i++) {
2152 if ((codecs[i].info.Flags & ImageCodecFlagsEncoder) &&
2153 IsEqualCLSID(clsid, &codecs[i].info.Clsid))
2154 encode_image = codecs[i].encode_func;
2156 if (encode_image == NULL)
2157 return UnknownImageFormat;
2159 stat = encode_image(image, stream, clsid, params);
2161 return stat;
2164 /*****************************************************************************
2165 * GdipGetImagePalette [GDIPLUS.@]
2167 GpStatus WINGDIPAPI GdipGetImagePalette(GpImage *image, ColorPalette *palette, INT size)
2169 static int calls = 0;
2171 if(!image)
2172 return InvalidParameter;
2174 if(!(calls++))
2175 FIXME("not implemented\n");
2177 return NotImplemented;
2180 /*****************************************************************************
2181 * GdipSetImagePalette [GDIPLUS.@]
2183 GpStatus WINGDIPAPI GdipSetImagePalette(GpImage *image,
2184 GDIPCONST ColorPalette *palette)
2186 static int calls;
2188 if(!image || !palette)
2189 return InvalidParameter;
2191 if(!(calls++))
2192 FIXME("not implemented\n");
2194 return NotImplemented;
2197 /*************************************************************************
2198 * Encoders -
2199 * Structures that represent which formats we support for encoding.
2202 /* ImageCodecInfo creation routines taken from libgdiplus */
2203 static const WCHAR bmp_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'B', 'M', 'P', 0}; /* Built-in BMP */
2204 static const WCHAR bmp_extension[] = {'*','.','B', 'M', 'P',';', '*','.', 'D','I', 'B',';', '*','.', 'R', 'L', 'E',0}; /* *.BMP;*.DIB;*.RLE */
2205 static const WCHAR bmp_mimetype[] = {'i', 'm', 'a','g', 'e', '/', 'b', 'm', 'p', 0}; /* image/bmp */
2206 static const WCHAR bmp_format[] = {'B', 'M', 'P', 0}; /* BMP */
2207 static const BYTE bmp_sig_pattern[] = { 0x42, 0x4D };
2208 static const BYTE bmp_sig_mask[] = { 0xFF, 0xFF };
2210 static const WCHAR jpeg_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'J','P','E','G', 0};
2211 static const WCHAR jpeg_extension[] = {'*','.','J','P','G',';', '*','.','J','P','E','G',';', '*','.','J','P','E',';', '*','.','J','F','I','F',0};
2212 static const WCHAR jpeg_mimetype[] = {'i','m','a','g','e','/','j','p','e','g', 0};
2213 static const WCHAR jpeg_format[] = {'J','P','E','G',0};
2214 static const BYTE jpeg_sig_pattern[] = { 0xFF, 0xD8 };
2215 static const BYTE jpeg_sig_mask[] = { 0xFF, 0xFF };
2217 static const WCHAR gif_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'G','I','F', 0};
2218 static const WCHAR gif_extension[] = {'*','.','G','I','F',0};
2219 static const WCHAR gif_mimetype[] = {'i','m','a','g','e','/','g','i','f', 0};
2220 static const WCHAR gif_format[] = {'G','I','F',0};
2221 static const BYTE gif_sig_pattern[4] = "GIF8";
2222 static const BYTE gif_sig_mask[] = { 0xFF, 0xFF, 0xFF, 0xFF };
2224 static const WCHAR emf_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'E','M','F', 0};
2225 static const WCHAR emf_extension[] = {'*','.','E','M','F',0};
2226 static const WCHAR emf_mimetype[] = {'i','m','a','g','e','/','x','-','e','m','f', 0};
2227 static const WCHAR emf_format[] = {'E','M','F',0};
2228 static const BYTE emf_sig_pattern[] = { 0x01, 0x00, 0x00, 0x00 };
2229 static const BYTE emf_sig_mask[] = { 0xFF, 0xFF, 0xFF, 0xFF };
2231 static const WCHAR wmf_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'W','M','F', 0};
2232 static const WCHAR wmf_extension[] = {'*','.','W','M','F',0};
2233 static const WCHAR wmf_mimetype[] = {'i','m','a','g','e','/','x','-','w','m','f', 0};
2234 static const WCHAR wmf_format[] = {'W','M','F',0};
2235 static const BYTE wmf_sig_pattern[] = { 0xd7, 0xcd };
2236 static const BYTE wmf_sig_mask[] = { 0xFF, 0xFF };
2238 static const WCHAR png_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'P','N','G', 0};
2239 static const WCHAR png_extension[] = {'*','.','P','N','G',0};
2240 static const WCHAR png_mimetype[] = {'i','m','a','g','e','/','p','n','g', 0};
2241 static const WCHAR png_format[] = {'P','N','G',0};
2242 static const BYTE png_sig_pattern[] = { 137, 80, 78, 71, 13, 10, 26, 10, };
2243 static const BYTE png_sig_mask[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
2245 static const WCHAR ico_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'I','C','O', 0};
2246 static const WCHAR ico_extension[] = {'*','.','I','C','O',0};
2247 static const WCHAR ico_mimetype[] = {'i','m','a','g','e','/','x','-','i','c','o','n', 0};
2248 static const WCHAR ico_format[] = {'I','C','O',0};
2249 static const BYTE ico_sig_pattern[] = { 0x00, 0x00, 0x01, 0x00 };
2250 static const BYTE ico_sig_mask[] = { 0xFF, 0xFF, 0xFF, 0xFF };
2252 static const struct image_codec codecs[NUM_CODECS] = {
2254 { /* BMP */
2255 /* Clsid */ { 0x557cf400, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2256 /* FormatID */ { 0xb96b3cabU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2257 /* CodecName */ bmp_codecname,
2258 /* DllName */ NULL,
2259 /* FormatDescription */ bmp_format,
2260 /* FilenameExtension */ bmp_extension,
2261 /* MimeType */ bmp_mimetype,
2262 /* Flags */ ImageCodecFlagsEncoder | ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
2263 /* Version */ 1,
2264 /* SigCount */ 1,
2265 /* SigSize */ 2,
2266 /* SigPattern */ bmp_sig_pattern,
2267 /* SigMask */ bmp_sig_mask,
2269 encode_image_BMP,
2270 decode_image_bmp
2273 { /* JPEG */
2274 /* Clsid */ { 0x557cf401, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2275 /* FormatID */ { 0xb96b3caeU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2276 /* CodecName */ jpeg_codecname,
2277 /* DllName */ NULL,
2278 /* FormatDescription */ jpeg_format,
2279 /* FilenameExtension */ jpeg_extension,
2280 /* MimeType */ jpeg_mimetype,
2281 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
2282 /* Version */ 1,
2283 /* SigCount */ 1,
2284 /* SigSize */ 2,
2285 /* SigPattern */ jpeg_sig_pattern,
2286 /* SigMask */ jpeg_sig_mask,
2288 NULL,
2289 decode_image_jpeg
2292 { /* GIF */
2293 /* Clsid */ { 0x557cf402, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2294 /* FormatID */ { 0xb96b3cb0U, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2295 /* CodecName */ gif_codecname,
2296 /* DllName */ NULL,
2297 /* FormatDescription */ gif_format,
2298 /* FilenameExtension */ gif_extension,
2299 /* MimeType */ gif_mimetype,
2300 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
2301 /* Version */ 1,
2302 /* SigCount */ 1,
2303 /* SigSize */ 4,
2304 /* SigPattern */ gif_sig_pattern,
2305 /* SigMask */ gif_sig_mask,
2307 NULL,
2308 decode_image_gif
2311 { /* EMF */
2312 /* Clsid */ { 0x557cf403, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2313 /* FormatID */ { 0xb96b3cacU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2314 /* CodecName */ emf_codecname,
2315 /* DllName */ NULL,
2316 /* FormatDescription */ emf_format,
2317 /* FilenameExtension */ emf_extension,
2318 /* MimeType */ emf_mimetype,
2319 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportVector | ImageCodecFlagsBuiltin,
2320 /* Version */ 1,
2321 /* SigCount */ 1,
2322 /* SigSize */ 4,
2323 /* SigPattern */ emf_sig_pattern,
2324 /* SigMask */ emf_sig_mask,
2326 NULL,
2327 decode_image_olepicture_metafile
2330 { /* WMF */
2331 /* Clsid */ { 0x557cf404, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2332 /* FormatID */ { 0xb96b3cadU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2333 /* CodecName */ wmf_codecname,
2334 /* DllName */ NULL,
2335 /* FormatDescription */ wmf_format,
2336 /* FilenameExtension */ wmf_extension,
2337 /* MimeType */ wmf_mimetype,
2338 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportVector | ImageCodecFlagsBuiltin,
2339 /* Version */ 1,
2340 /* SigCount */ 1,
2341 /* SigSize */ 2,
2342 /* SigPattern */ wmf_sig_pattern,
2343 /* SigMask */ wmf_sig_mask,
2345 NULL,
2346 decode_image_olepicture_metafile
2349 { /* PNG */
2350 /* Clsid */ { 0x557cf406, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2351 /* FormatID */ { 0xb96b3cafU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2352 /* CodecName */ png_codecname,
2353 /* DllName */ NULL,
2354 /* FormatDescription */ png_format,
2355 /* FilenameExtension */ png_extension,
2356 /* MimeType */ png_mimetype,
2357 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
2358 /* Version */ 1,
2359 /* SigCount */ 1,
2360 /* SigSize */ 8,
2361 /* SigPattern */ png_sig_pattern,
2362 /* SigMask */ png_sig_mask,
2364 NULL,
2365 decode_image_png
2368 { /* ICO */
2369 /* Clsid */ { 0x557cf407, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
2370 /* FormatID */ { 0xb96b3cabU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
2371 /* CodecName */ ico_codecname,
2372 /* DllName */ NULL,
2373 /* FormatDescription */ ico_format,
2374 /* FilenameExtension */ ico_extension,
2375 /* MimeType */ ico_mimetype,
2376 /* Flags */ ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
2377 /* Version */ 1,
2378 /* SigCount */ 1,
2379 /* SigSize */ 4,
2380 /* SigPattern */ ico_sig_pattern,
2381 /* SigMask */ ico_sig_mask,
2383 NULL,
2384 decode_image_icon
2388 /*****************************************************************************
2389 * GdipGetImageDecodersSize [GDIPLUS.@]
2391 GpStatus WINGDIPAPI GdipGetImageDecodersSize(UINT *numDecoders, UINT *size)
2393 int decoder_count=0;
2394 int i;
2395 TRACE("%p %p\n", numDecoders, size);
2397 if (!numDecoders || !size)
2398 return InvalidParameter;
2400 for (i=0; i<NUM_CODECS; i++)
2402 if (codecs[i].info.Flags & ImageCodecFlagsDecoder)
2403 decoder_count++;
2406 *numDecoders = decoder_count;
2407 *size = decoder_count * sizeof(ImageCodecInfo);
2409 return Ok;
2412 /*****************************************************************************
2413 * GdipGetImageDecoders [GDIPLUS.@]
2415 GpStatus WINGDIPAPI GdipGetImageDecoders(UINT numDecoders, UINT size, ImageCodecInfo *decoders)
2417 int i, decoder_count=0;
2418 TRACE("%u %u %p\n", numDecoders, size, decoders);
2420 if (!decoders ||
2421 size != numDecoders * sizeof(ImageCodecInfo))
2422 return GenericError;
2424 for (i=0; i<NUM_CODECS; i++)
2426 if (codecs[i].info.Flags & ImageCodecFlagsDecoder)
2428 if (decoder_count == numDecoders) return GenericError;
2429 memcpy(&decoders[decoder_count], &codecs[i].info, sizeof(ImageCodecInfo));
2430 decoder_count++;
2434 if (decoder_count < numDecoders) return GenericError;
2436 return Ok;
2439 /*****************************************************************************
2440 * GdipGetImageEncodersSize [GDIPLUS.@]
2442 GpStatus WINGDIPAPI GdipGetImageEncodersSize(UINT *numEncoders, UINT *size)
2444 int encoder_count=0;
2445 int i;
2446 TRACE("%p %p\n", numEncoders, size);
2448 if (!numEncoders || !size)
2449 return InvalidParameter;
2451 for (i=0; i<NUM_CODECS; i++)
2453 if (codecs[i].info.Flags & ImageCodecFlagsEncoder)
2454 encoder_count++;
2457 *numEncoders = encoder_count;
2458 *size = encoder_count * sizeof(ImageCodecInfo);
2460 return Ok;
2463 /*****************************************************************************
2464 * GdipGetImageEncoders [GDIPLUS.@]
2466 GpStatus WINGDIPAPI GdipGetImageEncoders(UINT numEncoders, UINT size, ImageCodecInfo *encoders)
2468 int i, encoder_count=0;
2469 TRACE("%u %u %p\n", numEncoders, size, encoders);
2471 if (!encoders ||
2472 size != numEncoders * sizeof(ImageCodecInfo))
2473 return GenericError;
2475 for (i=0; i<NUM_CODECS; i++)
2477 if (codecs[i].info.Flags & ImageCodecFlagsEncoder)
2479 if (encoder_count == numEncoders) return GenericError;
2480 memcpy(&encoders[encoder_count], &codecs[i].info, sizeof(ImageCodecInfo));
2481 encoder_count++;
2485 if (encoder_count < numEncoders) return GenericError;
2487 return Ok;
2490 /*****************************************************************************
2491 * GdipCreateBitmapFromHBITMAP [GDIPLUS.@]
2493 GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBitmap** bitmap)
2495 BITMAP bm;
2496 GpStatus retval;
2497 PixelFormat format;
2498 BYTE* bits;
2500 TRACE("%p %p %p\n", hbm, hpal, bitmap);
2502 if(!hbm || !bitmap)
2503 return InvalidParameter;
2505 /* TODO: Support for device-dependent bitmaps */
2506 if(hpal){
2507 FIXME("no support for device-dependent bitmaps\n");
2508 return NotImplemented;
2511 if (GetObjectA(hbm, sizeof(bm), &bm) != sizeof(bm))
2512 return InvalidParameter;
2514 /* TODO: Figure out the correct format for 16, 32, 64 bpp */
2515 switch(bm.bmBitsPixel) {
2516 case 1:
2517 format = PixelFormat1bppIndexed;
2518 break;
2519 case 4:
2520 format = PixelFormat4bppIndexed;
2521 break;
2522 case 8:
2523 format = PixelFormat8bppIndexed;
2524 break;
2525 case 24:
2526 format = PixelFormat24bppRGB;
2527 break;
2528 case 32:
2529 format = PixelFormat32bppRGB;
2530 break;
2531 case 48:
2532 format = PixelFormat48bppRGB;
2533 break;
2534 default:
2535 FIXME("don't know how to handle %d bpp\n", bm.bmBitsPixel);
2536 return InvalidParameter;
2539 if (bm.bmBits)
2540 bits = (BYTE*)bm.bmBits + (bm.bmHeight - 1) * bm.bmWidthBytes;
2541 else
2543 FIXME("can only get image data from DIB sections\n");
2544 bits = NULL;
2547 retval = GdipCreateBitmapFromScan0(bm.bmWidth, bm.bmHeight, -bm.bmWidthBytes,
2548 format, bits, bitmap);
2550 return retval;
2553 GpStatus WINGDIPAPI GdipDeleteEffect(CGpEffect *effect)
2555 FIXME("(%p): stub\n", effect);
2556 /* note: According to Jose Roca's GDI+ Docs, this is not implemented
2557 * in Windows's gdiplus */
2558 return NotImplemented;
2561 /*****************************************************************************
2562 * GdipSetEffectParameters [GDIPLUS.@]
2564 GpStatus WINGDIPAPI GdipSetEffectParameters(CGpEffect *effect,
2565 const VOID *params, const UINT size)
2567 static int calls;
2569 if(!(calls++))
2570 FIXME("not implemented\n");
2572 return NotImplemented;
2575 /*****************************************************************************
2576 * GdipGetImageFlags [GDIPLUS.@]
2578 GpStatus WINGDIPAPI GdipGetImageFlags(GpImage *image, UINT *flags)
2580 TRACE("%p %p\n", image, flags);
2582 if(!image || !flags)
2583 return InvalidParameter;
2585 *flags = image->flags;
2587 return Ok;
2590 GpStatus WINGDIPAPI GdipTestControl(GpTestControlEnum control, void *param)
2592 TRACE("(%d, %p)\n", control, param);
2594 switch(control){
2595 case TestControlForceBilinear:
2596 if(param)
2597 FIXME("TestControlForceBilinear not handled\n");
2598 break;
2599 case TestControlNoICM:
2600 if(param)
2601 FIXME("TestControlNoICM not handled\n");
2602 break;
2603 case TestControlGetBuildNumber:
2604 *((DWORD*)param) = 3102;
2605 break;
2608 return Ok;
2611 GpStatus WINGDIPAPI GdipRecordMetafileFileName(GDIPCONST WCHAR* fileName,
2612 HDC hdc, EmfType type, GDIPCONST GpRectF *pFrameRect,
2613 MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc,
2614 GpMetafile **metafile)
2616 FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName), hdc, type, pFrameRect,
2617 frameUnit, debugstr_w(desc), metafile);
2619 return NotImplemented;
2622 GpStatus WINGDIPAPI GdipRecordMetafileFileNameI(GDIPCONST WCHAR* fileName, HDC hdc, EmfType type,
2623 GDIPCONST GpRect *pFrameRect, MetafileFrameUnit frameUnit,
2624 GDIPCONST WCHAR *desc, GpMetafile **metafile)
2626 FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName), hdc, type, pFrameRect,
2627 frameUnit, debugstr_w(desc), metafile);
2629 return NotImplemented;
2632 GpStatus WINGDIPAPI GdipImageForceValidation(GpImage *image)
2634 FIXME("%p\n", image);
2636 return Ok;
2639 /*****************************************************************************
2640 * GdipGetImageThumbnail [GDIPLUS.@]
2642 GpStatus WINGDIPAPI GdipGetImageThumbnail(GpImage *image, UINT width, UINT height,
2643 GpImage **ret_image, GetThumbnailImageAbort cb,
2644 VOID * cb_data)
2646 FIXME("(%p %u %u %p %p %p) stub\n",
2647 image, width, height, ret_image, cb, cb_data);
2648 return NotImplemented;
2651 /*****************************************************************************
2652 * GdipImageRotateFlip [GDIPLUS.@]
2654 GpStatus WINGDIPAPI GdipImageRotateFlip(GpImage *image, RotateFlipType type)
2656 FIXME("(%p %u) stub\n", image, type);
2657 return NotImplemented;