4 * Implementation of OLE IPicture and related interfaces
6 * Copyright 2000 Huw D M Davies for CodeWeavers.
7 * Copyright 2001 Marcus Meissner
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * Support PICTYPE_BITMAP and PICTYPE_ICON, altough only bitmaps very well..
26 * Lots of methods are just stubs.
29 * NOTES (or things that msdn doesn't tell you)
31 * The width and height properties are returned in HIMETRIC units (0.01mm)
32 * IPicture::Render also uses these to select a region of the src picture.
33 * A bitmap's size is converted into these units by using the screen resolution
34 * thus an 8x8 bitmap on a 96dpi screen has a size of 212x212 (8/96 * 2540).
39 #include "wine/port.h"
48 /* Must be before wine includes, the header has things conflicting with
52 #define NONAMELESSUNION
53 #define NONAMELESSSTRUCT
65 #include "wine/debug.h"
66 #include "wine/unicode.h"
68 #include "wine/wingdi16.h"
71 /* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
73 #define UINT8 JPEG_UINT8
74 #define UINT16 JPEG_UINT16
76 #define boolean jpeg_boolean
89 WINE_DEFAULT_DEBUG_CHANNEL(ole);
93 /* Header for Aldus Placable Metafiles - a standard metafile follows */
94 typedef struct _APM_HEADER
116 } CURSORICONFILEDIRENTRY;
123 CURSORICONFILEDIRENTRY idEntries[1];
128 /*************************************************************************
129 * Declaration of implementation class
132 typedef struct OLEPictureImpl {
135 * IPicture handles IUnknown
138 const IPictureVtbl *lpVtbl;
139 const IDispatchVtbl *lpvtblIDispatch;
140 const IPersistStreamVtbl *lpvtblIPersistStream;
141 const IConnectionPointContainerVtbl *lpvtblIConnectionPointContainer;
143 /* Object reference count */
146 /* We own the object and must destroy it ourselves */
149 /* Picture description */
152 /* These are the pixel size of a bitmap */
156 /* And these are the size of the picture converted into HIMETRIC units */
157 OLE_XSIZE_HIMETRIC himetricWidth;
158 OLE_YSIZE_HIMETRIC himetricHeight;
160 IConnectionPoint *pCP;
165 /* Bitmap transparency mask */
173 BOOL bIsDirty; /* Set to TRUE if picture has changed */
174 unsigned int loadtime_magic; /* If a length header was found, saves value */
175 unsigned int loadtime_format; /* for PICTYPE_BITMAP only, keeps track of image format (GIF/BMP/JPEG) */
179 * Macros to retrieve pointer to IUnknown (IPicture) from the other VTables.
182 static inline OLEPictureImpl *impl_from_IDispatch( IDispatch *iface )
184 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIDispatch));
187 static inline OLEPictureImpl *impl_from_IPersistStream( IPersistStream *iface )
189 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIPersistStream));
192 static inline OLEPictureImpl *impl_from_IConnectionPointContainer( IConnectionPointContainer *iface )
194 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIConnectionPointContainer));
198 * Predeclare VTables. They get initialized at the end.
200 static const IPictureVtbl OLEPictureImpl_VTable;
201 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable;
202 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable;
203 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable;
205 /***********************************************************************
206 * Implementation of the OLEPictureImpl class.
209 static void OLEPictureImpl_SetBitmap(OLEPictureImpl*This) {
213 TRACE("bitmap handle %p\n", This->desc.u.bmp.hbitmap);
214 if(GetObjectA(This->desc.u.bmp.hbitmap, sizeof(bm), &bm) != sizeof(bm)) {
215 ERR("GetObject fails\n");
218 This->origWidth = bm.bmWidth;
219 This->origHeight = bm.bmHeight;
220 /* The width and height are stored in HIMETRIC units (0.01 mm),
221 so we take our pixel width divide by pixels per inch and
222 multiply by 25.4 * 100 */
223 /* Should we use GetBitmapDimension if available? */
224 hdcRef = CreateCompatibleDC(0);
225 This->himetricWidth =(bm.bmWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
226 This->himetricHeight=(bm.bmHeight*2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
230 static void OLEPictureImpl_SetIcon(OLEPictureImpl * This)
234 TRACE("icon handle %p\n", This->desc.u.icon.hicon);
235 if (GetIconInfo(This->desc.u.icon.hicon, &infoIcon)) {
239 TRACE("bitmap handle for icon is %p\n", infoIcon.hbmColor);
240 if(GetObjectA(infoIcon.hbmColor ? infoIcon.hbmColor : infoIcon.hbmMask, sizeof(bm), &bm) != sizeof(bm)) {
241 ERR("GetObject fails on icon bitmap\n");
245 This->origWidth = bm.bmWidth;
246 This->origHeight = infoIcon.hbmColor ? bm.bmHeight : bm.bmHeight / 2;
247 /* see comment on HIMETRIC on OLEPictureImpl_SetBitmap() */
249 This->himetricWidth = (This->origWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
250 This->himetricHeight= (This->origHeight *2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
251 ReleaseDC(0, hdcRef);
253 DeleteObject(infoIcon.hbmMask);
254 if (infoIcon.hbmColor) DeleteObject(infoIcon.hbmColor);
256 ERR("GetIconInfo() fails on icon %p\n", This->desc.u.icon.hicon);
260 /************************************************************************
261 * OLEPictureImpl_Construct
263 * This method will construct a new instance of the OLEPictureImpl
266 * The caller of this method must release the object when it's
269 static OLEPictureImpl* OLEPictureImpl_Construct(LPPICTDESC pictDesc, BOOL fOwn)
271 OLEPictureImpl* newObject = 0;
274 TRACE("(%p) type = %d\n", pictDesc, pictDesc->picType);
277 * Allocate space for the object.
279 newObject = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(OLEPictureImpl));
285 * Initialize the virtual function table.
287 newObject->lpVtbl = &OLEPictureImpl_VTable;
288 newObject->lpvtblIDispatch = &OLEPictureImpl_IDispatch_VTable;
289 newObject->lpvtblIPersistStream = &OLEPictureImpl_IPersistStream_VTable;
290 newObject->lpvtblIConnectionPointContainer = &OLEPictureImpl_IConnectionPointContainer_VTable;
292 newObject->pCP = NULL;
293 CreateConnectionPoint((IUnknown*)newObject,&IID_IPropertyNotifySink,&newObject->pCP);
296 HeapFree(GetProcessHeap(), 0, newObject);
301 * Start with one reference count. The caller of this function
302 * must release the interface pointer when it is done.
305 newObject->hDCCur = 0;
307 newObject->fOwn = fOwn;
309 /* dunno about original value */
310 newObject->keepOrigFormat = TRUE;
312 newObject->hbmMask = NULL;
313 newObject->hbmXor = NULL;
314 newObject->loadtime_magic = 0xdeadbeef;
315 newObject->loadtime_format = 0;
316 newObject->bIsDirty = FALSE;
319 memcpy(&newObject->desc, pictDesc, sizeof(PICTDESC));
321 switch(pictDesc->picType) {
323 OLEPictureImpl_SetBitmap(newObject);
326 case PICTYPE_METAFILE:
327 TRACE("metafile handle %p\n", pictDesc->u.wmf.hmeta);
328 newObject->himetricWidth = pictDesc->u.wmf.xExt;
329 newObject->himetricHeight = pictDesc->u.wmf.yExt;
333 /* not sure what to do here */
334 newObject->himetricWidth = newObject->himetricHeight = 0;
338 OLEPictureImpl_SetIcon(newObject);
340 case PICTYPE_ENHMETAFILE:
342 FIXME("Unsupported type %d\n", pictDesc->picType);
343 newObject->himetricWidth = newObject->himetricHeight = 0;
347 newObject->desc.picType = PICTYPE_UNINITIALIZED;
350 TRACE("returning %p\n", newObject);
354 /************************************************************************
355 * OLEPictureImpl_Destroy
357 * This method is called by the Release method when the reference
358 * count goes down to 0. It will free all resources used by
360 static void OLEPictureImpl_Destroy(OLEPictureImpl* Obj)
362 TRACE("(%p)\n", Obj);
365 IConnectionPoint_Release(Obj->pCP);
367 if(Obj->fOwn) { /* We need to destroy the picture */
368 switch(Obj->desc.picType) {
370 DeleteObject(Obj->desc.u.bmp.hbitmap);
371 if (Obj->hbmMask != NULL) DeleteObject(Obj->hbmMask);
372 if (Obj->hbmXor != NULL) DeleteObject(Obj->hbmXor);
374 case PICTYPE_METAFILE:
375 DeleteMetaFile(Obj->desc.u.wmf.hmeta);
378 DestroyIcon(Obj->desc.u.icon.hicon);
380 case PICTYPE_ENHMETAFILE:
381 DeleteEnhMetaFile(Obj->desc.u.emf.hemf);
384 case PICTYPE_UNINITIALIZED:
388 FIXME("Unsupported type %d - unable to delete\n", Obj->desc.picType);
392 HeapFree(GetProcessHeap(), 0, Obj->data);
393 HeapFree(GetProcessHeap(), 0, Obj);
397 /************************************************************************
398 * OLEPictureImpl_AddRef (IUnknown)
400 * See Windows documentation for more details on IUnknown methods.
402 static ULONG WINAPI OLEPictureImpl_AddRef(
405 OLEPictureImpl *This = (OLEPictureImpl *)iface;
406 ULONG refCount = InterlockedIncrement(&This->ref);
408 TRACE("(%p)->(ref before=%d)\n", This, refCount - 1);
413 /************************************************************************
414 * OLEPictureImpl_Release (IUnknown)
416 * See Windows documentation for more details on IUnknown methods.
418 static ULONG WINAPI OLEPictureImpl_Release(
421 OLEPictureImpl *This = (OLEPictureImpl *)iface;
422 ULONG refCount = InterlockedDecrement(&This->ref);
424 TRACE("(%p)->(ref before=%d)\n", This, refCount + 1);
427 * If the reference count goes down to 0, perform suicide.
429 if (!refCount) OLEPictureImpl_Destroy(This);
434 /************************************************************************
435 * OLEPictureImpl_QueryInterface (IUnknown)
437 * See Windows documentation for more details on IUnknown methods.
439 static HRESULT WINAPI OLEPictureImpl_QueryInterface(
444 OLEPictureImpl *This = (OLEPictureImpl *)iface;
445 TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppvObject);
448 * Perform a sanity check on the parameters.
450 if ( (This==0) || (ppvObject==0) )
454 * Initialize the return parameter.
459 * Compare the riid with the interface IDs implemented by this object.
461 if (IsEqualIID(&IID_IUnknown, riid) || IsEqualIID(&IID_IPicture, riid))
462 *ppvObject = (IPicture*)This;
463 else if (IsEqualIID(&IID_IDispatch, riid))
464 *ppvObject = (IDispatch*)&(This->lpvtblIDispatch);
465 else if (IsEqualIID(&IID_IPictureDisp, riid))
466 *ppvObject = (IDispatch*)&(This->lpvtblIDispatch);
467 else if (IsEqualIID(&IID_IPersist, riid) || IsEqualIID(&IID_IPersistStream, riid))
468 *ppvObject = (IPersistStream*)&(This->lpvtblIPersistStream);
469 else if (IsEqualIID(&IID_IConnectionPointContainer, riid))
470 *ppvObject = (IConnectionPointContainer*)&(This->lpvtblIConnectionPointContainer);
473 * Check that we obtained an interface.
477 FIXME("() : asking for un supported interface %s\n",debugstr_guid(riid));
478 return E_NOINTERFACE;
482 * Query Interface always increases the reference count by one when it is
485 OLEPictureImpl_AddRef((IPicture*)This);
490 /***********************************************************************
491 * OLEPicture_SendNotify (internal)
493 * Sends notification messages of changed properties to any interested
496 static void OLEPicture_SendNotify(OLEPictureImpl* this, DISPID dispID)
498 IEnumConnections *pEnum;
501 if (IConnectionPoint_EnumConnections(this->pCP, &pEnum))
503 while(IEnumConnections_Next(pEnum, 1, &CD, NULL) == S_OK) {
504 IPropertyNotifySink *sink;
506 IUnknown_QueryInterface(CD.pUnk, &IID_IPropertyNotifySink, (LPVOID)&sink);
507 IPropertyNotifySink_OnChanged(sink, dispID);
508 IPropertyNotifySink_Release(sink);
509 IUnknown_Release(CD.pUnk);
511 IEnumConnections_Release(pEnum);
515 /************************************************************************
516 * OLEPictureImpl_get_Handle
518 static HRESULT WINAPI OLEPictureImpl_get_Handle(IPicture *iface,
521 OLEPictureImpl *This = (OLEPictureImpl *)iface;
522 TRACE("(%p)->(%p)\n", This, phandle);
523 switch(This->desc.picType) {
525 case PICTYPE_UNINITIALIZED:
529 *phandle = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
531 case PICTYPE_METAFILE:
532 *phandle = (OLE_HANDLE)This->desc.u.wmf.hmeta;
535 *phandle = (OLE_HANDLE)This->desc.u.icon.hicon;
537 case PICTYPE_ENHMETAFILE:
538 *phandle = (OLE_HANDLE)This->desc.u.emf.hemf;
541 FIXME("Unimplemented type %d\n", This->desc.picType);
544 TRACE("returning handle %08x\n", *phandle);
548 /************************************************************************
549 * OLEPictureImpl_get_hPal
551 static HRESULT WINAPI OLEPictureImpl_get_hPal(IPicture *iface,
554 OLEPictureImpl *This = (OLEPictureImpl *)iface;
556 TRACE("(%p)->(%p)\n", This, phandle);
561 switch (This->desc.picType) {
562 case (UINT)PICTYPE_UNINITIALIZED:
568 *phandle = (OLE_HANDLE)This->desc.u.bmp.hpal;
571 case PICTYPE_METAFILE:
575 case PICTYPE_ENHMETAFILE:
577 FIXME("unimplemented for type %d. Returning 0 palette.\n",
583 TRACE("returning 0x%08x, palette handle %08x\n", hres, *phandle);
587 /************************************************************************
588 * OLEPictureImpl_get_Type
590 static HRESULT WINAPI OLEPictureImpl_get_Type(IPicture *iface,
593 OLEPictureImpl *This = (OLEPictureImpl *)iface;
594 TRACE("(%p)->(%p): type is %d\n", This, ptype, This->desc.picType);
595 *ptype = This->desc.picType;
599 /************************************************************************
600 * OLEPictureImpl_get_Width
602 static HRESULT WINAPI OLEPictureImpl_get_Width(IPicture *iface,
603 OLE_XSIZE_HIMETRIC *pwidth)
605 OLEPictureImpl *This = (OLEPictureImpl *)iface;
606 TRACE("(%p)->(%p): width is %d\n", This, pwidth, This->himetricWidth);
607 *pwidth = This->himetricWidth;
611 /************************************************************************
612 * OLEPictureImpl_get_Height
614 static HRESULT WINAPI OLEPictureImpl_get_Height(IPicture *iface,
615 OLE_YSIZE_HIMETRIC *pheight)
617 OLEPictureImpl *This = (OLEPictureImpl *)iface;
618 TRACE("(%p)->(%p): height is %d\n", This, pheight, This->himetricHeight);
619 *pheight = This->himetricHeight;
623 /************************************************************************
624 * OLEPictureImpl_Render
626 static HRESULT WINAPI OLEPictureImpl_Render(IPicture *iface, HDC hdc,
627 LONG x, LONG y, LONG cx, LONG cy,
628 OLE_XPOS_HIMETRIC xSrc,
629 OLE_YPOS_HIMETRIC ySrc,
630 OLE_XSIZE_HIMETRIC cxSrc,
631 OLE_YSIZE_HIMETRIC cySrc,
634 OLEPictureImpl *This = (OLEPictureImpl *)iface;
635 TRACE("(%p)->(%p, (%d,%d), (%d,%d) <- (%d,%d), (%d,%d), %p)\n",
636 This, hdc, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, prcWBounds);
638 TRACE("prcWBounds (%d,%d) - (%d,%d)\n", prcWBounds->left, prcWBounds->top,
639 prcWBounds->right, prcWBounds->bottom);
642 * While the documentation suggests this to be here (or after rendering?)
643 * it does cause an endless recursion in my sample app. -MM 20010804
644 OLEPicture_SendNotify(This,DISPID_PICT_RENDER);
647 switch(This->desc.picType) {
653 /* Set a mapping mode that maps bitmap pixels into HIMETRIC units.
654 NB y-axis gets flipped */
656 hdcBmp = CreateCompatibleDC(0);
657 SetMapMode(hdcBmp, MM_ANISOTROPIC);
658 SetWindowOrgEx(hdcBmp, 0, 0, NULL);
659 SetWindowExtEx(hdcBmp, This->himetricWidth, This->himetricHeight, NULL);
660 SetViewportOrgEx(hdcBmp, 0, This->origHeight, NULL);
661 SetViewportExtEx(hdcBmp, This->origWidth, -This->origHeight, NULL);
664 HDC hdcMask = CreateCompatibleDC(0);
665 HBITMAP hOldbm = SelectObject(hdcMask, This->hbmMask);
667 hbmpOld = SelectObject(hdcBmp, This->hbmXor);
669 SetMapMode(hdcMask, MM_ANISOTROPIC);
670 SetWindowOrgEx(hdcMask, 0, 0, NULL);
671 SetWindowExtEx(hdcMask, This->himetricWidth, This->himetricHeight, NULL);
672 SetViewportOrgEx(hdcMask, 0, This->origHeight, NULL);
673 SetViewportExtEx(hdcMask, This->origWidth, -This->origHeight, NULL);
675 SetBkColor(hdc, RGB(255, 255, 255));
676 SetTextColor(hdc, RGB(0, 0, 0));
677 StretchBlt(hdc, x, y, cx, cy, hdcMask, xSrc, ySrc, cxSrc, cySrc, SRCAND);
678 StretchBlt(hdc, x, y, cx, cy, hdcBmp, xSrc, ySrc, cxSrc, cySrc, SRCPAINT);
680 SelectObject(hdcMask, hOldbm);
683 hbmpOld = SelectObject(hdcBmp, This->desc.u.bmp.hbitmap);
684 StretchBlt(hdc, x, y, cx, cy, hdcBmp, xSrc, ySrc, cxSrc, cySrc, SRCCOPY);
687 SelectObject(hdcBmp, hbmpOld);
692 FIXME("Not quite correct implementation of rendering icons...\n");
693 DrawIcon(hdc,x,y,This->desc.u.icon.hicon);
696 case PICTYPE_METAFILE:
702 oldmode = SetMapMode(hdc, MM_ANISOTROPIC);
703 SetViewportOrgEx(hdc, x, y, &prevOrg);
704 SetViewportExtEx(hdc, cx, cy, &prevExt);
706 if (!PlayMetaFile(hdc, This->desc.u.wmf.hmeta))
707 ERR("PlayMetaFile failed!\n");
709 SetViewportExtEx(hdc, prevExt.cx, prevExt.cy, NULL);
710 SetViewportOrgEx(hdc, prevOrg.x, prevOrg.y, NULL);
711 SetMapMode(hdc, oldmode);
715 case PICTYPE_ENHMETAFILE:
717 RECT rc = { x, y, x + cx, y + cy };
718 PlayEnhMetaFile(hdc, This->desc.u.emf.hemf, &rc);
723 FIXME("type %d not implemented\n", This->desc.picType);
729 /************************************************************************
730 * OLEPictureImpl_set_hPal
732 static HRESULT WINAPI OLEPictureImpl_set_hPal(IPicture *iface,
735 OLEPictureImpl *This = (OLEPictureImpl *)iface;
736 FIXME("(%p)->(%08x): stub\n", This, hpal);
737 OLEPicture_SendNotify(This,DISPID_PICT_HPAL);
741 /************************************************************************
742 * OLEPictureImpl_get_CurDC
744 static HRESULT WINAPI OLEPictureImpl_get_CurDC(IPicture *iface,
747 OLEPictureImpl *This = (OLEPictureImpl *)iface;
748 TRACE("(%p), returning %p\n", This, This->hDCCur);
749 if (phdc) *phdc = This->hDCCur;
753 /************************************************************************
754 * OLEPictureImpl_SelectPicture
756 static HRESULT WINAPI OLEPictureImpl_SelectPicture(IPicture *iface,
759 OLE_HANDLE *phbmpOut)
761 OLEPictureImpl *This = (OLEPictureImpl *)iface;
762 TRACE("(%p)->(%p, %p, %p)\n", This, hdcIn, phdcOut, phbmpOut);
763 if (This->desc.picType == PICTYPE_BITMAP) {
764 SelectObject(hdcIn,This->desc.u.bmp.hbitmap);
767 *phdcOut = This->hDCCur;
768 This->hDCCur = hdcIn;
770 *phbmpOut = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
773 FIXME("Don't know how to select picture type %d\n",This->desc.picType);
778 /************************************************************************
779 * OLEPictureImpl_get_KeepOriginalFormat
781 static HRESULT WINAPI OLEPictureImpl_get_KeepOriginalFormat(IPicture *iface,
784 OLEPictureImpl *This = (OLEPictureImpl *)iface;
785 TRACE("(%p)->(%p)\n", This, pfKeep);
788 *pfKeep = This->keepOrigFormat;
792 /************************************************************************
793 * OLEPictureImpl_put_KeepOriginalFormat
795 static HRESULT WINAPI OLEPictureImpl_put_KeepOriginalFormat(IPicture *iface,
798 OLEPictureImpl *This = (OLEPictureImpl *)iface;
799 TRACE("(%p)->(%d)\n", This, keep);
800 This->keepOrigFormat = keep;
801 /* FIXME: what DISPID notification here? */
805 /************************************************************************
806 * OLEPictureImpl_PictureChanged
808 static HRESULT WINAPI OLEPictureImpl_PictureChanged(IPicture *iface)
810 OLEPictureImpl *This = (OLEPictureImpl *)iface;
811 TRACE("(%p)->()\n", This);
812 OLEPicture_SendNotify(This,DISPID_PICT_HANDLE);
813 This->bIsDirty = TRUE;
817 /************************************************************************
818 * OLEPictureImpl_SaveAsFile
820 static HRESULT WINAPI OLEPictureImpl_SaveAsFile(IPicture *iface,
825 OLEPictureImpl *This = (OLEPictureImpl *)iface;
826 FIXME("(%p)->(%p, %d, %p), hacked stub.\n", This, pstream, SaveMemCopy, pcbSize);
827 return IStream_Write(pstream,This->data,This->datalen,(ULONG*)pcbSize);
830 /************************************************************************
831 * OLEPictureImpl_get_Attributes
833 static HRESULT WINAPI OLEPictureImpl_get_Attributes(IPicture *iface,
836 OLEPictureImpl *This = (OLEPictureImpl *)iface;
837 TRACE("(%p)->(%p).\n", This, pdwAttr);
839 switch (This->desc.picType) {
840 case PICTYPE_BITMAP: if (This->hbmMask) *pdwAttr = PICTURE_TRANSPARENT; break; /* not 'truly' scalable, see MSDN. */
841 case PICTYPE_ICON: *pdwAttr = PICTURE_TRANSPARENT;break;
842 case PICTYPE_ENHMETAFILE: /* fall through */
843 case PICTYPE_METAFILE: *pdwAttr = PICTURE_TRANSPARENT|PICTURE_SCALABLE;break;
844 default:FIXME("Unknown pictype %d\n",This->desc.picType);break;
850 /************************************************************************
851 * IConnectionPointContainer
853 static HRESULT WINAPI OLEPictureImpl_IConnectionPointContainer_QueryInterface(
854 IConnectionPointContainer* iface,
858 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
860 return IPicture_QueryInterface((IPicture *)This,riid,ppvoid);
863 static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_AddRef(
864 IConnectionPointContainer* iface)
866 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
868 return IPicture_AddRef((IPicture *)This);
871 static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_Release(
872 IConnectionPointContainer* iface)
874 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
876 return IPicture_Release((IPicture *)This);
879 static HRESULT WINAPI OLEPictureImpl_EnumConnectionPoints(
880 IConnectionPointContainer* iface,
881 IEnumConnectionPoints** ppEnum)
883 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
885 FIXME("(%p,%p), stub!\n",This,ppEnum);
889 static HRESULT WINAPI OLEPictureImpl_FindConnectionPoint(
890 IConnectionPointContainer* iface,
892 IConnectionPoint **ppCP)
894 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
895 TRACE("(%p,%s,%p)\n",This,debugstr_guid(riid),ppCP);
899 if (IsEqualGUID(riid,&IID_IPropertyNotifySink))
900 return IConnectionPoint_QueryInterface(This->pCP,&IID_IConnectionPoint,(LPVOID)ppCP);
901 FIXME("no connection point for %s\n",debugstr_guid(riid));
902 return CONNECT_E_NOCONNECTION;
906 /************************************************************************
910 /************************************************************************
911 * OLEPictureImpl_IPersistStream_QueryInterface (IUnknown)
913 * See Windows documentation for more details on IUnknown methods.
915 static HRESULT WINAPI OLEPictureImpl_IPersistStream_QueryInterface(
916 IPersistStream* iface,
920 OLEPictureImpl *This = impl_from_IPersistStream(iface);
922 return IPicture_QueryInterface((IPicture *)This, riid, ppvoid);
925 /************************************************************************
926 * OLEPictureImpl_IPersistStream_AddRef (IUnknown)
928 * See Windows documentation for more details on IUnknown methods.
930 static ULONG WINAPI OLEPictureImpl_IPersistStream_AddRef(
931 IPersistStream* iface)
933 OLEPictureImpl *This = impl_from_IPersistStream(iface);
935 return IPicture_AddRef((IPicture *)This);
938 /************************************************************************
939 * OLEPictureImpl_IPersistStream_Release (IUnknown)
941 * See Windows documentation for more details on IUnknown methods.
943 static ULONG WINAPI OLEPictureImpl_IPersistStream_Release(
944 IPersistStream* iface)
946 OLEPictureImpl *This = impl_from_IPersistStream(iface);
948 return IPicture_Release((IPicture *)This);
951 /************************************************************************
952 * OLEPictureImpl_IPersistStream_GetClassID
954 static HRESULT WINAPI OLEPictureImpl_GetClassID(
955 IPersistStream* iface,CLSID* pClassID)
957 TRACE("(%p)\n", pClassID);
958 memcpy(pClassID, &CLSID_StdPicture, sizeof(*pClassID));
962 /************************************************************************
963 * OLEPictureImpl_IPersistStream_IsDirty
965 static HRESULT WINAPI OLEPictureImpl_IsDirty(
966 IPersistStream* iface)
968 OLEPictureImpl *This = impl_from_IPersistStream(iface);
969 FIXME("(%p),stub!\n",This);
973 #ifdef SONAME_LIBJPEG
975 static void *libjpeg_handle;
976 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
977 MAKE_FUNCPTR(jpeg_std_error);
978 MAKE_FUNCPTR(jpeg_CreateDecompress);
979 MAKE_FUNCPTR(jpeg_read_header);
980 MAKE_FUNCPTR(jpeg_start_decompress);
981 MAKE_FUNCPTR(jpeg_read_scanlines);
982 MAKE_FUNCPTR(jpeg_finish_decompress);
983 MAKE_FUNCPTR(jpeg_destroy_decompress);
986 static void *load_libjpeg(void)
988 if((libjpeg_handle = wine_dlopen(SONAME_LIBJPEG, RTLD_NOW, NULL, 0)) != NULL) {
990 #define LOAD_FUNCPTR(f) \
991 if((p##f = wine_dlsym(libjpeg_handle, #f, NULL, 0)) == NULL) { \
992 libjpeg_handle = NULL; \
996 LOAD_FUNCPTR(jpeg_std_error);
997 LOAD_FUNCPTR(jpeg_CreateDecompress);
998 LOAD_FUNCPTR(jpeg_read_header);
999 LOAD_FUNCPTR(jpeg_start_decompress);
1000 LOAD_FUNCPTR(jpeg_read_scanlines);
1001 LOAD_FUNCPTR(jpeg_finish_decompress);
1002 LOAD_FUNCPTR(jpeg_destroy_decompress);
1005 return libjpeg_handle;
1008 /* for the jpeg decompressor source manager. */
1009 static void _jpeg_init_source(j_decompress_ptr cinfo) { }
1011 static boolean _jpeg_fill_input_buffer(j_decompress_ptr cinfo) {
1012 ERR("(), should not get here.\n");
1016 static void _jpeg_skip_input_data(j_decompress_ptr cinfo,long num_bytes) {
1017 TRACE("Skipping %ld bytes...\n", num_bytes);
1018 cinfo->src->next_input_byte += num_bytes;
1019 cinfo->src->bytes_in_buffer -= num_bytes;
1022 static boolean _jpeg_resync_to_restart(j_decompress_ptr cinfo, int desired) {
1023 ERR("(desired=%d), should not get here.\n",desired);
1026 static void _jpeg_term_source(j_decompress_ptr cinfo) { }
1027 #endif /* SONAME_LIBJPEG */
1030 unsigned char *data;
1031 unsigned int curoff;
1035 static int _gif_inputfunc(GifFileType *gif, GifByteType *data, int len) {
1036 struct gifdata *gd = (struct gifdata*)gif->UserData;
1038 if (len+gd->curoff > gd->len) {
1039 FIXME("Trying to read %d bytes, but only %d available.\n",len, gd->len-gd->curoff);
1040 len = gd->len - gd->curoff;
1042 memcpy(data, gd->data+gd->curoff, len);
1048 static HRESULT OLEPictureImpl_LoadGif(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1059 int transparent = -1;
1066 gif = DGifOpen((void*)&gd, _gif_inputfunc);
1067 ret = DGifSlurp(gif);
1068 if (ret == GIF_ERROR) {
1069 FIXME("Failed reading GIF using libgif.\n");
1072 TRACE("screen height %d, width %d\n", gif->SWidth, gif->SHeight);
1073 TRACE("color res %d, backgcolor %d\n", gif->SColorResolution, gif->SBackGroundColor);
1074 TRACE("imgcnt %d\n", gif->ImageCount);
1075 if (gif->ImageCount<1) {
1076 FIXME("GIF stream does not have images inside?\n");
1079 TRACE("curimage: %d x %d, on %dx%d, interlace %d\n",
1080 gif->Image.Width, gif->Image.Height,
1081 gif->Image.Left, gif->Image.Top,
1082 gif->Image.Interlace
1085 padding = (gif->SWidth+3) & ~3;
1086 si = gif->SavedImages+0;
1087 gid = &(si->ImageDesc);
1089 if (!cm) cm = gif->SColorMap;
1090 bmi = HeapAlloc(GetProcessHeap(),0,sizeof(BITMAPINFOHEADER)+(cm->ColorCount)*sizeof(RGBQUAD));
1091 bytes= HeapAlloc(GetProcessHeap(),0,padding*gif->SHeight);
1093 /* look for the transparent color extension */
1094 for (i = 0; i < si->ExtensionBlockCount; ++i) {
1095 eb = si->ExtensionBlocks + i;
1096 if (eb->Function == 0xF9 && eb->ByteCount == 4) {
1097 if ((eb->Bytes[0] & 1) == 1) {
1098 transparent = (unsigned char)eb->Bytes[3];
1103 for (i = 0; i < cm->ColorCount; i++) {
1104 bmi->bmiColors[i].rgbRed = cm->Colors[i].Red;
1105 bmi->bmiColors[i].rgbGreen = cm->Colors[i].Green;
1106 bmi->bmiColors[i].rgbBlue = cm->Colors[i].Blue;
1107 if (i == transparent) {
1108 This->rgbTrans = RGB(bmi->bmiColors[i].rgbRed,
1109 bmi->bmiColors[i].rgbGreen,
1110 bmi->bmiColors[i].rgbBlue);
1114 /* Map to in picture coordinates */
1115 for (i = 0, j = 0; i < gid->Height; i++) {
1116 if (gif->Image.Interlace) {
1118 bytes + (gid->Top + j) * padding + gid->Left,
1119 si->RasterBits + i * gid->Width,
1122 /* Lower bits of interlaced counter encode current interlace */
1123 if (j & 1) j += 2; /* Currently filling odd rows */
1124 else if (j & 2) j += 4; /* Currently filling even rows not multiples of 4 */
1125 else j += 8; /* Currently filling every 8th row or 4th row in-between */
1127 if (j >= gid->Height && i < gid->Height && (j & 1) == 0) {
1128 /* End of current interlace, go to next interlace */
1129 if (j & 2) j = 1; /* Next iteration fills odd rows */
1130 else if (j & 4) j = 2; /* Next iteration fills even rows not mod 4 and not mod 8 */
1131 else j = 4; /* Next iteration fills rows in-between rows mod 6 */
1135 bytes + (gid->Top + i) * padding + gid->Left,
1136 si->RasterBits + i * gid->Width,
1141 bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1142 bmi->bmiHeader.biWidth = gif->SWidth;
1143 bmi->bmiHeader.biHeight = -gif->SHeight;
1144 bmi->bmiHeader.biPlanes = 1;
1145 bmi->bmiHeader.biBitCount = 8;
1146 bmi->bmiHeader.biCompression = BI_RGB;
1147 bmi->bmiHeader.biSizeImage = padding*gif->SHeight;
1148 bmi->bmiHeader.biXPelsPerMeter = 0;
1149 bmi->bmiHeader.biYPelsPerMeter = 0;
1150 bmi->bmiHeader.biClrUsed = cm->ColorCount;
1151 bmi->bmiHeader.biClrImportant = 0;
1154 This->desc.u.bmp.hbitmap=CreateDIBitmap(
1163 if (transparent > -1) {
1164 /* Create the Mask */
1165 HDC hdc = CreateCompatibleDC(0);
1166 HDC hdcMask = CreateCompatibleDC(0);
1168 HBITMAP hOldbitmapmask;
1170 unsigned int monopadding = (((unsigned)(gif->SWidth + 31)) >> 5) << 2;
1173 This->hbmXor = CreateDIBitmap(
1182 bmi->bmiColors[0].rgbRed = 0;
1183 bmi->bmiColors[0].rgbGreen = 0;
1184 bmi->bmiColors[0].rgbBlue = 0;
1185 bmi->bmiColors[1].rgbRed = 255;
1186 bmi->bmiColors[1].rgbGreen = 255;
1187 bmi->bmiColors[1].rgbBlue = 255;
1189 bmi->bmiHeader.biBitCount = 1;
1190 bmi->bmiHeader.biSizeImage = monopadding*gif->SHeight;
1191 bmi->bmiHeader.biClrUsed = 2;
1193 for (i = 0; i < gif->SHeight; i++) {
1194 unsigned char * colorPointer = bytes + padding * i;
1195 unsigned char * monoPointer = bytes + monopadding * i;
1196 for (j = 0; j < gif->SWidth; j++) {
1197 unsigned char pixel = colorPointer[j];
1198 if ((j & 7) == 0) monoPointer[j >> 3] = 0;
1199 if (pixel == (transparent & 0x000000FFU)) monoPointer[j >> 3] |= 1 << (7 - (j & 7));
1203 hTempMask = CreateDIBitmap(
1213 bmi->bmiHeader.biHeight = -bmi->bmiHeader.biHeight;
1214 This->hbmMask = CreateBitmap(bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight, 1, 1, NULL);
1215 hOldbitmap = SelectObject(hdc, hTempMask);
1216 hOldbitmapmask = SelectObject(hdcMask, This->hbmMask);
1218 SetBkColor(hdc, RGB(255, 255, 255));
1219 BitBlt(hdcMask, 0, 0, bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight, hdc, 0, 0, SRCCOPY);
1221 /* We no longer need the original bitmap, so we apply the first
1222 transformation with the mask to speed up the rendering */
1223 SelectObject(hdc, This->hbmXor);
1224 SetBkColor(hdc, RGB(0,0,0));
1225 SetTextColor(hdc, RGB(255,255,255));
1226 BitBlt(hdc, 0, 0, bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight,
1227 hdcMask, 0, 0, SRCAND);
1229 SelectObject(hdc, hOldbitmap);
1230 SelectObject(hdcMask, hOldbitmapmask);
1233 DeleteObject(hTempMask);
1237 This->desc.picType = PICTYPE_BITMAP;
1238 OLEPictureImpl_SetBitmap(This);
1240 HeapFree(GetProcessHeap(),0,bytes);
1244 static HRESULT OLEPictureImpl_LoadJpeg(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1246 #ifdef SONAME_LIBJPEG
1247 struct jpeg_decompress_struct jd;
1248 struct jpeg_error_mgr jerr;
1251 JSAMPROW samprow,oldsamprow;
1252 BITMAPINFOHEADER bmi;
1255 struct jpeg_source_mgr xjsm;
1259 if(!libjpeg_handle) {
1260 if(!load_libjpeg()) {
1261 FIXME("Failed reading JPEG because unable to find %s\n", SONAME_LIBJPEG);
1266 /* This is basically so we can use in-memory data for jpeg decompression.
1267 * We need to have all the functions.
1269 xjsm.next_input_byte = xbuf;
1270 xjsm.bytes_in_buffer = xread;
1271 xjsm.init_source = _jpeg_init_source;
1272 xjsm.fill_input_buffer = _jpeg_fill_input_buffer;
1273 xjsm.skip_input_data = _jpeg_skip_input_data;
1274 xjsm.resync_to_restart = _jpeg_resync_to_restart;
1275 xjsm.term_source = _jpeg_term_source;
1277 jd.err = pjpeg_std_error(&jerr);
1278 /* jpeg_create_decompress is a macro that expands to jpeg_CreateDecompress - see jpeglib.h
1279 * jpeg_create_decompress(&jd); */
1280 pjpeg_CreateDecompress(&jd, JPEG_LIB_VERSION, (size_t) sizeof(struct jpeg_decompress_struct));
1282 ret=pjpeg_read_header(&jd,TRUE);
1283 jd.out_color_space = JCS_RGB;
1284 pjpeg_start_decompress(&jd);
1285 if (ret != JPEG_HEADER_OK) {
1286 ERR("Jpeg image in stream has bad format, read header returned %d.\n",ret);
1287 HeapFree(GetProcessHeap(),0,xbuf);
1291 bits = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,
1292 (jd.output_height+1) * ((jd.output_width*jd.output_components + 3) & ~3) );
1293 samprow=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,jd.output_width*jd.output_components);
1296 oldsamprow = samprow;
1297 while ( jd.output_scanline<jd.output_height ) {
1298 x = pjpeg_read_scanlines(&jd,&samprow,1);
1300 FIXME("failed to read current scanline?\n");
1303 /* We have to convert from RGB to BGR, see MSDN/ BITMAPINFOHEADER */
1304 for(i=0;i<jd.output_width;i++,samprow+=jd.output_components) {
1305 *(bits++) = *(samprow+2);
1306 *(bits++) = *(samprow+1);
1307 *(bits++) = *(samprow);
1309 bits = (LPBYTE)(((UINT_PTR)bits + 3) & ~3);
1310 samprow = oldsamprow;
1314 bmi.biSize = sizeof(bmi);
1315 bmi.biWidth = jd.output_width;
1316 bmi.biHeight = -jd.output_height;
1318 bmi.biBitCount = jd.output_components<<3;
1319 bmi.biCompression = BI_RGB;
1320 bmi.biSizeImage = jd.output_height*jd.output_width*jd.output_components;
1321 bmi.biXPelsPerMeter = 0;
1322 bmi.biYPelsPerMeter = 0;
1324 bmi.biClrImportant = 0;
1326 HeapFree(GetProcessHeap(),0,samprow);
1327 pjpeg_finish_decompress(&jd);
1328 pjpeg_destroy_decompress(&jd);
1330 This->desc.u.bmp.hbitmap=CreateDIBitmap(
1339 This->desc.picType = PICTYPE_BITMAP;
1340 OLEPictureImpl_SetBitmap(This);
1341 HeapFree(GetProcessHeap(),0,bits);
1344 ERR("Trying to load JPEG picture, but JPEG supported not compiled in.\n");
1349 static HRESULT OLEPictureImpl_LoadDIB(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1351 BITMAPFILEHEADER *bfh = (BITMAPFILEHEADER*)xbuf;
1352 BITMAPINFO *bi = (BITMAPINFO*)(bfh+1);
1355 /* Does not matter whether this is a coreheader or not, we only use
1356 * components which are in both
1359 This->desc.u.bmp.hbitmap = CreateDIBitmap(
1363 xbuf+bfh->bfOffBits,
1368 This->desc.picType = PICTYPE_BITMAP;
1369 OLEPictureImpl_SetBitmap(This);
1373 /*****************************************************
1374 * start of PNG-specific code
1375 * currently only supports colortype PNG_COLOR_TYPE_RGB
1377 #ifdef SONAME_LIBPNG
1384 static void png_stream_read_data(png_structp png_ptr, png_bytep data,
1387 png_io * io_ptr = png_ptr->io_ptr;
1389 if(length + io_ptr->position > io_ptr->size){
1390 length = io_ptr->size - io_ptr->position;
1393 memcpy(data, io_ptr->buff + io_ptr->position, length);
1395 io_ptr->position += length;
1398 static void *libpng_handle;
1399 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
1400 MAKE_FUNCPTR(png_create_read_struct);
1401 MAKE_FUNCPTR(png_create_info_struct);
1402 MAKE_FUNCPTR(png_set_read_fn);
1403 MAKE_FUNCPTR(png_read_info);
1404 MAKE_FUNCPTR(png_read_image);
1405 MAKE_FUNCPTR(png_get_rowbytes);
1406 MAKE_FUNCPTR(png_set_bgr);
1407 MAKE_FUNCPTR(png_destroy_read_struct);
1408 MAKE_FUNCPTR(png_set_palette_to_rgb);
1409 MAKE_FUNCPTR(png_read_update_info);
1410 MAKE_FUNCPTR(png_get_tRNS);
1411 MAKE_FUNCPTR(png_get_PLTE);
1412 MAKE_FUNCPTR(png_set_expand);
1415 static void *load_libpng(void)
1417 if((libpng_handle = wine_dlopen(SONAME_LIBPNG, RTLD_NOW, NULL, 0)) != NULL) {
1419 #define LOAD_FUNCPTR(f) \
1420 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
1421 libpng_handle = NULL; \
1424 LOAD_FUNCPTR(png_create_read_struct);
1425 LOAD_FUNCPTR(png_create_info_struct);
1426 LOAD_FUNCPTR(png_set_read_fn);
1427 LOAD_FUNCPTR(png_read_info);
1428 LOAD_FUNCPTR(png_read_image);
1429 LOAD_FUNCPTR(png_get_rowbytes);
1430 LOAD_FUNCPTR(png_set_bgr);
1431 LOAD_FUNCPTR(png_destroy_read_struct);
1432 LOAD_FUNCPTR(png_set_palette_to_rgb);
1433 LOAD_FUNCPTR(png_read_update_info);
1434 LOAD_FUNCPTR(png_get_tRNS);
1435 LOAD_FUNCPTR(png_get_PLTE);
1436 LOAD_FUNCPTR(png_set_expand);
1440 return libpng_handle;
1442 #endif /* SONAME_LIBPNG */
1444 static HRESULT OLEPictureImpl_LoadPNG(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1446 #ifdef SONAME_LIBPNG
1448 png_structp png_ptr = NULL;
1449 png_infop info_ptr = NULL;
1450 INT row, rowsize, height, width, num_trans, i, j;
1451 png_bytep* row_pointers = NULL;
1452 png_bytep pngdata = NULL;
1453 BITMAPINFOHEADER bmi;
1454 HDC hdcref = NULL, hdcXor, hdcMask;
1458 png_color_16p trans_values;
1459 COLORREF white = RGB(255, 255, 255), black = RGB(0, 0, 0);
1460 HBITMAP hbmoldXor, hbmoldMask, temp;
1462 if(!libpng_handle) {
1463 if(!load_libpng()) {
1464 ERR("Failed reading PNG because unable to find %s\n",SONAME_LIBPNG);
1473 png_ptr = ppng_create_read_struct(PNG_LIBPNG_VER_STRING,
1476 if(setjmp(png_jmpbuf(png_ptr))){
1477 TRACE("Error in libpng\n");
1482 info_ptr = ppng_create_info_struct(png_ptr);
1483 ppng_set_read_fn(png_ptr, &io, png_stream_read_data);
1484 ppng_read_info(png_ptr, info_ptr);
1486 if(!(png_ptr->color_type == PNG_COLOR_TYPE_RGB ||
1487 png_ptr->color_type == PNG_COLOR_TYPE_PALETTE ||
1488 png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)){
1489 FIXME("Unsupported .PNG type: %d\n", png_ptr->color_type);
1494 transparency = (ppng_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, &trans_values)
1497 /* sets format from anything to RGBA */
1498 ppng_set_expand(png_ptr);
1499 /* sets format to BGRA */
1500 ppng_set_bgr(png_ptr);
1502 ppng_read_update_info(png_ptr, info_ptr);
1504 rowsize = ppng_get_rowbytes(png_ptr, info_ptr);
1505 /* align rowsize to 4-byte boundary */
1506 rowsize = (rowsize + 3) & ~3;
1507 height = info_ptr->height;
1508 width = info_ptr->width;
1510 pngdata = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, height * rowsize);
1511 row_pointers = HeapAlloc(GetProcessHeap(), 0, height * (sizeof(VOID *)));
1513 if(!pngdata || !row_pointers){
1518 for (row = 0; row < height; row++){
1519 row_pointers[row] = pngdata + row * rowsize;
1522 ppng_read_image(png_ptr, row_pointers);
1524 bmi.biSize = sizeof(bmi);
1525 bmi.biWidth = width;
1526 bmi.biHeight = -height;
1528 bmi.biBitCount = info_ptr->channels * 8;
1529 bmi.biCompression = BI_RGB;
1530 bmi.biSizeImage = height * rowsize;
1531 bmi.biXPelsPerMeter = 0;
1532 bmi.biYPelsPerMeter = 0;
1534 bmi.biClrImportant = 0;
1537 This->desc.u.bmp.hbitmap = CreateDIBitmap(
1546 /* only fully-transparent alpha is handled */
1547 if((info_ptr->channels != 4) || !transparency){
1548 ReleaseDC(0, hdcref);
1552 This->hbmXor = CreateDIBitmap(
1561 /* set transparent pixels to black, all others to white */
1562 for(i = 0; i < height; i++){
1563 for(j = 3; j < rowsize; j += 4){
1564 if(row_pointers[i][j] == 0)
1565 *((DWORD*)(&row_pointers[i][j - 3])) = black;
1567 *((DWORD*)(&row_pointers[i][j - 3])) = white;
1571 temp = CreateDIBitmap(
1580 ReleaseDC(0, hdcref);
1582 This->hbmMask = CreateBitmap(width,-height,1,1,NULL);
1583 hdcXor = CreateCompatibleDC(NULL);
1584 hdcMask = CreateCompatibleDC(NULL);
1586 hbmoldXor = SelectObject(hdcXor,temp);
1587 hbmoldMask = SelectObject(hdcMask,This->hbmMask);
1588 SetBkColor(hdcXor,black);
1589 BitBlt(hdcMask,0,0,width,height,hdcXor,0,0,SRCCOPY);
1591 SelectObject(hdcXor,This->hbmXor);
1594 SetTextColor(hdcXor,white);
1595 SetBkColor(hdcXor,black);
1596 BitBlt(hdcXor,0,0,width,height,hdcMask,0,0,SRCAND);
1598 SelectObject(hdcXor,hbmoldXor);
1599 SelectObject(hdcMask,hbmoldMask);
1605 This->desc.picType = PICTYPE_BITMAP;
1606 OLEPictureImpl_SetBitmap(This);
1611 ppng_destroy_read_struct(&png_ptr,
1612 (info_ptr ? &info_ptr : (png_infopp) NULL),
1614 HeapFree(GetProcessHeap(), 0, row_pointers);
1615 HeapFree(GetProcessHeap(), 0, pngdata);
1617 #else /* SONAME_LIBPNG */
1618 ERR("Trying to load PNG picture, but PNG supported not compiled in.\n");
1623 /*****************************************************
1624 * start of Icon-specific code
1627 static HRESULT OLEPictureImpl_LoadIcon(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1630 CURSORICONFILEDIR *cifd = (CURSORICONFILEDIR*)xbuf;
1635 FIXME("icon.idReserved=%d\n",cifd->idReserved);
1636 FIXME("icon.idType=%d\n",cifd->idType);
1637 FIXME("icon.idCount=%d\n",cifd->idCount);
1639 for (i=0;i<cifd->idCount;i++) {
1640 FIXME("[%d] width %d\n",i,cifd->idEntries[i].bWidth);
1641 FIXME("[%d] height %d\n",i,cifd->idEntries[i].bHeight);
1642 FIXME("[%d] bColorCount %d\n",i,cifd->idEntries[i].bColorCount);
1643 FIXME("[%d] bReserved %d\n",i,cifd->idEntries[i].bReserved);
1644 FIXME("[%d] xHotspot %d\n",i,cifd->idEntries[i].xHotspot);
1645 FIXME("[%d] yHotspot %d\n",i,cifd->idEntries[i].yHotspot);
1646 FIXME("[%d] dwDIBSize %d\n",i,cifd->idEntries[i].dwDIBSize);
1647 FIXME("[%d] dwDIBOffset %d\n",i,cifd->idEntries[i].dwDIBOffset);
1651 /* If we have more than one icon, try to find the best.
1652 * this currently means '32 pixel wide'.
1654 if (cifd->idCount!=1) {
1655 for (i=0;i<cifd->idCount;i++) {
1656 if (cifd->idEntries[i].bWidth == 32)
1659 if (i==cifd->idCount) i=0;
1662 hicon = CreateIconFromResourceEx(
1663 xbuf+cifd->idEntries[i].dwDIBOffset,
1664 cifd->idEntries[i].dwDIBSize,
1667 cifd->idEntries[i].bWidth,
1668 cifd->idEntries[i].bHeight,
1672 FIXME("CreateIcon failed.\n");
1675 This->desc.picType = PICTYPE_ICON;
1676 This->desc.u.icon.hicon = hicon;
1677 This->origWidth = cifd->idEntries[i].bWidth;
1678 This->origHeight = cifd->idEntries[i].bHeight;
1679 hdcRef = CreateCompatibleDC(0);
1680 This->himetricWidth =(cifd->idEntries[i].bWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
1681 This->himetricHeight=(cifd->idEntries[i].bHeight*2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
1687 static HRESULT OLEPictureImpl_LoadMetafile(OLEPictureImpl *This,
1688 const BYTE *data, ULONG size)
1693 /* SetMetaFileBitsEx performs data check on its own */
1694 hmf = SetMetaFileBitsEx(size, data);
1697 This->desc.picType = PICTYPE_METAFILE;
1698 This->desc.u.wmf.hmeta = hmf;
1699 This->desc.u.wmf.xExt = 0;
1700 This->desc.u.wmf.yExt = 0;
1702 This->origWidth = 0;
1703 This->origHeight = 0;
1704 This->himetricWidth = 0;
1705 This->himetricHeight = 0;
1710 hemf = SetEnhMetaFileBits(size, data);
1711 if (!hemf) return E_FAIL;
1713 This->desc.picType = PICTYPE_ENHMETAFILE;
1714 This->desc.u.emf.hemf = hemf;
1716 This->origWidth = 0;
1717 This->origHeight = 0;
1718 This->himetricWidth = 0;
1719 This->himetricHeight = 0;
1724 static HRESULT OLEPictureImpl_LoadAPM(OLEPictureImpl *This,
1725 const BYTE *data, ULONG size)
1727 APM_HEADER *header = (APM_HEADER *)data;
1730 if (size < sizeof(APM_HEADER))
1732 if (header->key != 0x9ac6cdd7)
1735 if ((hr = OLEPictureImpl_LoadMetafile(This, data + sizeof(APM_HEADER), size - sizeof(*header))) != S_OK)
1738 This->himetricWidth = MulDiv((INT)header->right - header->left, 2540, header->inch);
1739 This->himetricHeight = MulDiv((INT)header->bottom - header->top, 2540, header->inch);
1743 /************************************************************************
1744 * OLEPictureImpl_IPersistStream_Load (IUnknown)
1746 * Loads the binary data from the IStream. Starts at current position.
1747 * There appears to be an 2 DWORD header:
1751 * Currently implemented: BITMAP, ICON, JPEG, GIF, WMF, EMF
1753 static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface,IStream*pStm) {
1754 HRESULT hr = E_FAIL;
1755 BOOL headerisdata = FALSE;
1756 BOOL statfailed = FALSE;
1757 ULONG xread, toread;
1763 OLEPictureImpl *This = impl_from_IPersistStream(iface);
1765 TRACE("(%p,%p)\n",This,pStm);
1767 /****************************************************************************************
1768 * Part 1: Load the data
1770 /* Sometimes we have a header, sometimes we don't. Apply some guesses to find
1771 * out whether we do.
1773 * UPDATE: the IStream can be mapped to a plain file instead of a stream in a
1774 * compound file. This may explain most, if not all, of the cases of "no
1775 * header", and the header validation should take this into account.
1776 * At least in Visual Basic 6, resource streams, valid headers are
1777 * header[0] == "lt\0\0",
1778 * header[1] == length_of_stream.
1780 * Also handle streams where we do not have a working "Stat" method by
1781 * reading all data until the end of the stream.
1783 hr=IStream_Stat(pStm,&statstg,STATFLAG_NONAME);
1785 TRACE("stat failed with hres %x, proceeding to read all data.\n",hr);
1787 /* we will read at least 8 byte ... just right below */
1788 statstg.cbSize.QuadPart = 8;
1793 headerisdata = FALSE;
1795 hr=IStream_Read(pStm,header,8,&xread);
1796 if (hr || xread!=8) {
1797 FIXME("Failure while reading picture header (hr is %x, nread is %d).\n",hr,xread);
1800 headerread += xread;
1803 if (!memcmp(&(header[0]),"lt\0\0", 4) && (statfailed || (header[1] + headerread <= statstg.cbSize.QuadPart))) {
1804 if (toread != 0 && toread != header[1])
1805 FIXME("varying lengths of image data (prev=%u curr=%u), only last one will be used\n",
1808 if (toread == 0) break;
1810 if (!memcmp(&(header[0]), "GIF8", 4) || /* GIF header */
1811 !memcmp(&(header[0]), "BM", 2) || /* BMP header */
1812 !memcmp(&(header[0]), "\xff\xd8", 2) || /* JPEG header */
1813 (header[0] == EMR_HEADER) || /* EMF header */
1814 (header[1] > statstg.cbSize.QuadPart)|| /* invalid size */
1816 ) {/* Found start of bitmap data */
1817 headerisdata = TRUE;
1819 toread = statstg.cbSize.QuadPart-8;
1823 FIXME("Unknown stream header magic: %08x\n", header[0]);
1827 } while (!headerisdata);
1829 if (statfailed) { /* we don't know the size ... read all we get */
1831 int origsize = sizeinc;
1834 TRACE("Reading all data from stream.\n");
1835 xbuf = HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, origsize);
1837 memcpy (xbuf, &header, 8);
1839 while (xread < origsize) {
1840 hr = IStream_Read(pStm,xbuf+xread,origsize-xread,&nread);
1845 if (!nread || hr) /* done, or error */
1847 if (xread == origsize) {
1848 origsize += sizeinc;
1849 sizeinc = 2*sizeinc; /* exponential increase */
1850 xbuf = HeapReAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, xbuf, origsize);
1854 TRACE("hr in no-stat loader case is %08x\n", hr);
1855 TRACE("loaded %d bytes.\n", xread);
1856 This->datalen = xread;
1859 This->datalen = toread+(headerisdata?8:0);
1860 xbuf = This->data = HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, This->datalen);
1863 memcpy (xbuf, &header, 8);
1865 while (xread < This->datalen) {
1867 hr = IStream_Read(pStm,xbuf+xread,This->datalen-xread,&nread);
1872 if (xread != This->datalen)
1873 FIXME("Could only read %d of %d bytes out of stream?\n",xread,This->datalen);
1875 if (This->datalen == 0) { /* Marks the "NONE" picture */
1876 This->desc.picType = PICTYPE_NONE;
1881 /****************************************************************************************
1882 * Part 2: Process the loaded data
1885 magic = xbuf[0] + (xbuf[1]<<8);
1886 This->loadtime_format = magic;
1889 case 0x4947: /* GIF */
1890 hr = OLEPictureImpl_LoadGif(This, xbuf, xread);
1892 case 0xd8ff: /* JPEG */
1893 hr = OLEPictureImpl_LoadJpeg(This, xbuf, xread);
1895 case 0x4d42: /* Bitmap */
1896 hr = OLEPictureImpl_LoadDIB(This, xbuf, xread);
1898 case 0x5089: /* PNG */
1899 hr = OLEPictureImpl_LoadPNG(This, xbuf, xread);
1901 case 0xcdd7: /* APM */
1902 hr = OLEPictureImpl_LoadAPM(This, xbuf, xread);
1904 case 0x0000: { /* ICON , first word is dwReserved */
1905 hr = OLEPictureImpl_LoadIcon(This, xbuf, xread);
1912 /* let's see if it's a metafile */
1913 hr = OLEPictureImpl_LoadMetafile(This, xbuf, xread);
1914 if (hr == S_OK) break;
1916 FIXME("Unknown magic %04x, %d read bytes:\n",magic,xread);
1918 for (i=0;i<xread+8;i++) {
1919 if (i<8) MESSAGE("%02x ",((unsigned char*)&header)[i]);
1920 else MESSAGE("%02x ",xbuf[i-8]);
1921 if (i % 10 == 9) MESSAGE("\n");
1927 This->bIsDirty = FALSE;
1929 /* FIXME: this notify is not really documented */
1931 OLEPicture_SendNotify(This,DISPID_PICT_TYPE);
1935 static int serializeBMP(HBITMAP hBitmap, void ** ppBuffer, unsigned int * pLength)
1939 BITMAPINFO * pInfoBitmap;
1940 int iNumPaletteEntries;
1941 unsigned char * pPixelData;
1942 BITMAPFILEHEADER * pFileHeader;
1943 BITMAPINFO * pInfoHeader;
1945 pInfoBitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
1946 sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1948 /* Find out bitmap size and padded length */
1950 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
1951 GetDIBits(hDC, hBitmap, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
1953 /* Fetch bitmap palette & pixel data */
1955 pPixelData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, pInfoBitmap->bmiHeader.biSizeImage);
1956 GetDIBits(hDC, hBitmap, 0, pInfoBitmap->bmiHeader.biHeight, pPixelData, pInfoBitmap, DIB_RGB_COLORS);
1958 /* Calculate the total length required for the BMP data */
1959 if (pInfoBitmap->bmiHeader.biClrUsed != 0) {
1960 iNumPaletteEntries = pInfoBitmap->bmiHeader.biClrUsed;
1961 if (iNumPaletteEntries > 256) iNumPaletteEntries = 256;
1963 if (pInfoBitmap->bmiHeader.biBitCount <= 8)
1964 iNumPaletteEntries = 1 << pInfoBitmap->bmiHeader.biBitCount;
1966 iNumPaletteEntries = 0;
1969 sizeof(BITMAPFILEHEADER) +
1970 sizeof(BITMAPINFOHEADER) +
1971 iNumPaletteEntries * sizeof(RGBQUAD) +
1972 pInfoBitmap->bmiHeader.biSizeImage;
1973 *ppBuffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *pLength);
1975 /* Fill the BITMAPFILEHEADER */
1976 pFileHeader = (BITMAPFILEHEADER *)(*ppBuffer);
1977 pFileHeader->bfType = 0x4d42;
1978 pFileHeader->bfSize = *pLength;
1979 pFileHeader->bfOffBits =
1980 sizeof(BITMAPFILEHEADER) +
1981 sizeof(BITMAPINFOHEADER) +
1982 iNumPaletteEntries * sizeof(RGBQUAD);
1984 /* Fill the BITMAPINFOHEADER and the palette data */
1985 pInfoHeader = (BITMAPINFO *)((unsigned char *)(*ppBuffer) + sizeof(BITMAPFILEHEADER));
1986 memcpy(pInfoHeader, pInfoBitmap, sizeof(BITMAPINFOHEADER) + iNumPaletteEntries * sizeof(RGBQUAD));
1988 (unsigned char *)(*ppBuffer) +
1989 sizeof(BITMAPFILEHEADER) +
1990 sizeof(BITMAPINFOHEADER) +
1991 iNumPaletteEntries * sizeof(RGBQUAD),
1992 pPixelData, pInfoBitmap->bmiHeader.biSizeImage);
1995 HeapFree(GetProcessHeap(), 0, pPixelData);
1996 HeapFree(GetProcessHeap(), 0, pInfoBitmap);
2000 static int serializeIcon(HICON hIcon, void ** ppBuffer, unsigned int * pLength)
2005 *ppBuffer = NULL; *pLength = 0;
2006 if (GetIconInfo(hIcon, &infoIcon)) {
2008 BITMAPINFO * pInfoBitmap;
2009 unsigned char * pIconData = NULL;
2010 unsigned int iDataSize = 0;
2012 pInfoBitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
2014 /* Find out icon size */
2016 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
2017 GetDIBits(hDC, infoIcon.hbmColor, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
2019 /* Auxiliary pointers */
2020 CURSORICONFILEDIR * pIconDir;
2021 CURSORICONFILEDIRENTRY * pIconEntry;
2022 BITMAPINFOHEADER * pIconBitmapHeader;
2023 unsigned int iOffsetPalette;
2024 unsigned int iOffsetColorData;
2025 unsigned int iOffsetMaskData;
2027 unsigned int iLengthScanLineColor;
2028 unsigned int iLengthScanLineMask;
2029 unsigned int iNumEntriesPalette;
2031 iLengthScanLineMask = ((pInfoBitmap->bmiHeader.biWidth + 31) >> 5) << 2;
2032 iLengthScanLineColor = ((pInfoBitmap->bmiHeader.biWidth * pInfoBitmap->bmiHeader.biBitCount + 31) >> 5) << 2;
2034 FIXME("DEBUG: bitmap size is %d x %d\n",
2035 pInfoBitmap->bmiHeader.biWidth,
2036 pInfoBitmap->bmiHeader.biHeight);
2037 FIXME("DEBUG: bitmap bpp is %d\n",
2038 pInfoBitmap->bmiHeader.biBitCount);
2039 FIXME("DEBUG: bitmap nplanes is %d\n",
2040 pInfoBitmap->bmiHeader.biPlanes);
2041 FIXME("DEBUG: bitmap biSizeImage is %u\n",
2042 pInfoBitmap->bmiHeader.biSizeImage);
2044 /* Let's start with one CURSORICONFILEDIR and one CURSORICONFILEDIRENTRY */
2045 iDataSize += 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY) + sizeof(BITMAPINFOHEADER);
2046 pIconData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, iDataSize);
2048 /* Fill out the CURSORICONFILEDIR */
2049 pIconDir = (CURSORICONFILEDIR *)pIconData;
2050 pIconDir->idType = 1;
2051 pIconDir->idCount = 1;
2053 /* Fill out the CURSORICONFILEDIRENTRY */
2054 pIconEntry = (CURSORICONFILEDIRENTRY *)(pIconData + 3 * sizeof(WORD));
2055 pIconEntry->bWidth = (unsigned char)pInfoBitmap->bmiHeader.biWidth;
2056 pIconEntry->bHeight = (unsigned char)pInfoBitmap->bmiHeader.biHeight;
2057 pIconEntry->bColorCount =
2058 (pInfoBitmap->bmiHeader.biBitCount < 8)
2059 ? 1 << pInfoBitmap->bmiHeader.biBitCount
2061 pIconEntry->xHotspot = pInfoBitmap->bmiHeader.biPlanes;
2062 pIconEntry->yHotspot = pInfoBitmap->bmiHeader.biBitCount;
2063 pIconEntry->dwDIBSize = 0;
2064 pIconEntry->dwDIBOffset = 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY);
2066 /* Fill out the BITMAPINFOHEADER */
2067 pIconBitmapHeader = (BITMAPINFOHEADER *)(pIconData + 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
2068 memcpy(pIconBitmapHeader, &pInfoBitmap->bmiHeader, sizeof(BITMAPINFOHEADER));
2070 /* Find out whether a palette exists for the bitmap */
2071 if ( (pInfoBitmap->bmiHeader.biBitCount == 16 && pInfoBitmap->bmiHeader.biCompression == BI_RGB)
2072 || (pInfoBitmap->bmiHeader.biBitCount == 24)
2073 || (pInfoBitmap->bmiHeader.biBitCount == 32 && pInfoBitmap->bmiHeader.biCompression == BI_RGB)) {
2074 iNumEntriesPalette = pInfoBitmap->bmiHeader.biClrUsed;
2075 if (iNumEntriesPalette > 256) iNumEntriesPalette = 256;
2076 } else if ((pInfoBitmap->bmiHeader.biBitCount == 16 || pInfoBitmap->bmiHeader.biBitCount == 32)
2077 && pInfoBitmap->bmiHeader.biCompression == BI_BITFIELDS) {
2078 iNumEntriesPalette = 3;
2079 } else if (pInfoBitmap->bmiHeader.biBitCount <= 8) {
2080 iNumEntriesPalette = 1 << pInfoBitmap->bmiHeader.biBitCount;
2082 iNumEntriesPalette = 0;
2085 /* Add bitmap size and header size to icon data size. */
2086 iOffsetPalette = iDataSize;
2087 iDataSize += iNumEntriesPalette * sizeof(DWORD);
2088 iOffsetColorData = iDataSize;
2089 iDataSize += pIconBitmapHeader->biSizeImage;
2090 iOffsetMaskData = iDataSize;
2091 iDataSize += pIconBitmapHeader->biHeight * iLengthScanLineMask;
2092 pIconBitmapHeader->biSizeImage += pIconBitmapHeader->biHeight * iLengthScanLineMask;
2093 pIconBitmapHeader->biHeight *= 2;
2094 pIconData = HeapReAlloc(GetProcessHeap(), 0, pIconData, iDataSize);
2095 pIconEntry = (CURSORICONFILEDIRENTRY *)(pIconData + 3 * sizeof(WORD));
2096 pIconBitmapHeader = (BITMAPINFOHEADER *)(pIconData + 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
2097 pIconEntry->dwDIBSize = iDataSize - (3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
2099 /* Get the actual bitmap data from the icon bitmap */
2100 GetDIBits(hDC, infoIcon.hbmColor, 0, pInfoBitmap->bmiHeader.biHeight,
2101 pIconData + iOffsetColorData, pInfoBitmap, DIB_RGB_COLORS);
2102 if (iNumEntriesPalette > 0) {
2103 memcpy(pIconData + iOffsetPalette, pInfoBitmap->bmiColors,
2104 iNumEntriesPalette * sizeof(RGBQUAD));
2107 /* Reset all values so that GetDIBits call succeeds */
2108 memset(pIconData + iOffsetMaskData, 0, iDataSize - iOffsetMaskData);
2109 memset(pInfoBitmap, 0, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
2110 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
2112 if (!(GetDIBits(hDC, infoIcon.hbmMask, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS)
2113 && GetDIBits(hDC, infoIcon.hbmMask, 0, pIconEntry->bHeight,
2114 pIconData + iOffsetMaskData, pInfoBitmap, DIB_RGB_COLORS))) {
2116 printf("ERROR: unable to get bitmap mask (error %u)\n",
2121 GetDIBits(hDC, infoIcon.hbmMask, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
2122 GetDIBits(hDC, infoIcon.hbmMask, 0, pIconEntry->bHeight, pIconData + iOffsetMaskData, pInfoBitmap, DIB_RGB_COLORS);
2124 /* Write out everything produced so far to the stream */
2125 *ppBuffer = pIconData; *pLength = iDataSize;
2129 printf("ERROR: unable to get bitmap information via GetDIBits() (error %u)\n",
2134 Remarks (from MSDN entry on GetIconInfo):
2136 GetIconInfo creates bitmaps for the hbmMask and hbmColor
2137 members of ICONINFO. The calling application must manage
2138 these bitmaps and delete them when they are no longer
2141 if (hDC) ReleaseDC(0, hDC);
2142 DeleteObject(infoIcon.hbmMask);
2143 if (infoIcon.hbmColor) DeleteObject(infoIcon.hbmColor);
2144 HeapFree(GetProcessHeap(), 0, pInfoBitmap);
2146 printf("ERROR: Unable to get icon information (error %u)\n",
2152 static HRESULT WINAPI OLEPictureImpl_Save(
2153 IPersistStream* iface,IStream*pStm,BOOL fClearDirty)
2155 HRESULT hResult = E_NOTIMPL;
2157 unsigned int iDataSize;
2159 int iSerializeResult = 0;
2160 OLEPictureImpl *This = impl_from_IPersistStream(iface);
2162 TRACE("%p %p %d\n", This, pStm, fClearDirty);
2164 switch (This->desc.picType) {
2166 if (This->bIsDirty || !This->data) {
2167 if (!serializeIcon(This->desc.u.icon.hicon, &pIconData, &iDataSize)) {
2168 ERR("(%p,%p,%d), serializeIcon() failed\n", This, pStm, fClearDirty);
2172 HeapFree(GetProcessHeap(), 0, This->data);
2173 This->data = pIconData;
2174 This->datalen = iDataSize;
2176 if (This->loadtime_magic != 0xdeadbeef) {
2179 header[0] = This->loadtime_magic;
2180 header[1] = This->datalen;
2181 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2183 IStream_Write(pStm, This->data, This->datalen, &dummy);
2187 case PICTYPE_BITMAP:
2188 if (This->bIsDirty) {
2189 switch (This->keepOrigFormat ? This->loadtime_format : 0x4d42) {
2191 iSerializeResult = serializeBMP(This->desc.u.bmp.hbitmap, &pIconData, &iDataSize);
2194 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format JPEG) not implemented!\n",This,pStm,fClearDirty);
2197 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format GIF) not implemented!\n",This,pStm,fClearDirty);
2200 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format PNG) not implemented!\n",This,pStm,fClearDirty);
2203 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format UNKNOWN, using BMP?) not implemented!\n",This,pStm,fClearDirty);
2206 if (iSerializeResult) {
2208 if (This->loadtime_magic != 0xdeadbeef) {
2213 header[0] = (This->loadtime_magic != 0xdeadbeef) ? This->loadtime_magic : 0x0000746c;
2214 header[1] = iDataSize;
2215 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2217 IStream_Write(pStm, pIconData, iDataSize, &dummy);
2219 HeapFree(GetProcessHeap(), 0, This->data);
2220 This->data = pIconData;
2221 This->datalen = iDataSize;
2226 if (This->loadtime_magic != 0xdeadbeef) {
2231 header[0] = (This->loadtime_magic != 0xdeadbeef) ? This->loadtime_magic : 0x0000746c;
2232 header[1] = This->datalen;
2233 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2235 IStream_Write(pStm, This->data, This->datalen, &dummy);
2239 case PICTYPE_METAFILE:
2240 FIXME("(%p,%p,%d), PICTYPE_METAFILE not implemented!\n",This,pStm,fClearDirty);
2242 case PICTYPE_ENHMETAFILE:
2243 FIXME("(%p,%p,%d),PICTYPE_ENHMETAFILE not implemented!\n",This,pStm,fClearDirty);
2246 FIXME("(%p,%p,%d), [unknown type] not implemented!\n",This,pStm,fClearDirty);
2249 if (hResult == S_OK && fClearDirty) This->bIsDirty = FALSE;
2253 static HRESULT WINAPI OLEPictureImpl_GetSizeMax(
2254 IPersistStream* iface,ULARGE_INTEGER*pcbSize)
2256 OLEPictureImpl *This = impl_from_IPersistStream(iface);
2257 FIXME("(%p,%p),stub!\n",This,pcbSize);
2262 /************************************************************************
2266 /************************************************************************
2267 * OLEPictureImpl_IDispatch_QueryInterface (IUnknown)
2269 * See Windows documentation for more details on IUnknown methods.
2271 static HRESULT WINAPI OLEPictureImpl_IDispatch_QueryInterface(
2276 OLEPictureImpl *This = impl_from_IDispatch(iface);
2278 return IPicture_QueryInterface((IPicture *)This, riid, ppvoid);
2281 /************************************************************************
2282 * OLEPictureImpl_IDispatch_AddRef (IUnknown)
2284 * See Windows documentation for more details on IUnknown methods.
2286 static ULONG WINAPI OLEPictureImpl_IDispatch_AddRef(
2289 OLEPictureImpl *This = impl_from_IDispatch(iface);
2291 return IPicture_AddRef((IPicture *)This);
2294 /************************************************************************
2295 * OLEPictureImpl_IDispatch_Release (IUnknown)
2297 * See Windows documentation for more details on IUnknown methods.
2299 static ULONG WINAPI OLEPictureImpl_IDispatch_Release(
2302 OLEPictureImpl *This = impl_from_IDispatch(iface);
2304 return IPicture_Release((IPicture *)This);
2307 /************************************************************************
2308 * OLEPictureImpl_GetTypeInfoCount (IDispatch)
2310 * See Windows documentation for more details on IDispatch methods.
2312 static HRESULT WINAPI OLEPictureImpl_GetTypeInfoCount(
2314 unsigned int* pctinfo)
2316 TRACE("(%p)\n", pctinfo);
2323 /************************************************************************
2324 * OLEPictureImpl_GetTypeInfo (IDispatch)
2326 * See Windows documentation for more details on IDispatch methods.
2328 static HRESULT WINAPI OLEPictureImpl_GetTypeInfo(
2332 ITypeInfo** ppTInfo)
2334 static const WCHAR stdole2tlb[] = {'s','t','d','o','l','e','2','.','t','l','b',0};
2338 TRACE("(iTInfo=%d, lcid=%04x, %p)\n", iTInfo, (int)lcid, ppTInfo);
2343 hres = LoadTypeLib(stdole2tlb, &tl);
2346 ERR("Could not load stdole2.tlb\n");
2350 hres = ITypeLib_GetTypeInfoOfGuid(tl, &IID_IPictureDisp, ppTInfo);
2352 ERR("Did not get IPictureDisp typeinfo from typelib, hres %x\n", hres);
2357 /************************************************************************
2358 * OLEPictureImpl_GetIDsOfNames (IDispatch)
2360 * See Windows documentation for more details on IDispatch methods.
2362 static HRESULT WINAPI OLEPictureImpl_GetIDsOfNames(
2365 LPOLESTR* rgszNames,
2375 /************************************************************************
2376 * OLEPictureImpl_Invoke (IDispatch)
2378 * See Windows documentation for more details on IDispatch methods.
2380 static HRESULT WINAPI OLEPictureImpl_Invoke(
2382 DISPID dispIdMember,
2386 DISPPARAMS* pDispParams,
2387 VARIANT* pVarResult,
2388 EXCEPINFO* pExepInfo,
2391 OLEPictureImpl *This = impl_from_IDispatch(iface);
2393 /* validate parameters */
2395 if (!IsEqualIID(riid, &IID_NULL))
2397 ERR("riid was %s instead of IID_NULL\n", debugstr_guid(riid));
2398 return DISP_E_UNKNOWNNAME;
2403 ERR("null pDispParams not allowed\n");
2404 return DISP_E_PARAMNOTOPTIONAL;
2407 if (wFlags & DISPATCH_PROPERTYGET)
2409 if (pDispParams->cArgs != 0)
2411 ERR("param count for DISPATCH_PROPERTYGET was %d instead of 0\n", pDispParams->cArgs);
2412 return DISP_E_BADPARAMCOUNT;
2416 ERR("null pVarResult not allowed when DISPATCH_PROPERTYGET specified\n");
2417 return DISP_E_PARAMNOTOPTIONAL;
2420 else if (wFlags & DISPATCH_PROPERTYPUT)
2422 if (pDispParams->cArgs != 1)
2424 ERR("param count for DISPATCH_PROPERTYPUT was %d instead of 1\n", pDispParams->cArgs);
2425 return DISP_E_BADPARAMCOUNT;
2429 switch (dispIdMember)
2431 case DISPID_PICT_HANDLE:
2432 if (wFlags & DISPATCH_PROPERTYGET)
2434 TRACE("DISPID_PICT_HANDLE\n");
2435 V_VT(pVarResult) = VT_I4;
2436 return IPicture_get_Handle((IPicture *)&This->lpVtbl, &V_UINT(pVarResult));
2439 case DISPID_PICT_HPAL:
2440 if (wFlags & DISPATCH_PROPERTYGET)
2442 TRACE("DISPID_PICT_HPAL\n");
2443 V_VT(pVarResult) = VT_I4;
2444 return IPicture_get_hPal((IPicture *)&This->lpVtbl, &V_UINT(pVarResult));
2446 else if (wFlags & DISPATCH_PROPERTYPUT)
2450 TRACE("DISPID_PICT_HPAL\n");
2452 VariantInit(&vararg);
2453 hr = VariantChangeTypeEx(&vararg, &pDispParams->rgvarg[0], lcid, 0, VT_I4);
2457 hr = IPicture_set_hPal((IPicture *)&This->lpVtbl, V_I4(&vararg));
2459 VariantClear(&vararg);
2463 case DISPID_PICT_TYPE:
2464 if (wFlags & DISPATCH_PROPERTYGET)
2466 TRACE("DISPID_PICT_TYPE\n");
2467 V_VT(pVarResult) = VT_I2;
2468 return OLEPictureImpl_get_Type((IPicture *)&This->lpVtbl, &V_I2(pVarResult));
2471 case DISPID_PICT_WIDTH:
2472 if (wFlags & DISPATCH_PROPERTYGET)
2474 TRACE("DISPID_PICT_WIDTH\n");
2475 V_VT(pVarResult) = VT_I4;
2476 return IPicture_get_Width((IPicture *)&This->lpVtbl, &V_I4(pVarResult));
2479 case DISPID_PICT_HEIGHT:
2480 if (wFlags & DISPATCH_PROPERTYGET)
2482 TRACE("DISPID_PICT_HEIGHT\n");
2483 V_VT(pVarResult) = VT_I4;
2484 return IPicture_get_Height((IPicture *)&This->lpVtbl, &V_I4(pVarResult));
2489 ERR("invalid dispid 0x%x or wFlags 0x%x\n", dispIdMember, wFlags);
2490 return DISP_E_MEMBERNOTFOUND;
2494 static const IPictureVtbl OLEPictureImpl_VTable =
2496 OLEPictureImpl_QueryInterface,
2497 OLEPictureImpl_AddRef,
2498 OLEPictureImpl_Release,
2499 OLEPictureImpl_get_Handle,
2500 OLEPictureImpl_get_hPal,
2501 OLEPictureImpl_get_Type,
2502 OLEPictureImpl_get_Width,
2503 OLEPictureImpl_get_Height,
2504 OLEPictureImpl_Render,
2505 OLEPictureImpl_set_hPal,
2506 OLEPictureImpl_get_CurDC,
2507 OLEPictureImpl_SelectPicture,
2508 OLEPictureImpl_get_KeepOriginalFormat,
2509 OLEPictureImpl_put_KeepOriginalFormat,
2510 OLEPictureImpl_PictureChanged,
2511 OLEPictureImpl_SaveAsFile,
2512 OLEPictureImpl_get_Attributes
2515 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable =
2517 OLEPictureImpl_IDispatch_QueryInterface,
2518 OLEPictureImpl_IDispatch_AddRef,
2519 OLEPictureImpl_IDispatch_Release,
2520 OLEPictureImpl_GetTypeInfoCount,
2521 OLEPictureImpl_GetTypeInfo,
2522 OLEPictureImpl_GetIDsOfNames,
2523 OLEPictureImpl_Invoke
2526 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable =
2528 OLEPictureImpl_IPersistStream_QueryInterface,
2529 OLEPictureImpl_IPersistStream_AddRef,
2530 OLEPictureImpl_IPersistStream_Release,
2531 OLEPictureImpl_GetClassID,
2532 OLEPictureImpl_IsDirty,
2533 OLEPictureImpl_Load,
2534 OLEPictureImpl_Save,
2535 OLEPictureImpl_GetSizeMax
2538 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable =
2540 OLEPictureImpl_IConnectionPointContainer_QueryInterface,
2541 OLEPictureImpl_IConnectionPointContainer_AddRef,
2542 OLEPictureImpl_IConnectionPointContainer_Release,
2543 OLEPictureImpl_EnumConnectionPoints,
2544 OLEPictureImpl_FindConnectionPoint
2547 /***********************************************************************
2548 * OleCreatePictureIndirect (OLEAUT32.419)
2550 HRESULT WINAPI OleCreatePictureIndirect(LPPICTDESC lpPictDesc, REFIID riid,
2551 BOOL fOwn, LPVOID *ppvObj )
2553 OLEPictureImpl* newPict = NULL;
2556 TRACE("(%p,%s,%d,%p)\n", lpPictDesc, debugstr_guid(riid), fOwn, ppvObj);
2567 * Try to construct a new instance of the class.
2569 newPict = OLEPictureImpl_Construct(lpPictDesc, fOwn);
2571 if (newPict == NULL)
2572 return E_OUTOFMEMORY;
2575 * Make sure it supports the interface required by the caller.
2577 hr = IPicture_QueryInterface((IPicture*)newPict, riid, ppvObj);
2580 * Release the reference obtained in the constructor. If
2581 * the QueryInterface was unsuccessful, it will free the class.
2583 IPicture_Release((IPicture*)newPict);
2589 /***********************************************************************
2590 * OleLoadPicture (OLEAUT32.418)
2592 HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
2593 REFIID riid, LPVOID *ppvObj )
2599 TRACE("(%p,%d,%d,%s,%p), partially implemented.\n",
2600 lpstream, lSize, fRunmode, debugstr_guid(riid), ppvObj);
2602 hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
2605 hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
2607 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2608 IPicture_Release(newpic);
2612 IPersistStream_Load(ps,lpstream);
2613 IPersistStream_Release(ps);
2614 hr = IPicture_QueryInterface(newpic,riid,ppvObj);
2616 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2617 IPicture_Release(newpic);
2621 /***********************************************************************
2622 * OleLoadPictureEx (OLEAUT32.401)
2624 HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
2625 REFIID riid, DWORD xsiz, DWORD ysiz, DWORD flags, LPVOID *ppvObj )
2631 FIXME("(%p,%d,%d,%s,x=%d,y=%d,f=%x,%p), partially implemented.\n",
2632 lpstream, lSize, fRunmode, debugstr_guid(riid), xsiz, ysiz, flags, ppvObj);
2634 hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
2637 hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
2639 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2640 IPicture_Release(newpic);
2644 IPersistStream_Load(ps,lpstream);
2645 IPersistStream_Release(ps);
2646 hr = IPicture_QueryInterface(newpic,riid,ppvObj);
2648 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2649 IPicture_Release(newpic);
2653 /***********************************************************************
2654 * OleLoadPicturePath (OLEAUT32.424)
2656 HRESULT WINAPI OleLoadPicturePath( LPOLESTR szURLorPath, LPUNKNOWN punkCaller,
2657 DWORD dwReserved, OLE_COLOR clrReserved, REFIID riid,
2660 static const WCHAR file[] = { 'f','i','l','e',':','/','/',0 };
2664 HGLOBAL hGlobal = NULL;
2665 DWORD dwBytesRead = 0;
2668 IPersistStream *pStream;
2671 TRACE("(%s,%p,%d,%08x,%s,%p): stub\n",
2672 debugstr_w(szURLorPath), punkCaller, dwReserved, clrReserved,
2673 debugstr_guid(riid), ppvRet);
2675 if (!ppvRet) return E_POINTER;
2677 if (strncmpW(szURLorPath, file, 7) == 0) {
2680 hFile = CreateFileW(szURLorPath, GENERIC_READ, 0, NULL, OPEN_EXISTING,
2682 if (hFile == INVALID_HANDLE_VALUE)
2683 return E_UNEXPECTED;
2685 dwFileSize = GetFileSize(hFile, NULL);
2686 if (dwFileSize != INVALID_FILE_SIZE )
2688 hGlobal = GlobalAlloc(GMEM_FIXED,dwFileSize);
2691 bRead = ReadFile(hFile, hGlobal, dwFileSize, &dwBytesRead, NULL);
2694 GlobalFree(hGlobal);
2702 return E_UNEXPECTED;
2704 hRes = CreateStreamOnHGlobal(hGlobal, TRUE, &stream);
2707 GlobalFree(hGlobal);
2714 hRes = CreateBindCtx(0, &pbc);
2715 if (SUCCEEDED(hRes))
2717 hRes = CreateURLMoniker(NULL, szURLorPath, &pmnk);
2718 if (SUCCEEDED(hRes))
2720 hRes = IMoniker_BindToStorage(pmnk, pbc, NULL, &IID_IStream, (LPVOID*)&stream);
2721 IMoniker_Release(pmnk);
2723 IBindCtx_Release(pbc);
2729 hRes = CoCreateInstance(&CLSID_StdPicture, punkCaller, CLSCTX_INPROC_SERVER,
2730 &IID_IPicture, (LPVOID*)&ipicture);
2732 IStream_Release(stream);
2736 hRes = IPicture_QueryInterface(ipicture, &IID_IPersistStream, (LPVOID*)&pStream);
2738 IStream_Release(stream);
2739 IPicture_Release(ipicture);
2743 hRes = IPersistStream_Load(pStream, stream);
2744 IPersistStream_Release(pStream);
2745 IStream_Release(stream);
2748 IPicture_Release(ipicture);
2752 hRes = IPicture_QueryInterface(ipicture,riid,ppvRet);
2754 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2756 IPicture_Release(ipicture);
2760 /*******************************************************************************
2761 * StdPic ClassFactory
2765 /* IUnknown fields */
2766 const IClassFactoryVtbl *lpVtbl;
2768 } IClassFactoryImpl;
2770 static HRESULT WINAPI
2771 SPCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
2772 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2774 FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
2775 return E_NOINTERFACE;
2779 SPCF_AddRef(LPCLASSFACTORY iface) {
2780 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2781 return InterlockedIncrement(&This->ref);
2784 static ULONG WINAPI SPCF_Release(LPCLASSFACTORY iface) {
2785 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2786 /* static class, won't be freed */
2787 return InterlockedDecrement(&This->ref);
2790 static HRESULT WINAPI SPCF_CreateInstance(
2791 LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
2793 /* Creates an uninitialized picture */
2794 return OleCreatePictureIndirect(NULL,riid,TRUE,ppobj);
2798 static HRESULT WINAPI SPCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
2799 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2800 FIXME("(%p)->(%d),stub!\n",This,dolock);
2804 static const IClassFactoryVtbl SPCF_Vtbl = {
2805 SPCF_QueryInterface,
2808 SPCF_CreateInstance,
2811 static IClassFactoryImpl STDPIC_CF = {&SPCF_Vtbl, 1 };
2813 void _get_STDPIC_CF(LPVOID *ppv) { *ppv = (LPVOID)&STDPIC_CF; }