d3dx8: Add a few tests for MatrixStack.
[wine] / dlls / gdiplus / image.c
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include <stdarg.h>
20
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winuser.h"
24 #include "wingdi.h"
25
26 #define COBJMACROS
27 #include "objbase.h"
28 #include "olectl.h"
29 #include "ole2.h"
30
31 #include "initguid.h"
32 #include "gdiplus.h"
33 #include "gdiplus_private.h"
34 #include "wine/debug.h"
35
36 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
37
38 #define PIXELFORMATBPP(x) ((x) ? ((x) >> 8) & 255 : 24)
39
40 static INT ipicture_pixel_height(IPicture *pic)
41 {
42     HDC hdcref;
43     OLE_YSIZE_HIMETRIC y;
44
45     IPicture_get_Height(pic, &y);
46
47     hdcref = GetDC(0);
48
49     y = MulDiv(y, GetDeviceCaps(hdcref, LOGPIXELSY), INCH_HIMETRIC);
50     ReleaseDC(0, hdcref);
51
52     return y;
53 }
54
55 static INT ipicture_pixel_width(IPicture *pic)
56 {
57     HDC hdcref;
58     OLE_XSIZE_HIMETRIC x;
59
60     IPicture_get_Width(pic, &x);
61
62     hdcref = GetDC(0);
63
64     x = MulDiv(x, GetDeviceCaps(hdcref, LOGPIXELSX), INCH_HIMETRIC);
65
66     ReleaseDC(0, hdcref);
67
68     return x;
69 }
70
71 GpStatus WINGDIPAPI GdipBitmapGetPixel(GpBitmap* bitmap, INT x, INT y,
72     ARGB *color)
73 {
74     static int calls;
75     TRACE("%p %d %d %p\n", bitmap, x, y, color);
76
77     if(!bitmap || !color)
78         return InvalidParameter;
79
80     if(!(calls++))
81         FIXME("not implemented\n");
82
83     *color = 0xdeadbeef;
84
85     return NotImplemented;
86 }
87
88 /* This function returns a pointer to an array of pixels that represents the
89  * bitmap. The *entire* bitmap is locked according to the lock mode specified by
90  * flags.  It is correct behavior that a user who calls this function with write
91  * privileges can write to the whole bitmap (not just the area in rect).
92  *
93  * FIXME: only used portion of format is bits per pixel. */
94 GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap* bitmap, GDIPCONST GpRect* rect,
95     UINT flags, PixelFormat format, BitmapData* lockeddata)
96 {
97     BOOL bm_is_selected;
98     INT stride, bitspp = PIXELFORMATBPP(format);
99     OLE_HANDLE hbm;
100     HDC hdc;
101     HBITMAP old = NULL;
102     BITMAPINFO *pbmi;
103     BYTE *buff = NULL;
104     UINT abs_height;
105     GpRect act_rect; /* actual rect to be used */
106
107     TRACE("%p %p %d %d %p\n", bitmap, rect, flags, format, lockeddata);
108
109     if(!lockeddata || !bitmap)
110         return InvalidParameter;
111
112     if(rect){
113         if(rect->X < 0 || rect->Y < 0 || (rect->X + rect->Width > bitmap->width) ||
114           (rect->Y + rect->Height > bitmap->height) || !flags)
115             return InvalidParameter;
116
117         act_rect = *rect;
118     }
119     else{
120         act_rect.X = act_rect.Y = 0;
121         act_rect.Width  = bitmap->width;
122         act_rect.Height = bitmap->height;
123     }
124
125     if(flags & ImageLockModeUserInputBuf)
126         return NotImplemented;
127
128     if(bitmap->lockmode)
129         return WrongState;
130
131     IPicture_get_Handle(bitmap->image.picture, &hbm);
132     IPicture_get_CurDC(bitmap->image.picture, &hdc);
133     bm_is_selected = (hdc != 0);
134
135     pbmi = GdipAlloc(sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
136     if (!pbmi)
137         return OutOfMemory;
138     pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
139     pbmi->bmiHeader.biBitCount = 0;
140
141     if(!bm_is_selected){
142         hdc = CreateCompatibleDC(0);
143         old = SelectObject(hdc, (HBITMAP)hbm);
144     }
145
146     /* fill out bmi */
147     GetDIBits(hdc, (HBITMAP)hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
148
149     abs_height = abs(pbmi->bmiHeader.biHeight);
150     stride = pbmi->bmiHeader.biWidth * bitspp / 8;
151     stride = (stride + 3) & ~3;
152
153     buff = GdipAlloc(stride * abs_height);
154
155     pbmi->bmiHeader.biBitCount = bitspp;
156
157     if(buff)
158         GetDIBits(hdc, (HBITMAP)hbm, 0, abs_height, buff, pbmi, DIB_RGB_COLORS);
159
160     if(!bm_is_selected){
161         SelectObject(hdc, old);
162         DeleteDC(hdc);
163     }
164
165     if(!buff){
166         GdipFree(pbmi);
167         return OutOfMemory;
168     }
169
170     lockeddata->Width  = act_rect.Width;
171     lockeddata->Height = act_rect.Height;
172     lockeddata->PixelFormat = format;
173     lockeddata->Reserved = flags;
174
175     if(pbmi->bmiHeader.biHeight > 0){
176         lockeddata->Stride = -stride;
177         lockeddata->Scan0  = buff + (bitspp / 8) * act_rect.X +
178                              stride * (abs_height - 1 - act_rect.Y);
179     }
180     else{
181         lockeddata->Stride = stride;
182         lockeddata->Scan0  = buff + (bitspp / 8) * act_rect.X + stride * act_rect.Y;
183     }
184
185     bitmap->lockmode = flags;
186     bitmap->numlocks++;
187
188     bitmap->bitmapbits = buff;
189
190     GdipFree(pbmi);
191     return Ok;
192 }
193
194 GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
195     BitmapData* lockeddata)
196 {
197     OLE_HANDLE hbm;
198     HDC hdc;
199     HBITMAP old = NULL;
200     BOOL bm_is_selected;
201     BITMAPINFO *pbmi;
202
203     if(!bitmap || !lockeddata)
204         return InvalidParameter;
205
206     if(!bitmap->lockmode)
207         return WrongState;
208
209     if(lockeddata->Reserved & ImageLockModeUserInputBuf)
210         return NotImplemented;
211
212     if(lockeddata->Reserved & ImageLockModeRead){
213         if(!(--bitmap->numlocks))
214             bitmap->lockmode = 0;
215
216         GdipFree(bitmap->bitmapbits);
217         bitmap->bitmapbits = NULL;
218         return Ok;
219     }
220
221     IPicture_get_Handle(bitmap->image.picture, &hbm);
222     IPicture_get_CurDC(bitmap->image.picture, &hdc);
223     bm_is_selected = (hdc != 0);
224
225     pbmi = GdipAlloc(sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
226     pbmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
227     pbmi->bmiHeader.biBitCount = 0;
228
229     if(!bm_is_selected){
230         hdc = CreateCompatibleDC(0);
231         old = SelectObject(hdc, (HBITMAP)hbm);
232     }
233
234     GetDIBits(hdc, (HBITMAP)hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
235     pbmi->bmiHeader.biBitCount = PIXELFORMATBPP(lockeddata->PixelFormat);
236     SetDIBits(hdc, (HBITMAP)hbm, 0, abs(pbmi->bmiHeader.biHeight),
237               bitmap->bitmapbits, pbmi, DIB_RGB_COLORS);
238
239     if(!bm_is_selected){
240         SelectObject(hdc, old);
241         DeleteDC(hdc);
242     }
243
244     GdipFree(pbmi);
245     GdipFree(bitmap->bitmapbits);
246     bitmap->bitmapbits = NULL;
247     bitmap->lockmode = 0;
248
249     return Ok;
250 }
251
252 GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
253 {
254     IStream* stream;
255     HRESULT hr;
256     INT size;
257     LARGE_INTEGER move;
258     GpStatus stat = GenericError;
259
260     TRACE("%p, %p\n", image, cloneImage);
261
262     if (!image || !cloneImage)
263         return InvalidParameter;
264
265     hr = CreateStreamOnHGlobal(0, TRUE, &stream);
266     if (FAILED(hr))
267         return GenericError;
268
269     hr = IPicture_SaveAsFile(image->picture, stream, FALSE, &size);
270     if(FAILED(hr))
271     {
272         WARN("Failed to save image on stream\n");
273         goto out;
274     }
275
276     /* Set seek pointer back to the beginning of the picture */
277     move.QuadPart = 0;
278     hr = IStream_Seek(stream, move, STREAM_SEEK_SET, NULL);
279     if (FAILED(hr))
280         goto out;
281
282     stat = GdipLoadImageFromStream(stream, cloneImage);
283     if (stat != Ok) WARN("Failed to load image from stream\n");
284
285 out:
286     IStream_Release(stream);
287     return stat;
288 }
289
290 GpStatus WINGDIPAPI GdipCreateBitmapFromFile(GDIPCONST WCHAR* filename,
291     GpBitmap **bitmap)
292 {
293     GpStatus stat;
294     IStream *stream;
295
296     TRACE("(%s) %p\n", debugstr_w(filename), bitmap);
297
298     if(!filename || !bitmap)
299         return InvalidParameter;
300
301     stat = GdipCreateStreamOnFile(filename, GENERIC_READ, &stream);
302
303     if(stat != Ok)
304         return stat;
305
306     stat = GdipCreateBitmapFromStream(stream, bitmap);
307
308     IStream_Release(stream);
309
310     return stat;
311 }
312
313 GpStatus WINGDIPAPI GdipCreateBitmapFromGdiDib(GDIPCONST BITMAPINFO* info,
314                                                VOID *bits, GpBitmap **bitmap)
315 {
316     DWORD height, stride;
317     PixelFormat format;
318
319     FIXME("(%p, %p, %p) - partially implemented\n", info, bits, bitmap);
320
321     height = abs(info->bmiHeader.biHeight);
322     stride = ((info->bmiHeader.biWidth * info->bmiHeader.biBitCount + 31) >> 3) & ~3;
323
324     if(info->bmiHeader.biHeight > 0) /* bottom-up */
325     {
326         bits = (BYTE*)bits + (height - 1) * stride;
327         stride = -stride;
328     }
329
330     switch(info->bmiHeader.biBitCount) {
331     case 1:
332         format = PixelFormat1bppIndexed;
333         break;
334     case 4:
335         format = PixelFormat4bppIndexed;
336         break;
337     case 8:
338         format = PixelFormat8bppIndexed;
339         break;
340     case 24:
341         format = PixelFormat24bppRGB;
342         break;
343     default:
344         FIXME("don't know how to handle %d bpp\n", info->bmiHeader.biBitCount);
345         *bitmap = NULL;
346         return InvalidParameter;
347     }
348
349     return GdipCreateBitmapFromScan0(info->bmiHeader.biWidth, height, stride, format,
350                                      bits, bitmap);
351
352 }
353
354 /* FIXME: no icm */
355 GpStatus WINGDIPAPI GdipCreateBitmapFromFileICM(GDIPCONST WCHAR* filename,
356     GpBitmap **bitmap)
357 {
358     TRACE("(%s) %p\n", debugstr_w(filename), bitmap);
359
360     return GdipCreateBitmapFromFile(filename, bitmap);
361 }
362
363 GpStatus WINGDIPAPI GdipCreateBitmapFromResource(HINSTANCE hInstance,
364     GDIPCONST WCHAR* lpBitmapName, GpBitmap** bitmap)
365 {
366     HBITMAP hbm;
367     GpStatus stat = InvalidParameter;
368
369     TRACE("%p (%s) %p\n", hInstance, debugstr_w(lpBitmapName), bitmap);
370
371     if(!lpBitmapName || !bitmap)
372         return InvalidParameter;
373
374     /* load DIB */
375     hbm = (HBITMAP)LoadImageW(hInstance,lpBitmapName,IMAGE_BITMAP,0,0,LR_CREATEDIBSECTION);
376
377     if(hbm){
378         stat = GdipCreateBitmapFromHBITMAP(hbm, NULL, bitmap);
379         DeleteObject(hbm);
380     }
381
382     return stat;
383 }
384
385 GpStatus WINGDIPAPI GdipCreateHBITMAPFromBitmap(GpBitmap* bitmap,
386     HBITMAP* hbmReturn, ARGB background)
387 {
388     FIXME("stub\n");
389
390     hbmReturn = NULL;
391
392     return NotImplemented;
393 }
394
395 GpStatus WINGDIPAPI GdipConvertToEmfPlus(const GpGraphics* ref,
396     GpMetafile* metafile, BOOL* succ, EmfType emfType,
397     const WCHAR* description, GpMetafile** out_metafile)
398 {
399     static int calls;
400
401     if(!ref || !metafile || !out_metafile)
402         return InvalidParameter;
403
404     *succ = FALSE;
405     *out_metafile = NULL;
406
407     if(!(calls++))
408         FIXME("not implemented\n");
409
410     return NotImplemented;
411 }
412
413 /* FIXME: this should create a bitmap in the given size with the attributes
414  * (resolution etc.) of the graphics object */
415 GpStatus WINGDIPAPI GdipCreateBitmapFromGraphics(INT width, INT height,
416     GpGraphics* target, GpBitmap** bitmap)
417 {
418     static int calls;
419     GpStatus ret;
420
421     if(!target || !bitmap)
422         return InvalidParameter;
423
424     if(!(calls++))
425         FIXME("hacked stub\n");
426
427     ret = GdipCreateBitmapFromScan0(width, height, 0, PixelFormat24bppRGB,
428                                     NULL, bitmap);
429
430     return ret;
431 }
432
433 GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT width, INT height, INT stride,
434     PixelFormat format, BYTE* scan0, GpBitmap** bitmap)
435 {
436     BITMAPFILEHEADER *bmfh;
437     BITMAPINFOHEADER *bmih;
438     BYTE *buff;
439     INT datalen, size;
440     IStream *stream;
441
442     TRACE("%d %d %d %d %p %p\n", width, height, stride, format, scan0, bitmap);
443
444     if (!bitmap) return InvalidParameter;
445
446     if(width <= 0 || height <= 0 || (scan0 && (stride % 4))){
447         *bitmap = NULL;
448         return InvalidParameter;
449     }
450
451     if(scan0 && !stride)
452         return InvalidParameter;
453
454     /* FIXME: windows allows negative stride (reads backwards from scan0) */
455     if(stride < 0){
456         FIXME("negative stride\n");
457         return InvalidParameter;
458     }
459
460     *bitmap = GdipAlloc(sizeof(GpBitmap));
461     if(!*bitmap)    return OutOfMemory;
462
463     if(stride == 0){
464         stride = width * (PIXELFORMATBPP(format) / 8);
465         stride = (stride + 3) & ~3;
466     }
467
468     datalen = abs(stride * height);
469     size = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER) + datalen;
470     buff = GdipAlloc(size);
471     if(!buff){
472         GdipFree(*bitmap);
473         return OutOfMemory;
474     }
475
476     bmfh = (BITMAPFILEHEADER*) buff;
477     bmih = (BITMAPINFOHEADER*) (bmfh + 1);
478
479     bmfh->bfType    = (((WORD)'M') << 8) + (WORD)'B';
480     bmfh->bfSize    = size;
481     bmfh->bfOffBits = size - datalen;
482
483     bmih->biSize            = sizeof(BITMAPINFOHEADER);
484     bmih->biWidth           = width;
485     bmih->biHeight          = -height;
486     /* FIXME: use the rest of the data from format */
487     bmih->biBitCount        = PIXELFORMATBPP(format);
488     bmih->biCompression     = BI_RGB;
489     bmih->biSizeImage       = datalen;
490
491     if(scan0)
492         memcpy(bmih + 1, scan0, datalen);
493     else
494         memset(bmih + 1, 0, datalen);
495
496     if(CreateStreamOnHGlobal(buff, TRUE, &stream) != S_OK){
497         ERR("could not make stream\n");
498         GdipFree(*bitmap);
499         GdipFree(buff);
500         return GenericError;
501     }
502
503     if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
504         (LPVOID*) &((*bitmap)->image.picture)) != S_OK){
505         TRACE("Could not load picture\n");
506         IStream_Release(stream);
507         GdipFree(*bitmap);
508         GdipFree(buff);
509         return GenericError;
510     }
511
512     (*bitmap)->image.type = ImageTypeBitmap;
513     (*bitmap)->image.flags = ImageFlagsNone;
514     (*bitmap)->width = width;
515     (*bitmap)->height = height;
516     (*bitmap)->format = format;
517
518     return Ok;
519 }
520
521 GpStatus WINGDIPAPI GdipCreateBitmapFromStream(IStream* stream,
522     GpBitmap **bitmap)
523 {
524     GpStatus stat;
525
526     TRACE("%p %p\n", stream, bitmap);
527
528     stat = GdipLoadImageFromStream(stream, (GpImage**) bitmap);
529
530     if(stat != Ok)
531         return stat;
532
533     if((*bitmap)->image.type != ImageTypeBitmap){
534         IPicture_Release((*bitmap)->image.picture);
535         GdipFree(bitmap);
536         return GenericError; /* FIXME: what error to return? */
537     }
538
539     return Ok;
540 }
541
542 /* FIXME: no icm */
543 GpStatus WINGDIPAPI GdipCreateBitmapFromStreamICM(IStream* stream,
544     GpBitmap **bitmap)
545 {
546     TRACE("%p %p\n", stream, bitmap);
547
548     return GdipCreateBitmapFromStream(stream, bitmap);
549 }
550
551 GpStatus WINGDIPAPI GdipCreateCachedBitmap(GpBitmap *bitmap, GpGraphics *graphics,
552     GpCachedBitmap **cachedbmp)
553 {
554     GpStatus stat;
555
556     TRACE("%p %p %p\n", bitmap, graphics, cachedbmp);
557
558     if(!bitmap || !graphics || !cachedbmp)
559         return InvalidParameter;
560
561     *cachedbmp = GdipAlloc(sizeof(GpCachedBitmap));
562     if(!*cachedbmp)
563         return OutOfMemory;
564
565     stat = GdipCloneImage(&(bitmap->image), &(*cachedbmp)->image);
566     if(stat != Ok){
567         GdipFree(*cachedbmp);
568         return stat;
569     }
570
571     return Ok;
572 }
573
574 GpStatus WINGDIPAPI GdipDeleteCachedBitmap(GpCachedBitmap *cachedbmp)
575 {
576     TRACE("%p\n", cachedbmp);
577
578     if(!cachedbmp)
579         return InvalidParameter;
580
581     GdipDisposeImage(cachedbmp->image);
582     GdipFree(cachedbmp);
583
584     return Ok;
585 }
586
587 GpStatus WINGDIPAPI GdipDrawCachedBitmap(GpGraphics *graphics,
588     GpCachedBitmap *cachedbmp, INT x, INT y)
589 {
590     TRACE("%p %p %d %d\n", graphics, cachedbmp, x, y);
591
592     if(!graphics || !cachedbmp)
593         return InvalidParameter;
594
595     return GdipDrawImage(graphics, cachedbmp->image, (REAL)x, (REAL)y);
596 }
597
598 GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
599 {
600     HDC hdc;
601
602     TRACE("%p\n", image);
603
604     if(!image)
605         return InvalidParameter;
606
607     IPicture_get_CurDC(image->picture, &hdc);
608     DeleteDC(hdc);
609     IPicture_Release(image->picture);
610     if (image->type == ImageTypeBitmap)
611         GdipFree(((GpBitmap*)image)->bitmapbits);
612     GdipFree(image);
613
614     return Ok;
615 }
616
617 GpStatus WINGDIPAPI GdipFindFirstImageItem(GpImage *image, ImageItemData* item)
618 {
619     if(!image || !item)
620         return InvalidParameter;
621
622     return NotImplemented;
623 }
624
625 GpStatus WINGDIPAPI GdipGetImageBounds(GpImage *image, GpRectF *srcRect,
626     GpUnit *srcUnit)
627 {
628     TRACE("%p %p %p\n", image, srcRect, srcUnit);
629
630     if(!image || !srcRect || !srcUnit)
631         return InvalidParameter;
632     if(image->type == ImageTypeMetafile){
633         *srcRect = ((GpMetafile*)image)->bounds;
634         *srcUnit = ((GpMetafile*)image)->unit;
635     }
636     else if(image->type == ImageTypeBitmap){
637         srcRect->X = srcRect->Y = 0.0;
638         srcRect->Width = (REAL) ((GpBitmap*)image)->width;
639         srcRect->Height = (REAL) ((GpBitmap*)image)->height;
640         *srcUnit = UnitPixel;
641     }
642     else{
643         srcRect->X = srcRect->Y = 0.0;
644         srcRect->Width = ipicture_pixel_width(image->picture);
645         srcRect->Height = ipicture_pixel_height(image->picture);
646         *srcUnit = UnitPixel;
647     }
648
649     TRACE("returning (%f, %f) (%f, %f) unit type %d\n", srcRect->X, srcRect->Y,
650           srcRect->Width, srcRect->Height, *srcUnit);
651
652     return Ok;
653 }
654
655 GpStatus WINGDIPAPI GdipGetImageDimension(GpImage *image, REAL *width,
656     REAL *height)
657 {
658     TRACE("%p %p %p\n", image, width, height);
659
660     if(!image || !height || !width)
661         return InvalidParameter;
662
663     if(image->type == ImageTypeMetafile){
664         HDC hdc = GetDC(0);
665
666         *height = convert_unit(hdc, ((GpMetafile*)image)->unit) *
667                         ((GpMetafile*)image)->bounds.Height;
668
669         *width = convert_unit(hdc, ((GpMetafile*)image)->unit) *
670                         ((GpMetafile*)image)->bounds.Width;
671
672         ReleaseDC(0, hdc);
673     }
674
675     else if(image->type == ImageTypeBitmap){
676         *height = ((GpBitmap*)image)->height;
677         *width = ((GpBitmap*)image)->width;
678     }
679     else{
680         *height = ipicture_pixel_height(image->picture);
681         *width = ipicture_pixel_width(image->picture);
682     }
683
684     TRACE("returning (%f, %f)\n", *height, *width);
685     return Ok;
686 }
687
688 GpStatus WINGDIPAPI GdipGetImageGraphicsContext(GpImage *image,
689     GpGraphics **graphics)
690 {
691     HDC hdc;
692
693     TRACE("%p %p\n", image, graphics);
694
695     if(!image || !graphics)
696         return InvalidParameter;
697
698     if(image->type != ImageTypeBitmap){
699         FIXME("not implemented for image type %d\n", image->type);
700         return NotImplemented;
701     }
702
703     IPicture_get_CurDC(image->picture, &hdc);
704
705     if(!hdc){
706         hdc = CreateCompatibleDC(0);
707         IPicture_SelectPicture(image->picture, hdc, NULL, NULL);
708     }
709
710     return GdipCreateFromHDC(hdc, graphics);
711 }
712
713 GpStatus WINGDIPAPI GdipGetImageHeight(GpImage *image, UINT *height)
714 {
715     TRACE("%p %p\n", image, height);
716
717     if(!image || !height)
718         return InvalidParameter;
719
720     if(image->type == ImageTypeMetafile){
721         HDC hdc = GetDC(0);
722
723         *height = roundr(convert_unit(hdc, ((GpMetafile*)image)->unit) *
724                         ((GpMetafile*)image)->bounds.Height);
725
726         ReleaseDC(0, hdc);
727     }
728     else if(image->type == ImageTypeBitmap)
729         *height = ((GpBitmap*)image)->height;
730     else
731         *height = ipicture_pixel_height(image->picture);
732
733     TRACE("returning %d\n", *height);
734
735     return Ok;
736 }
737
738 GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res)
739 {
740     static int calls;
741
742     if(!image || !res)
743         return InvalidParameter;
744
745     if(!(calls++))
746         FIXME("not implemented\n");
747
748     return NotImplemented;
749 }
750
751 /* FIXME: test this function for non-bitmap types */
752 GpStatus WINGDIPAPI GdipGetImagePixelFormat(GpImage *image, PixelFormat *format)
753 {
754     TRACE("%p %p\n", image, format);
755
756     if(!image || !format)
757         return InvalidParameter;
758
759     if(image->type != ImageTypeBitmap)
760         *format = PixelFormat24bppRGB;
761     else
762         *format = ((GpBitmap*) image)->format;
763
764     return Ok;
765 }
766
767 GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage *image, GUID *format)
768 {
769     static int calls;
770
771     if(!image || !format)
772         return InvalidParameter;
773
774     if(!(calls++))
775         FIXME("stub\n");
776
777     /* FIXME: should be detected from embedded picture or stored separately */
778     switch (image->type)
779     {
780     case ImageTypeBitmap:   *format = ImageFormatBMP; break;
781     case ImageTypeMetafile: *format = ImageFormatEMF; break;
782     default:
783         WARN("unknown type %u\n", image->type);
784         *format = ImageFormatUndefined;
785     }
786     return Ok;
787 }
788
789 GpStatus WINGDIPAPI GdipGetImageType(GpImage *image, ImageType *type)
790 {
791     TRACE("%p %p\n", image, type);
792
793     if(!image || !type)
794         return InvalidParameter;
795
796     *type = image->type;
797
798     return Ok;
799 }
800
801 GpStatus WINGDIPAPI GdipGetImageVerticalResolution(GpImage *image, REAL *res)
802 {
803     static int calls;
804
805     if(!image || !res)
806         return InvalidParameter;
807
808     if(!(calls++))
809         FIXME("not implemented\n");
810
811     return NotImplemented;
812 }
813
814 GpStatus WINGDIPAPI GdipGetImageWidth(GpImage *image, UINT *width)
815 {
816     TRACE("%p %p\n", image, width);
817
818     if(!image || !width)
819         return InvalidParameter;
820
821     if(image->type == ImageTypeMetafile){
822         HDC hdc = GetDC(0);
823
824         *width = roundr(convert_unit(hdc, ((GpMetafile*)image)->unit) *
825                         ((GpMetafile*)image)->bounds.Width);
826
827         ReleaseDC(0, hdc);
828     }
829     else if(image->type == ImageTypeBitmap)
830         *width = ((GpBitmap*)image)->width;
831     else
832         *width = ipicture_pixel_width(image->picture);
833
834     TRACE("returning %d\n", *width);
835
836     return Ok;
837 }
838
839 GpStatus WINGDIPAPI GdipGetMetafileHeaderFromMetafile(GpMetafile * metafile,
840     MetafileHeader * header)
841 {
842     static int calls;
843
844     if(!metafile || !header)
845         return InvalidParameter;
846
847     if(!(calls++))
848         FIXME("not implemented\n");
849
850     return Ok;
851 }
852
853 GpStatus WINGDIPAPI GdipGetAllPropertyItems(GpImage *image, UINT size,
854     UINT num, PropertyItem* items)
855 {
856     static int calls;
857
858     if(!(calls++))
859         FIXME("not implemented\n");
860
861     return InvalidParameter;
862 }
863
864 GpStatus WINGDIPAPI GdipGetPropertyCount(GpImage *image, UINT* num)
865 {
866     static int calls;
867
868     if(!(calls++))
869         FIXME("not implemented\n");
870
871     return InvalidParameter;
872 }
873
874 GpStatus WINGDIPAPI GdipGetPropertyIdList(GpImage *image, UINT num, PROPID* list)
875 {
876     static int calls;
877
878     if(!(calls++))
879         FIXME("not implemented\n");
880
881     return InvalidParameter;
882 }
883
884 GpStatus WINGDIPAPI GdipGetPropertyItem(GpImage *image, PROPID id, UINT size,
885     PropertyItem* buffer)
886 {
887     static int calls;
888
889     if(!(calls++))
890         FIXME("not implemented\n");
891
892     return InvalidParameter;
893 }
894
895 GpStatus WINGDIPAPI GdipGetPropertyItemSize(GpImage *image, PROPID pid,
896     UINT* size)
897 {
898     static int calls;
899
900     TRACE("%p %x %p\n", image, pid, size);
901
902     if(!size || !image)
903         return InvalidParameter;
904
905     if(!(calls++))
906         FIXME("not implemented\n");
907
908     return NotImplemented;
909 }
910
911 GpStatus WINGDIPAPI GdipGetPropertySize(GpImage *image, UINT* size, UINT* num)
912 {
913     static int calls;
914
915     if(!(calls++))
916         FIXME("not implemented\n");
917
918     return InvalidParameter;
919 }
920
921 GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
922     GDIPCONST GUID* dimensionID, UINT* count)
923 {
924     static int calls;
925
926     if(!image || !dimensionID || !count)
927         return InvalidParameter;
928
929     if(!(calls++))
930         FIXME("not implemented\n");
931
932     return NotImplemented;
933 }
934
935 GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image,
936     UINT* count)
937 {
938     if(!image || !count)
939         return InvalidParameter;
940
941     *count = 1;
942
943     FIXME("stub\n");
944
945     return Ok;
946 }
947
948 GpStatus WINGDIPAPI GdipImageGetFrameDimensionsList(GpImage* image,
949     GUID* dimensionIDs, UINT count)
950 {
951     static int calls;
952
953     if(!image || !dimensionIDs)
954         return InvalidParameter;
955
956     if(!(calls++))
957         FIXME("not implemented\n");
958
959     return Ok;
960 }
961
962 GpStatus WINGDIPAPI GdipImageSelectActiveFrame(GpImage *image,
963     GDIPCONST GUID* dimensionID, UINT frameidx)
964 {
965     static int calls;
966
967     if(!image || !dimensionID)
968         return InvalidParameter;
969
970     if(!(calls++))
971         FIXME("not implemented\n");
972
973     return Ok;
974 }
975
976 GpStatus WINGDIPAPI GdipLoadImageFromFile(GDIPCONST WCHAR* filename,
977                                           GpImage **image)
978 {
979     GpStatus stat;
980     IStream *stream;
981
982     TRACE("(%s) %p\n", debugstr_w(filename), image);
983
984     if (!filename || !image)
985         return InvalidParameter;
986
987     stat = GdipCreateStreamOnFile(filename, GENERIC_READ, &stream);
988
989     if (stat != Ok)
990         return stat;
991
992     stat = GdipLoadImageFromStream(stream, image);
993
994     IStream_Release(stream);
995
996     return stat;
997 }
998
999 /* FIXME: no icm handling */
1000 GpStatus WINGDIPAPI GdipLoadImageFromFileICM(GDIPCONST WCHAR* filename,GpImage **image)
1001 {
1002     TRACE("(%s) %p\n", debugstr_w(filename), image);
1003
1004     return GdipLoadImageFromFile(filename, image);
1005 }
1006
1007 GpStatus WINGDIPAPI GdipLoadImageFromStream(IStream* stream, GpImage **image)
1008 {
1009     IPicture *pic;
1010     short type;
1011
1012     TRACE("%p %p\n", stream, image);
1013
1014     if(!stream || !image)
1015         return InvalidParameter;
1016
1017     if(OleLoadPicture(stream, 0, FALSE, &IID_IPicture,
1018         (LPVOID*) &pic) != S_OK){
1019         TRACE("Could not load picture\n");
1020         return GenericError;
1021     }
1022
1023     IPicture_get_Type(pic, &type);
1024
1025     if(type == PICTYPE_BITMAP){
1026         BITMAPINFO *pbmi;
1027         BITMAPCOREHEADER* bmch;
1028         OLE_HANDLE hbm;
1029         HDC hdc;
1030
1031         pbmi = GdipAlloc(sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1032         if (!pbmi)
1033             return OutOfMemory;
1034         *image = GdipAlloc(sizeof(GpBitmap));
1035         if(!*image){
1036             GdipFree(pbmi);
1037             return OutOfMemory;
1038         }
1039         (*image)->type = ImageTypeBitmap;
1040
1041         (*((GpBitmap**) image))->width = ipicture_pixel_width(pic);
1042         (*((GpBitmap**) image))->height = ipicture_pixel_height(pic);
1043
1044         /* get the pixel format */
1045         IPicture_get_Handle(pic, &hbm);
1046         IPicture_get_CurDC(pic, &hdc);
1047
1048         bmch = (BITMAPCOREHEADER*) (&pbmi->bmiHeader);
1049         bmch->bcSize = sizeof(BITMAPCOREHEADER);
1050
1051         if(!hdc){
1052             HBITMAP old;
1053             hdc = CreateCompatibleDC(0);
1054             old = SelectObject(hdc, (HBITMAP)hbm);
1055             GetDIBits(hdc, (HBITMAP)hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
1056             SelectObject(hdc, old);
1057             DeleteDC(hdc);
1058         }
1059         else
1060             GetDIBits(hdc, (HBITMAP)hbm, 0, 0, NULL, pbmi, DIB_RGB_COLORS);
1061
1062         (*((GpBitmap**) image))->format = (bmch->bcBitCount << 8) | PixelFormatGDI;
1063         GdipFree(pbmi);
1064     }
1065     else if(type == PICTYPE_METAFILE || type == PICTYPE_ENHMETAFILE){
1066         /* FIXME: missing initialization code */
1067         *image = GdipAlloc(sizeof(GpMetafile));
1068         if(!*image) return OutOfMemory;
1069         (*image)->type = ImageTypeMetafile;
1070     }
1071     else{
1072         *image = GdipAlloc(sizeof(GpImage));
1073         if(!*image) return OutOfMemory;
1074         (*image)->type = ImageTypeUnknown;
1075     }
1076
1077     (*image)->picture = pic;
1078     (*image)->flags   = ImageFlagsNone;
1079
1080     return Ok;
1081 }
1082
1083 /* FIXME: no ICM */
1084 GpStatus WINGDIPAPI GdipLoadImageFromStreamICM(IStream* stream, GpImage **image)
1085 {
1086     TRACE("%p %p\n", stream, image);
1087
1088     return GdipLoadImageFromStream(stream, image);
1089 }
1090
1091 GpStatus WINGDIPAPI GdipRemovePropertyItem(GpImage *image, PROPID propId)
1092 {
1093     static int calls;
1094
1095     if(!image)
1096         return InvalidParameter;
1097
1098     if(!(calls++))
1099         FIXME("not implemented\n");
1100
1101     return NotImplemented;
1102 }
1103
1104 GpStatus WINGDIPAPI GdipSetPropertyItem(GpImage *image, GDIPCONST PropertyItem* item)
1105 {
1106     static int calls;
1107
1108     if(!(calls++))
1109         FIXME("not implemented\n");
1110
1111     return NotImplemented;
1112 }
1113
1114 GpStatus WINGDIPAPI GdipSaveImageToFile(GpImage *image, GDIPCONST WCHAR* filename,
1115                                         GDIPCONST CLSID *clsidEncoder,
1116                                         GDIPCONST EncoderParameters *encoderParams)
1117 {
1118     GpStatus stat;
1119     IStream *stream;
1120
1121     TRACE("%p (%s) %p %p\n", image, debugstr_w(filename), clsidEncoder, encoderParams);
1122
1123     if (!image || !filename|| !clsidEncoder)
1124         return InvalidParameter;
1125
1126     if (!(image->picture))
1127         return InvalidParameter;
1128
1129     stat = GdipCreateStreamOnFile(filename, GENERIC_WRITE, &stream);
1130     if (stat != Ok)
1131         return GenericError;
1132
1133     stat = GdipSaveImageToStream(image, stream, clsidEncoder, encoderParams);
1134
1135     IStream_Release(stream);
1136     return stat;
1137 }
1138
1139 /*************************************************************************
1140  * Encoding functions -
1141  *   These functions encode an image in different image file formats.
1142  */
1143 #define BITMAP_FORMAT_BMP   0x4d42 /* "BM" */
1144 #define BITMAP_FORMAT_JPEG  0xd8ff
1145 #define BITMAP_FORMAT_GIF   0x4947
1146 #define BITMAP_FORMAT_PNG   0x5089
1147 #define BITMAP_FORMAT_APM   0xcdd7
1148
1149 static GpStatus encode_image_BMP(LPVOID bitmap_bits, LPBITMAPINFO bitmap_info,
1150                                  void **output, unsigned int *output_size)
1151 {
1152     int num_palette_entries;
1153     BITMAPFILEHEADER *bmp_file_hdr;
1154     BITMAPINFO *bmp_info_hdr;
1155
1156     if (bitmap_info->bmiHeader.biClrUsed) {
1157         num_palette_entries = bitmap_info->bmiHeader.biClrUsed;
1158         if (num_palette_entries > 256) num_palette_entries = 256;
1159     } else {
1160         if (bitmap_info->bmiHeader.biBitCount <= 8)
1161             num_palette_entries = 1 << bitmap_info->bmiHeader.biBitCount;
1162         else
1163             num_palette_entries = 0;
1164     }
1165
1166     *output_size =
1167         sizeof(BITMAPFILEHEADER) +
1168         sizeof(BITMAPINFOHEADER) +
1169         num_palette_entries * sizeof(RGBQUAD) +
1170         bitmap_info->bmiHeader.biSizeImage;
1171
1172     *output = GdipAlloc(*output_size);
1173
1174     bmp_file_hdr = (BITMAPFILEHEADER*) *output;
1175     bmp_file_hdr->bfType = BITMAP_FORMAT_BMP;
1176     bmp_file_hdr->bfSize = *output_size;
1177     bmp_file_hdr->bfOffBits =
1178         sizeof(BITMAPFILEHEADER) +
1179         sizeof(BITMAPINFOHEADER) +
1180         num_palette_entries * sizeof (RGBQUAD);
1181
1182     bmp_info_hdr = (BITMAPINFO*) ((unsigned char*)(*output) + sizeof(BITMAPFILEHEADER));
1183     memcpy(bmp_info_hdr, bitmap_info, sizeof(BITMAPINFOHEADER) + num_palette_entries * sizeof(RGBQUAD));
1184     memcpy((unsigned char *)(*output) +
1185            sizeof(BITMAPFILEHEADER) +
1186            sizeof(BITMAPINFOHEADER) +
1187            num_palette_entries * sizeof(RGBQUAD),
1188            bitmap_bits, bitmap_info->bmiHeader.biSizeImage);
1189
1190     return Ok;
1191 }
1192
1193 typedef GpStatus encode_image_func(LPVOID bitmap_bits, LPBITMAPINFO bitmap_info,
1194                                    void **output, unsigned int *output_size);
1195
1196 typedef enum {
1197     BMP,
1198     NUM_ENCODERS_SUPPORTED
1199 } ImageFormat;
1200
1201 static const ImageCodecInfo codecs[NUM_ENCODERS_SUPPORTED];
1202 static encode_image_func *const encode_image_funcs[NUM_ENCODERS_SUPPORTED] = {
1203     encode_image_BMP,
1204 };
1205
1206 /*****************************************************************************
1207  * GdipSaveImageToStream [GDIPLUS.@]
1208  */
1209 GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage *image, IStream* stream,
1210     GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params)
1211 {
1212     GpStatus stat;
1213     HRESULT hr;
1214     short type;
1215     HBITMAP hbmp;
1216     HBITMAP old_hbmp;
1217     HDC hdc;
1218     int bm_is_selected;
1219     BITMAPINFO bmp_info;
1220     LPVOID bmp_bits;
1221     encode_image_func* encode_image;
1222     LPVOID output;
1223     unsigned int output_size;
1224     unsigned int dummy;
1225     int i;
1226
1227     old_hbmp = 0;
1228     output = NULL;
1229     output_size = 0;
1230
1231     TRACE("%p %p %p %p\n", image, stream, clsid, params);
1232
1233     if(!image || !stream)
1234         return InvalidParameter;
1235
1236     if (!image->picture)
1237         return GenericError;
1238
1239     hr = IPicture_get_Type(image->picture, &type);
1240     if (FAILED(hr) || type != PICTYPE_BITMAP)
1241         return GenericError;
1242
1243     /* select correct encoder */
1244     encode_image = NULL;
1245     for (i = 0; i < NUM_ENCODERS_SUPPORTED; i++) {
1246         if (IsEqualCLSID(clsid, &codecs[i].Clsid))
1247             encode_image = encode_image_funcs[i];
1248     }
1249     if (encode_image == NULL)
1250         return UnknownImageFormat;
1251
1252     /* extract underlying hbitmap representation from the IPicture */
1253     hr = IPicture_get_Handle(image->picture, (OLE_HANDLE*)&hbmp);
1254     if (FAILED(hr) || !hbmp)
1255         return GenericError;
1256     hr = IPicture_get_CurDC(image->picture, &hdc);
1257     if (FAILED(hr))
1258         return GenericError;
1259     bm_is_selected = (hdc != 0);
1260     if (!bm_is_selected) {
1261         hdc = CreateCompatibleDC(0);
1262         old_hbmp = SelectObject(hdc, hbmp);
1263     }
1264
1265     /* get bits from HBITMAP */
1266     bmp_info.bmiHeader.biSize = sizeof(bmp_info.bmiHeader);
1267     bmp_info.bmiHeader.biBitCount = 0;
1268     GetDIBits(hdc, hbmp, 0, 0, NULL, &bmp_info, DIB_RGB_COLORS);
1269
1270     bmp_bits = GdipAlloc(bmp_info.bmiHeader.biSizeImage);
1271
1272     if (bmp_bits)
1273         GetDIBits(hdc, hbmp, 0, abs(bmp_info.bmiHeader.biHeight), bmp_bits, &bmp_info, DIB_RGB_COLORS);
1274
1275     if (!bm_is_selected) {
1276         SelectObject(hdc, old_hbmp);
1277         DeleteDC(hdc);
1278     }
1279
1280     if (!bmp_bits)
1281         return OutOfMemory;
1282
1283     stat = encode_image(bmp_bits, &bmp_info, &output, &output_size);
1284     if (stat == Ok)
1285         IStream_Write(stream, output, output_size, &dummy);
1286
1287     GdipFree(output);
1288     GdipFree(bmp_bits);
1289
1290     return stat;
1291 }
1292
1293 /*****************************************************************************
1294  * GdipSetImagePalette [GDIPLUS.@]
1295  */
1296 GpStatus WINGDIPAPI GdipSetImagePalette(GpImage *image,
1297     GDIPCONST ColorPalette *palette)
1298 {
1299     static int calls;
1300
1301     if(!image || !palette)
1302         return InvalidParameter;
1303
1304     if(!(calls++))
1305         FIXME("not implemented\n");
1306
1307     return NotImplemented;
1308 }
1309
1310 /*************************************************************************
1311  * Encoders -
1312  *   Structures that represent which formats we support for encoding.
1313  */
1314
1315 /* ImageCodecInfo creation routines taken from libgdiplus */
1316 static const WCHAR bmp_codecname[] = {'B', 'u', 'i','l', 't', '-','i', 'n', ' ', 'B', 'M', 'P', 0}; /* Built-in BMP */
1317 static const WCHAR bmp_extension[] = {'*','.','B', 'M', 'P',';', '*','.', 'D','I', 'B',';', '*','.', 'R', 'L', 'E',0}; /* *.BMP;*.DIB;*.RLE */
1318 static const WCHAR bmp_mimetype[] = {'i', 'm', 'a','g', 'e', '/', 'b', 'm', 'p', 0}; /* image/bmp */
1319 static const WCHAR bmp_format[] = {'B', 'M', 'P', 0}; /* BMP */
1320 static const BYTE bmp_sig_pattern[] = { 0x42, 0x4D };
1321 static const BYTE bmp_sig_mask[] = { 0xFF, 0xFF };
1322
1323 static const ImageCodecInfo codecs[NUM_ENCODERS_SUPPORTED] =
1324     {
1325         { /* BMP */
1326             /* Clsid */              { 0x557cf400, 0x1a04, 0x11d3, { 0x9a, 0x73, 0x0, 0x0, 0xf8, 0x1e, 0xf3, 0x2e } },
1327             /* FormatID */           { 0xb96b3cabU, 0x0728U, 0x11d3U, {0x9d, 0x7b, 0x00, 0x00, 0xf8, 0x1e, 0xf3, 0x2e} },
1328             /* CodecName */          bmp_codecname,
1329             /* DllName */            NULL,
1330             /* FormatDescription */  bmp_format,
1331             /* FilenameExtension */  bmp_extension,
1332             /* MimeType */           bmp_mimetype,
1333             /* Flags */              ImageCodecFlagsEncoder | ImageCodecFlagsDecoder | ImageCodecFlagsSupportBitmap | ImageCodecFlagsBuiltin,
1334             /* Version */            1,
1335             /* SigCount */           1,
1336             /* SigSize */            2,
1337             /* SigPattern */         bmp_sig_pattern,
1338             /* SigMask */            bmp_sig_mask,
1339         },
1340     };
1341
1342 /*****************************************************************************
1343  * GdipGetImageDecodersSize [GDIPLUS.@]
1344  */
1345 GpStatus WINGDIPAPI GdipGetImageDecodersSize(UINT *numDecoders, UINT *size)
1346 {
1347     FIXME("%p %p stub!\n", numDecoders, size);
1348
1349     if (!numDecoders || !size)
1350         return InvalidParameter;
1351
1352     *numDecoders = 0;
1353     *size = 0;
1354
1355     return Ok;
1356 }
1357
1358 /*****************************************************************************
1359  * GdipGetImageDecoders [GDIPLUS.@]
1360  */
1361 GpStatus WINGDIPAPI GdipGetImageDecoders(UINT numDecoders, UINT size, ImageCodecInfo *decoders)
1362 {
1363     FIXME("%u %u %p stub!\n", numDecoders, size, decoders);
1364
1365     if (!decoders)
1366         return GenericError;
1367
1368     return NotImplemented;
1369 }
1370
1371 /*****************************************************************************
1372  * GdipGetImageEncodersSize [GDIPLUS.@]
1373  */
1374 GpStatus WINGDIPAPI GdipGetImageEncodersSize(UINT *numEncoders, UINT *size)
1375 {
1376     TRACE("%p %p\n", numEncoders, size);
1377
1378     if (!numEncoders || !size)
1379         return InvalidParameter;
1380
1381     *numEncoders = NUM_ENCODERS_SUPPORTED;
1382     *size = sizeof (codecs);
1383
1384     return Ok;
1385 }
1386
1387 /*****************************************************************************
1388  * GdipGetImageEncoders [GDIPLUS.@]
1389  */
1390 GpStatus WINGDIPAPI GdipGetImageEncoders(UINT numEncoders, UINT size, ImageCodecInfo *encoders)
1391 {
1392     TRACE("%u %u %p\n", numEncoders, size, encoders);
1393
1394     if (!encoders ||
1395         (numEncoders != NUM_ENCODERS_SUPPORTED) ||
1396         (size != sizeof (codecs)))
1397         return GenericError;
1398
1399     memcpy(encoders, codecs, sizeof (codecs));
1400
1401     return Ok;
1402 }
1403
1404 /*****************************************************************************
1405  * GdipCreateBitmapFromHBITMAP [GDIPLUS.@]
1406  */
1407 GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBitmap** bitmap)
1408 {
1409     BITMAP bm;
1410     GpStatus retval;
1411     PixelFormat format;
1412
1413     TRACE("%p %p %p\n", hbm, hpal, bitmap);
1414
1415     if(!hbm || !bitmap)
1416         return InvalidParameter;
1417
1418     /* TODO: Support for device-dependent bitmaps */
1419     if(hpal){
1420         FIXME("no support for device-dependent bitmaps\n");
1421         return NotImplemented;
1422     }
1423
1424     if (GetObjectA(hbm, sizeof(bm), &bm) != sizeof(bm))
1425             return InvalidParameter;
1426
1427     /* TODO: Figure out the correct format for 16, 32, 64 bpp */
1428     switch(bm.bmBitsPixel) {
1429         case 1:
1430             format = PixelFormat1bppIndexed;
1431             break;
1432         case 4:
1433             format = PixelFormat4bppIndexed;
1434             break;
1435         case 8:
1436             format = PixelFormat8bppIndexed;
1437             break;
1438         case 24:
1439             format = PixelFormat24bppRGB;
1440             break;
1441         case 32:
1442             format = PixelFormat32bppRGB;
1443             break;
1444         case 48:
1445             format = PixelFormat48bppRGB;
1446             break;
1447         default:
1448             FIXME("don't know how to handle %d bpp\n", bm.bmBitsPixel);
1449             return InvalidParameter;
1450     }
1451
1452     retval = GdipCreateBitmapFromScan0(bm.bmWidth, bm.bmHeight, bm.bmWidthBytes,
1453         format, bm.bmBits, bitmap);
1454
1455     return retval;
1456 }
1457
1458 /*****************************************************************************
1459  * GdipSetEffectParameters [GDIPLUS.@]
1460  */
1461 GpStatus WINGDIPAPI GdipSetEffectParameters(CGpEffect *effect,
1462     const VOID *params, const UINT size)
1463 {
1464     static int calls;
1465
1466     if(!(calls++))
1467         FIXME("not implemented\n");
1468
1469     return NotImplemented;
1470 }
1471
1472 /*****************************************************************************
1473  * GdipGetImageFlags [GDIPLUS.@]
1474  */
1475 GpStatus WINGDIPAPI GdipGetImageFlags(GpImage *image, UINT *flags)
1476 {
1477     TRACE("%p %p\n", image, flags);
1478
1479     if(!image || !flags)
1480         return InvalidParameter;
1481
1482     *flags = image->flags;
1483
1484     return Ok;
1485 }
1486
1487 GpStatus WINGDIPAPI GdipTestControl(GpTestControlEnum control, void *param)
1488 {
1489     TRACE("(%d, %p)\n", control, param);
1490
1491     switch(control){
1492         case TestControlForceBilinear:
1493             if(param)
1494                 FIXME("TestControlForceBilinear not handled\n");
1495             break;
1496         case TestControlNoICM:
1497             if(param)
1498                 FIXME("TestControlNoICM not handled\n");
1499             break;
1500         case TestControlGetBuildNumber:
1501             *((DWORD*)param) = 3102;
1502             break;
1503     }
1504
1505     return Ok;
1506 }
1507
1508 GpStatus WINGDIPAPI GdipRecordMetafileFileName(GDIPCONST WCHAR* fileName,
1509                             HDC hdc, EmfType type, GDIPCONST GpRectF *pFrameRect,
1510                             MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc,
1511                             GpMetafile **metafile)
1512 {
1513     FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName), hdc, type, pFrameRect,
1514                                  frameUnit, debugstr_w(desc), metafile);
1515
1516     return NotImplemented;
1517 }
1518
1519 GpStatus WINGDIPAPI GdipRecordMetafileFileNameI(GDIPCONST WCHAR* fileName, HDC hdc, EmfType type,
1520                             GDIPCONST GpRect *pFrameRect, MetafileFrameUnit frameUnit,
1521                             GDIPCONST WCHAR *desc, GpMetafile **metafile)
1522 {
1523     FIXME("%s %p %d %p %d %s %p stub!\n", debugstr_w(fileName), hdc, type, pFrameRect,
1524                                  frameUnit, debugstr_w(desc), metafile);
1525
1526     return NotImplemented;
1527 }
1528
1529 GpStatus WINGDIPAPI GdipImageForceValidation(GpImage *image)
1530 {
1531     FIXME("%p\n", image);
1532
1533     return Ok;
1534 }