2 * Enhanced metafile functions
3 * Copyright 1998 Douglas Ridgway
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * The enhanced format consists of the following elements:
25 * A table of handles to GDI objects
26 * An array of metafile records
30 * The standard format consists of a header and an array of metafile records.
35 #include "wine/port.h"
46 #include "gdi_private.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile
);
55 BOOL on_disk
; /* true if metafile is on disk */
58 static const struct emr_name
{
71 X(EMR_SETWINDOWEXTEX
),
72 X(EMR_SETWINDOWORGEX
),
73 X(EMR_SETVIEWPORTEXTEX
),
74 X(EMR_SETVIEWPORTORGEX
),
78 X(EMR_SETMAPPERFLAGS
),
81 X(EMR_SETPOLYFILLMODE
),
83 X(EMR_SETSTRETCHBLTMODE
),
85 X(EMR_SETCOLORADJUSTMENT
),
91 X(EMR_EXCLUDECLIPRECT
),
92 X(EMR_INTERSECTCLIPRECT
),
93 X(EMR_SCALEVIEWPORTEXTEX
),
94 X(EMR_SCALEWINDOWEXTEX
),
97 X(EMR_SETWORLDTRANSFORM
),
98 X(EMR_MODIFYWORLDTRANSFORM
),
101 X(EMR_CREATEBRUSHINDIRECT
),
110 X(EMR_SELECTPALETTE
),
111 X(EMR_CREATEPALETTE
),
112 X(EMR_SETPALETTEENTRIES
),
113 X(EMR_RESIZEPALETTE
),
114 X(EMR_REALIZEPALETTE
),
119 X(EMR_SETARCDIRECTION
),
120 X(EMR_SETMITERLIMIT
),
125 X(EMR_STROKEANDFILLPATH
),
129 X(EMR_SELECTCLIPPATH
),
136 X(EMR_EXTSELECTCLIPRGN
),
141 X(EMR_SETDIBITSTODEVICE
),
142 X(EMR_STRETCHDIBITS
),
143 X(EMR_EXTCREATEFONTINDIRECTW
),
149 X(EMR_POLYBEZIERTO16
),
151 X(EMR_POLYPOLYLINE16
),
152 X(EMR_POLYPOLYGON16
),
154 X(EMR_CREATEMONOBRUSH
),
155 X(EMR_CREATEDIBPATTERNBRUSHPT
),
160 X(EMR_CREATECOLORSPACE
),
161 X(EMR_SETCOLORSPACE
),
162 X(EMR_DELETECOLORSPACE
),
164 X(EMR_GLSBOUNDEDRECORD
),
170 X(EMR_FORCEUFIMAPPING
),
172 X(EMR_COLORCORRECTPALETTE
),
173 X(EMR_SETICMPROFILEA
),
174 X(EMR_SETICMPROFILEW
),
177 X(EMR_TRANSPARENTBLT
),
181 X(EMR_SETTEXTJUSTIFICATION
),
182 X(EMR_COLORMATCHTOTARGETW
),
183 X(EMR_CREATECOLORSPACEW
)
187 /****************************************************************************
190 static const char *get_emr_name(DWORD type
)
193 for(i
= 0; i
< sizeof(emr_names
) / sizeof(emr_names
[0]); i
++)
194 if(type
== emr_names
[i
].type
) return emr_names
[i
].name
;
195 TRACE("Unknown record type %d\n", type
);
199 /***********************************************************************
202 * Returns whether a DIB can be converted to a monochrome DDB.
204 * A DIB can be converted if its color table contains only black and
205 * white. Black must be the first color in the color table.
207 * Note : If the first color in the color table is white followed by
208 * black, we can't convert it to a monochrome DDB with
209 * SetDIBits, because black and white would be inverted.
211 static inline BOOL
is_dib_monochrome( const BITMAPINFO
* info
)
213 if (info
->bmiHeader
.biBitCount
!= 1) return FALSE
;
215 if (info
->bmiHeader
.biSize
== sizeof(BITMAPCOREHEADER
))
217 const RGBTRIPLE
*rgb
= ((const BITMAPCOREINFO
*) info
)->bmciColors
;
219 /* Check if the first color is black */
220 if ((rgb
->rgbtRed
== 0) && (rgb
->rgbtGreen
== 0) && (rgb
->rgbtBlue
== 0))
223 /* Check if the second color is white */
224 return ((rgb
->rgbtRed
== 0xff) && (rgb
->rgbtGreen
== 0xff)
225 && (rgb
->rgbtBlue
== 0xff));
229 else /* assume BITMAPINFOHEADER */
231 const RGBQUAD
*rgb
= info
->bmiColors
;
233 /* Check if the first color is black */
234 if ((rgb
->rgbRed
== 0) && (rgb
->rgbGreen
== 0) &&
235 (rgb
->rgbBlue
== 0) && (rgb
->rgbReserved
== 0))
239 /* Check if the second color is white */
240 return ((rgb
->rgbRed
== 0xff) && (rgb
->rgbGreen
== 0xff)
241 && (rgb
->rgbBlue
== 0xff) && (rgb
->rgbReserved
== 0));
247 /****************************************************************************
248 * EMF_Create_HENHMETAFILE
250 HENHMETAFILE
EMF_Create_HENHMETAFILE(ENHMETAHEADER
*emh
, BOOL on_disk
)
253 ENHMETAFILEOBJ
*metaObj
;
255 if (emh
->iType
!= EMR_HEADER
)
257 SetLastError(ERROR_INVALID_DATA
);
260 if (emh
->dSignature
!= ENHMETA_SIGNATURE
||
261 (emh
->nBytes
& 3)) /* refuse to load unaligned EMF as Windows does */
263 WARN("Invalid emf header type 0x%08x sig 0x%08x.\n",
264 emh
->iType
, emh
->dSignature
);
268 if (!(metaObj
= HeapAlloc( GetProcessHeap(), 0, sizeof(*metaObj
) ))) return 0;
271 metaObj
->on_disk
= on_disk
;
273 if (!(hmf
= alloc_gdi_handle( &metaObj
->header
, OBJ_ENHMETAFILE
, NULL
)))
274 HeapFree( GetProcessHeap(), 0, metaObj
);
278 /****************************************************************************
279 * EMF_Delete_HENHMETAFILE
281 static BOOL
EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf
)
283 ENHMETAFILEOBJ
*metaObj
= free_gdi_handle( hmf
);
285 if(!metaObj
) return FALSE
;
288 UnmapViewOfFile( metaObj
->emh
);
290 HeapFree( GetProcessHeap(), 0, metaObj
->emh
);
291 return HeapFree( GetProcessHeap(), 0, metaObj
);
294 /******************************************************************
295 * EMF_GetEnhMetaHeader
297 * Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
299 static ENHMETAHEADER
*EMF_GetEnhMetaHeader( HENHMETAFILE hmf
)
301 ENHMETAHEADER
*ret
= NULL
;
302 ENHMETAFILEOBJ
*metaObj
= GDI_GetObjPtr( hmf
, OBJ_ENHMETAFILE
);
303 TRACE("hmf %p -> enhmetaObj %p\n", hmf
, metaObj
);
307 GDI_ReleaseObj( hmf
);
312 /*****************************************************************************
316 static HENHMETAFILE
EMF_GetEnhMetaFile( HANDLE hFile
)
322 hMapping
= CreateFileMappingA( hFile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
323 emh
= MapViewOfFile( hMapping
, FILE_MAP_READ
, 0, 0, 0 );
324 CloseHandle( hMapping
);
328 hemf
= EMF_Create_HENHMETAFILE( emh
, TRUE
);
330 UnmapViewOfFile( emh
);
335 /*****************************************************************************
336 * GetEnhMetaFileA (GDI32.@)
340 HENHMETAFILE WINAPI
GetEnhMetaFileA(
341 LPCSTR lpszMetaFile
/* [in] filename of enhanced metafile */
347 hFile
= CreateFileA(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
348 OPEN_EXISTING
, 0, 0);
349 if (hFile
== INVALID_HANDLE_VALUE
) {
350 WARN("could not open %s\n", lpszMetaFile
);
353 hmf
= EMF_GetEnhMetaFile( hFile
);
354 CloseHandle( hFile
);
358 /*****************************************************************************
359 * GetEnhMetaFileW (GDI32.@)
361 HENHMETAFILE WINAPI
GetEnhMetaFileW(
362 LPCWSTR lpszMetaFile
) /* [in] filename of enhanced metafile */
367 hFile
= CreateFileW(lpszMetaFile
, GENERIC_READ
, FILE_SHARE_READ
, 0,
368 OPEN_EXISTING
, 0, 0);
369 if (hFile
== INVALID_HANDLE_VALUE
) {
370 WARN("could not open %s\n", debugstr_w(lpszMetaFile
));
373 hmf
= EMF_GetEnhMetaFile( hFile
);
374 CloseHandle( hFile
);
378 /*****************************************************************************
379 * GetEnhMetaFileHeader (GDI32.@)
381 * Retrieves the record containing the header for the specified
382 * enhanced-format metafile.
385 * If buf is NULL, returns the size of buffer required.
386 * Otherwise, copy up to bufsize bytes of enhanced metafile header into
389 UINT WINAPI
GetEnhMetaFileHeader(
390 HENHMETAFILE hmf
, /* [in] enhanced metafile */
391 UINT bufsize
, /* [in] size of buffer */
392 LPENHMETAHEADER buf
/* [out] buffer */
398 emh
= EMF_GetEnhMetaHeader(hmf
);
399 if(!emh
) return FALSE
;
401 if (!buf
) return size
;
402 size
= min(size
, bufsize
);
403 memmove(buf
, emh
, size
);
408 /*****************************************************************************
409 * GetEnhMetaFileDescriptionA (GDI32.@)
411 * See GetEnhMetaFileDescriptionW.
413 UINT WINAPI
GetEnhMetaFileDescriptionA(
414 HENHMETAFILE hmf
, /* [in] enhanced metafile */
415 UINT size
, /* [in] size of buf */
416 LPSTR buf
/* [out] buffer to receive description */
419 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
423 if(!emh
) return FALSE
;
424 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
425 descrW
= (WCHAR
*) ((char *) emh
+ emh
->offDescription
);
426 len
= WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, NULL
, 0, NULL
, NULL
);
428 if (!buf
|| !size
) return len
;
430 len
= min( size
, len
);
431 WideCharToMultiByte( CP_ACP
, 0, descrW
, emh
->nDescription
, buf
, len
, NULL
, NULL
);
435 /*****************************************************************************
436 * GetEnhMetaFileDescriptionW (GDI32.@)
438 * Copies the description string of an enhanced metafile into a buffer
442 * If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
443 * number of characters copied.
445 UINT WINAPI
GetEnhMetaFileDescriptionW(
446 HENHMETAFILE hmf
, /* [in] enhanced metafile */
447 UINT size
, /* [in] size of buf */
448 LPWSTR buf
/* [out] buffer to receive description */
451 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader(hmf
);
453 if(!emh
) return FALSE
;
454 if(emh
->nDescription
== 0 || emh
->offDescription
== 0) return 0;
455 if (!buf
|| !size
) return emh
->nDescription
;
457 memmove(buf
, (char *) emh
+ emh
->offDescription
, min(size
,emh
->nDescription
)*sizeof(WCHAR
));
458 return min(size
, emh
->nDescription
);
461 /****************************************************************************
462 * SetEnhMetaFileBits (GDI32.@)
464 * Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
466 HENHMETAFILE WINAPI
SetEnhMetaFileBits(UINT bufsize
, const BYTE
*buf
)
468 ENHMETAHEADER
*emh
= HeapAlloc( GetProcessHeap(), 0, bufsize
);
470 memmove(emh
, buf
, bufsize
);
471 hmf
= EMF_Create_HENHMETAFILE( emh
, FALSE
);
473 HeapFree( GetProcessHeap(), 0, emh
);
477 /*****************************************************************************
478 * GetEnhMetaFileBits (GDI32.@)
481 UINT WINAPI
GetEnhMetaFileBits(
487 LPENHMETAHEADER emh
= EMF_GetEnhMetaHeader( hmf
);
493 if( buf
== NULL
) return size
;
495 size
= min( size
, bufsize
);
496 memmove(buf
, emh
, size
);
500 typedef struct EMF_dc_state
503 XFORM world_transform
;
512 struct EMF_dc_state
*next
;
515 typedef struct enum_emh_data
517 XFORM init_transform
;
520 EMF_dc_state
*saved_state
;
523 #define ENUM_GET_PRIVATE_DATA(ht) \
524 ((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
526 #define WIDTH(rect) ( (rect).right - (rect).left )
527 #define HEIGHT(rect) ( (rect).bottom - (rect).top )
529 #define IS_WIN9X() (GetVersion()&0x80000000)
531 static void EMF_Update_MF_Xform(HDC hdc
, const enum_emh_data
*info
)
533 XFORM mapping_mode_trans
, final_trans
;
534 double scaleX
, scaleY
;
536 scaleX
= (double)info
->state
.vportExtX
/ (double)info
->state
.wndExtX
;
537 scaleY
= (double)info
->state
.vportExtY
/ (double)info
->state
.wndExtY
;
538 mapping_mode_trans
.eM11
= scaleX
;
539 mapping_mode_trans
.eM12
= 0.0;
540 mapping_mode_trans
.eM21
= 0.0;
541 mapping_mode_trans
.eM22
= scaleY
;
542 mapping_mode_trans
.eDx
= (double)info
->state
.vportOrgX
- scaleX
* (double)info
->state
.wndOrgX
;
543 mapping_mode_trans
.eDy
= (double)info
->state
.vportOrgY
- scaleY
* (double)info
->state
.wndOrgY
;
545 CombineTransform(&final_trans
, &info
->state
.world_transform
, &mapping_mode_trans
);
546 CombineTransform(&final_trans
, &final_trans
, &info
->init_transform
);
548 if (!SetWorldTransform(hdc
, &final_trans
))
550 ERR("World transform failed!\n");
554 static void EMF_RestoreDC( enum_emh_data
*info
, INT level
)
556 if (abs(level
) > info
->save_level
|| level
== 0) return;
558 if (level
< 0) level
= info
->save_level
+ level
+ 1;
560 while (info
->save_level
>= level
)
562 EMF_dc_state
*state
= info
->saved_state
;
563 info
->saved_state
= state
->next
;
565 if (--info
->save_level
< level
)
566 info
->state
= *state
;
567 HeapFree( GetProcessHeap(), 0, state
);
571 static void EMF_SaveDC( enum_emh_data
*info
)
573 EMF_dc_state
*state
= HeapAlloc( GetProcessHeap(), 0, sizeof(*state
));
576 *state
= info
->state
;
577 state
->next
= info
->saved_state
;
578 info
->saved_state
= state
;
580 TRACE("save_level %d\n", info
->save_level
);
584 static void EMF_SetMapMode(HDC hdc
, enum_emh_data
*info
)
586 INT horzSize
= GetDeviceCaps( hdc
, HORZSIZE
);
587 INT vertSize
= GetDeviceCaps( hdc
, VERTSIZE
);
588 INT horzRes
= GetDeviceCaps( hdc
, HORZRES
);
589 INT vertRes
= GetDeviceCaps( hdc
, VERTRES
);
591 TRACE("%d\n", info
->state
.mode
);
593 switch(info
->state
.mode
)
596 info
->state
.wndExtX
= 1;
597 info
->state
.wndExtY
= 1;
598 info
->state
.vportExtX
= 1;
599 info
->state
.vportExtY
= 1;
603 info
->state
.wndExtX
= horzSize
* 10;
604 info
->state
.wndExtY
= vertSize
* 10;
605 info
->state
.vportExtX
= horzRes
;
606 info
->state
.vportExtY
= -vertRes
;
609 info
->state
.wndExtX
= horzSize
* 100;
610 info
->state
.wndExtY
= vertSize
* 100;
611 info
->state
.vportExtX
= horzRes
;
612 info
->state
.vportExtY
= -vertRes
;
615 info
->state
.wndExtX
= MulDiv(1000, horzSize
, 254);
616 info
->state
.wndExtY
= MulDiv(1000, vertSize
, 254);
617 info
->state
.vportExtX
= horzRes
;
618 info
->state
.vportExtY
= -vertRes
;
621 info
->state
.wndExtX
= MulDiv(10000, horzSize
, 254);
622 info
->state
.wndExtY
= MulDiv(10000, vertSize
, 254);
623 info
->state
.vportExtX
= horzRes
;
624 info
->state
.vportExtY
= -vertRes
;
627 info
->state
.wndExtX
= MulDiv(14400, horzSize
, 254);
628 info
->state
.wndExtY
= MulDiv(14400, vertSize
, 254);
629 info
->state
.vportExtX
= horzRes
;
630 info
->state
.vportExtY
= -vertRes
;
639 /***********************************************************************
642 * Fix viewport extensions for isotropic mode.
645 static void EMF_FixIsotropic(HDC hdc
, enum_emh_data
*info
)
647 double xdim
= fabs((double)info
->state
.vportExtX
* GetDeviceCaps( hdc
, HORZSIZE
) /
648 (GetDeviceCaps( hdc
, HORZRES
) * info
->state
.wndExtX
));
649 double ydim
= fabs((double)info
->state
.vportExtY
* GetDeviceCaps( hdc
, VERTSIZE
) /
650 (GetDeviceCaps( hdc
, VERTRES
) * info
->state
.wndExtY
));
654 INT mincx
= (info
->state
.vportExtX
>= 0) ? 1 : -1;
655 info
->state
.vportExtX
= floor(info
->state
.vportExtX
* ydim
/ xdim
+ 0.5);
656 if (!info
->state
.vportExtX
) info
->state
.vportExtX
= mincx
;
660 INT mincy
= (info
->state
.vportExtY
>= 0) ? 1 : -1;
661 info
->state
.vportExtY
= floor(info
->state
.vportExtY
* xdim
/ ydim
+ 0.5);
662 if (!info
->state
.vportExtY
) info
->state
.vportExtY
= mincy
;
666 /*****************************************************************************
667 * emr_produces_output
669 * Returns TRUE if the record type writes something to the dc. Used by
670 * PlayEnhMetaFileRecord to determine whether it needs to update the
671 * dc's xform when in win9x mode.
673 * FIXME: need to test which records should be here.
675 static BOOL
emr_produces_output(int type
)
681 case EMR_POLYBEZIERTO
:
683 case EMR_POLYPOLYLINE
:
684 case EMR_POLYPOLYGON
:
687 case EMR_EXCLUDECLIPRECT
:
688 case EMR_INTERSECTCLIPRECT
:
689 case EMR_SELECTOBJECT
:
697 case EMR_EXTFLOODFILL
:
710 case EMR_SETDIBITSTODEVICE
:
711 case EMR_STRETCHDIBITS
:
712 case EMR_EXTTEXTOUTA
:
713 case EMR_EXTTEXTOUTW
:
714 case EMR_POLYBEZIER16
:
717 case EMR_POLYBEZIERTO16
:
718 case EMR_POLYLINETO16
:
719 case EMR_POLYPOLYLINE16
:
720 case EMR_POLYPOLYGON16
:
722 case EMR_POLYTEXTOUTA
:
723 case EMR_POLYTEXTOUTW
:
724 case EMR_SMALLTEXTOUT
:
726 case EMR_TRANSPARENTBLT
:
734 /*****************************************************************************
735 * PlayEnhMetaFileRecord (GDI32.@)
737 * Render a single enhanced metafile record in the device context hdc.
740 * TRUE (non zero) on success, FALSE on error.
742 * Many unimplemented records.
743 * No error handling on record play failures (ie checking return codes)
746 * WinNT actually updates the current world transform in this function
747 * whereas Win9x does not.
749 BOOL WINAPI
PlayEnhMetaFileRecord(
750 HDC hdc
, /* [in] device context in which to render EMF record */
751 LPHANDLETABLE handletable
, /* [in] array of handles to be used in rendering record */
752 const ENHMETARECORD
*mr
, /* [in] EMF record to render */
753 UINT handles
/* [in] size of handle array */
758 enum_emh_data
*info
= ENUM_GET_PRIVATE_DATA(handletable
);
760 TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
761 hdc
, handletable
, mr
, handles
);
762 if (!mr
) return FALSE
;
766 TRACE("record %s\n", get_emr_name(type
));
775 const EMRGDICOMMENT
*lpGdiComment
= (const EMRGDICOMMENT
*)mr
;
776 /* In an enhanced metafile, there can be both public and private GDI comments */
777 GdiComment( hdc
, lpGdiComment
->cbData
, lpGdiComment
->Data
);
782 const EMRSETMAPMODE
*pSetMapMode
= (const EMRSETMAPMODE
*)mr
;
784 if (info
->state
.mode
== pSetMapMode
->iMode
&&
785 (info
->state
.mode
== MM_ISOTROPIC
|| info
->state
.mode
== MM_ANISOTROPIC
))
787 info
->state
.mode
= pSetMapMode
->iMode
;
788 EMF_SetMapMode(hdc
, info
);
793 const EMRSETBKMODE
*pSetBkMode
= (const EMRSETBKMODE
*)mr
;
794 SetBkMode(hdc
, pSetBkMode
->iMode
);
799 const EMRSETBKCOLOR
*pSetBkColor
= (const EMRSETBKCOLOR
*)mr
;
800 SetBkColor(hdc
, pSetBkColor
->crColor
);
803 case EMR_SETPOLYFILLMODE
:
805 const EMRSETPOLYFILLMODE
*pSetPolyFillMode
= (const EMRSETPOLYFILLMODE
*)mr
;
806 SetPolyFillMode(hdc
, pSetPolyFillMode
->iMode
);
811 const EMRSETROP2
*pSetROP2
= (const EMRSETROP2
*)mr
;
812 SetROP2(hdc
, pSetROP2
->iMode
);
815 case EMR_SETSTRETCHBLTMODE
:
817 const EMRSETSTRETCHBLTMODE
*pSetStretchBltMode
= (const EMRSETSTRETCHBLTMODE
*)mr
;
818 SetStretchBltMode(hdc
, pSetStretchBltMode
->iMode
);
821 case EMR_SETTEXTALIGN
:
823 const EMRSETTEXTALIGN
*pSetTextAlign
= (const EMRSETTEXTALIGN
*)mr
;
824 SetTextAlign(hdc
, pSetTextAlign
->iMode
);
827 case EMR_SETTEXTCOLOR
:
829 const EMRSETTEXTCOLOR
*pSetTextColor
= (const EMRSETTEXTCOLOR
*)mr
;
830 SetTextColor(hdc
, pSetTextColor
->crColor
);
841 const EMRRESTOREDC
*pRestoreDC
= (const EMRRESTOREDC
*)mr
;
842 TRACE("EMR_RESTORE: %d\n", pRestoreDC
->iRelative
);
843 if (RestoreDC( hdc
, pRestoreDC
->iRelative
))
844 EMF_RestoreDC( info
, pRestoreDC
->iRelative
);
847 case EMR_INTERSECTCLIPRECT
:
849 const EMRINTERSECTCLIPRECT
*pClipRect
= (const EMRINTERSECTCLIPRECT
*)mr
;
850 TRACE("EMR_INTERSECTCLIPRECT: rect %d,%d - %d, %d\n",
851 pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
852 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
853 IntersectClipRect(hdc
, pClipRect
->rclClip
.left
, pClipRect
->rclClip
.top
,
854 pClipRect
->rclClip
.right
, pClipRect
->rclClip
.bottom
);
857 case EMR_SELECTOBJECT
:
859 const EMRSELECTOBJECT
*pSelectObject
= (const EMRSELECTOBJECT
*)mr
;
860 if( pSelectObject
->ihObject
& 0x80000000 ) {
861 /* High order bit is set - it's a stock object
862 * Strip the high bit to get the index.
863 * See MSDN article Q142319
865 SelectObject( hdc
, GetStockObject( pSelectObject
->ihObject
&
868 /* High order bit wasn't set - not a stock object
871 (handletable
->objectHandle
)[pSelectObject
->ihObject
] );
875 case EMR_DELETEOBJECT
:
877 const EMRDELETEOBJECT
*pDeleteObject
= (const EMRDELETEOBJECT
*)mr
;
878 DeleteObject( (handletable
->objectHandle
)[pDeleteObject
->ihObject
]);
879 (handletable
->objectHandle
)[pDeleteObject
->ihObject
] = 0;
882 case EMR_SETWINDOWORGEX
:
884 const EMRSETWINDOWORGEX
*pSetWindowOrgEx
= (const EMRSETWINDOWORGEX
*)mr
;
886 info
->state
.wndOrgX
= pSetWindowOrgEx
->ptlOrigin
.x
;
887 info
->state
.wndOrgY
= pSetWindowOrgEx
->ptlOrigin
.y
;
889 TRACE("SetWindowOrgEx: %d,%d\n", info
->state
.wndOrgX
, info
->state
.wndOrgY
);
892 case EMR_SETWINDOWEXTEX
:
894 const EMRSETWINDOWEXTEX
*pSetWindowExtEx
= (const EMRSETWINDOWEXTEX
*)mr
;
896 if (info
->state
.mode
!= MM_ISOTROPIC
&& info
->state
.mode
!= MM_ANISOTROPIC
)
898 info
->state
.wndExtX
= pSetWindowExtEx
->szlExtent
.cx
;
899 info
->state
.wndExtY
= pSetWindowExtEx
->szlExtent
.cy
;
900 if (info
->state
.mode
== MM_ISOTROPIC
)
901 EMF_FixIsotropic(hdc
, info
);
903 TRACE("SetWindowExtEx: %d,%d\n",info
->state
.wndExtX
, info
->state
.wndExtY
);
906 case EMR_SETVIEWPORTORGEX
:
908 const EMRSETVIEWPORTORGEX
*pSetViewportOrgEx
= (const EMRSETVIEWPORTORGEX
*)mr
;
910 info
->state
.vportOrgX
= pSetViewportOrgEx
->ptlOrigin
.x
;
911 info
->state
.vportOrgY
= pSetViewportOrgEx
->ptlOrigin
.y
;
912 TRACE("SetViewportOrgEx: %d,%d\n", info
->state
.vportOrgX
, info
->state
.vportOrgY
);
915 case EMR_SETVIEWPORTEXTEX
:
917 const EMRSETVIEWPORTEXTEX
*pSetViewportExtEx
= (const EMRSETVIEWPORTEXTEX
*)mr
;
919 if (info
->state
.mode
!= MM_ISOTROPIC
&& info
->state
.mode
!= MM_ANISOTROPIC
)
921 info
->state
.vportExtX
= pSetViewportExtEx
->szlExtent
.cx
;
922 info
->state
.vportExtY
= pSetViewportExtEx
->szlExtent
.cy
;
923 if (info
->state
.mode
== MM_ISOTROPIC
)
924 EMF_FixIsotropic(hdc
, info
);
925 TRACE("SetViewportExtEx: %d,%d\n", info
->state
.vportExtX
, info
->state
.vportExtY
);
930 const EMRCREATEPEN
*pCreatePen
= (const EMRCREATEPEN
*)mr
;
931 (handletable
->objectHandle
)[pCreatePen
->ihPen
] =
932 CreatePenIndirect(&pCreatePen
->lopn
);
935 case EMR_EXTCREATEPEN
:
937 const EMREXTCREATEPEN
*pPen
= (const EMREXTCREATEPEN
*)mr
;
939 lb
.lbStyle
= pPen
->elp
.elpBrushStyle
;
940 lb
.lbColor
= pPen
->elp
.elpColor
;
941 lb
.lbHatch
= pPen
->elp
.elpHatch
;
943 if(pPen
->offBmi
|| pPen
->offBits
)
944 FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
946 (handletable
->objectHandle
)[pPen
->ihPen
] =
947 ExtCreatePen(pPen
->elp
.elpPenStyle
, pPen
->elp
.elpWidth
, &lb
,
948 pPen
->elp
.elpNumEntries
, pPen
->elp
.elpNumEntries
? pPen
->elp
.elpStyleEntry
: NULL
);
951 case EMR_CREATEBRUSHINDIRECT
:
953 const EMRCREATEBRUSHINDIRECT
*pBrush
= (const EMRCREATEBRUSHINDIRECT
*)mr
;
955 brush
.lbStyle
= pBrush
->lb
.lbStyle
;
956 brush
.lbColor
= pBrush
->lb
.lbColor
;
957 brush
.lbHatch
= pBrush
->lb
.lbHatch
;
958 (handletable
->objectHandle
)[pBrush
->ihBrush
] = CreateBrushIndirect(&brush
);
961 case EMR_EXTCREATEFONTINDIRECTW
:
963 const EMREXTCREATEFONTINDIRECTW
*pFont
= (const EMREXTCREATEFONTINDIRECTW
*)mr
;
964 (handletable
->objectHandle
)[pFont
->ihFont
] =
965 CreateFontIndirectW(&pFont
->elfw
.elfLogFont
);
970 const EMRMOVETOEX
*pMoveToEx
= (const EMRMOVETOEX
*)mr
;
971 MoveToEx(hdc
, pMoveToEx
->ptl
.x
, pMoveToEx
->ptl
.y
, NULL
);
976 const EMRLINETO
*pLineTo
= (const EMRLINETO
*)mr
;
977 LineTo(hdc
, pLineTo
->ptl
.x
, pLineTo
->ptl
.y
);
982 const EMRRECTANGLE
*pRect
= (const EMRRECTANGLE
*)mr
;
983 Rectangle(hdc
, pRect
->rclBox
.left
, pRect
->rclBox
.top
,
984 pRect
->rclBox
.right
, pRect
->rclBox
.bottom
);
989 const EMRELLIPSE
*pEllipse
= (const EMRELLIPSE
*)mr
;
990 Ellipse(hdc
, pEllipse
->rclBox
.left
, pEllipse
->rclBox
.top
,
991 pEllipse
->rclBox
.right
, pEllipse
->rclBox
.bottom
);
996 const EMRPOLYGON16
*pPoly
= (const EMRPOLYGON16
*)mr
;
997 /* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
998 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
999 pPoly
->cpts
* sizeof(POINT
) );
1001 for(i
= 0; i
< pPoly
->cpts
; i
++)
1003 pts
[i
].x
= pPoly
->apts
[i
].x
;
1004 pts
[i
].y
= pPoly
->apts
[i
].y
;
1006 Polygon(hdc
, pts
, pPoly
->cpts
);
1007 HeapFree( GetProcessHeap(), 0, pts
);
1010 case EMR_POLYLINE16
:
1012 const EMRPOLYLINE16
*pPoly
= (const EMRPOLYLINE16
*)mr
;
1013 /* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
1014 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1015 pPoly
->cpts
* sizeof(POINT
) );
1017 for(i
= 0; i
< pPoly
->cpts
; i
++)
1019 pts
[i
].x
= pPoly
->apts
[i
].x
;
1020 pts
[i
].y
= pPoly
->apts
[i
].y
;
1022 Polyline(hdc
, pts
, pPoly
->cpts
);
1023 HeapFree( GetProcessHeap(), 0, pts
);
1026 case EMR_POLYLINETO16
:
1028 const EMRPOLYLINETO16
*pPoly
= (const EMRPOLYLINETO16
*)mr
;
1029 /* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
1030 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1031 pPoly
->cpts
* sizeof(POINT
) );
1033 for(i
= 0; i
< pPoly
->cpts
; i
++)
1035 pts
[i
].x
= pPoly
->apts
[i
].x
;
1036 pts
[i
].y
= pPoly
->apts
[i
].y
;
1038 PolylineTo(hdc
, pts
, pPoly
->cpts
);
1039 HeapFree( GetProcessHeap(), 0, pts
);
1042 case EMR_POLYBEZIER16
:
1044 const EMRPOLYBEZIER16
*pPoly
= (const EMRPOLYBEZIER16
*)mr
;
1045 /* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
1046 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1047 pPoly
->cpts
* sizeof(POINT
) );
1049 for(i
= 0; i
< pPoly
->cpts
; i
++)
1051 pts
[i
].x
= pPoly
->apts
[i
].x
;
1052 pts
[i
].y
= pPoly
->apts
[i
].y
;
1054 PolyBezier(hdc
, pts
, pPoly
->cpts
);
1055 HeapFree( GetProcessHeap(), 0, pts
);
1058 case EMR_POLYBEZIERTO16
:
1060 const EMRPOLYBEZIERTO16
*pPoly
= (const EMRPOLYBEZIERTO16
*)mr
;
1061 /* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
1062 POINT
*pts
= HeapAlloc( GetProcessHeap(), 0,
1063 pPoly
->cpts
* sizeof(POINT
) );
1065 for(i
= 0; i
< pPoly
->cpts
; i
++)
1067 pts
[i
].x
= pPoly
->apts
[i
].x
;
1068 pts
[i
].y
= pPoly
->apts
[i
].y
;
1070 PolyBezierTo(hdc
, pts
, pPoly
->cpts
);
1071 HeapFree( GetProcessHeap(), 0, pts
);
1074 case EMR_POLYPOLYGON16
:
1076 const EMRPOLYPOLYGON16
*pPolyPoly
= (const EMRPOLYPOLYGON16
*)mr
;
1077 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1078 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1080 const POINTS
*pts
= (const POINTS
*)(pPolyPoly
->aPolyCounts
+ pPolyPoly
->nPolys
);
1081 POINT
*pt
= HeapAlloc( GetProcessHeap(), 0, pPolyPoly
->cpts
* sizeof(POINT
) );
1083 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
1088 PolyPolygon(hdc
, pt
, (const INT
*)pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
1089 HeapFree( GetProcessHeap(), 0, pt
);
1092 case EMR_POLYPOLYLINE16
:
1094 const EMRPOLYPOLYLINE16
*pPolyPoly
= (const EMRPOLYPOLYLINE16
*)mr
;
1095 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1096 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1098 const POINTS
*pts
= (const POINTS
*)(pPolyPoly
->aPolyCounts
+ pPolyPoly
->nPolys
);
1099 POINT
*pt
= HeapAlloc( GetProcessHeap(), 0, pPolyPoly
->cpts
* sizeof(POINT
) );
1101 for(i
= 0; i
< pPolyPoly
->cpts
; i
++)
1106 PolyPolyline(hdc
, pt
, pPolyPoly
->aPolyCounts
, pPolyPoly
->nPolys
);
1107 HeapFree( GetProcessHeap(), 0, pt
);
1111 case EMR_STRETCHDIBITS
:
1113 const EMRSTRETCHDIBITS
*pStretchDIBits
= (const EMRSTRETCHDIBITS
*)mr
;
1116 pStretchDIBits
->xDest
,
1117 pStretchDIBits
->yDest
,
1118 pStretchDIBits
->cxDest
,
1119 pStretchDIBits
->cyDest
,
1120 pStretchDIBits
->xSrc
,
1121 pStretchDIBits
->ySrc
,
1122 pStretchDIBits
->cxSrc
,
1123 pStretchDIBits
->cySrc
,
1124 (const BYTE
*)mr
+ pStretchDIBits
->offBitsSrc
,
1125 (const BITMAPINFO
*)((const BYTE
*)mr
+ pStretchDIBits
->offBmiSrc
),
1126 pStretchDIBits
->iUsageSrc
,
1127 pStretchDIBits
->dwRop
);
1131 case EMR_EXTTEXTOUTA
:
1133 const EMREXTTEXTOUTA
*pExtTextOutA
= (const EMREXTTEXTOUTA
*)mr
;
1135 const INT
*dx
= NULL
;
1138 rc
.left
= pExtTextOutA
->emrtext
.rcl
.left
;
1139 rc
.top
= pExtTextOutA
->emrtext
.rcl
.top
;
1140 rc
.right
= pExtTextOutA
->emrtext
.rcl
.right
;
1141 rc
.bottom
= pExtTextOutA
->emrtext
.rcl
.bottom
;
1142 TRACE("EMR_EXTTEXTOUTA: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
1143 pExtTextOutA
->emrtext
.ptlReference
.x
, pExtTextOutA
->emrtext
.ptlReference
.y
,
1144 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, pExtTextOutA
->emrtext
.fOptions
);
1146 old_mode
= SetGraphicsMode(hdc
, pExtTextOutA
->iGraphicsMode
);
1147 /* Reselect the font back into the dc so that the transformation
1149 SelectObject(hdc
, GetCurrentObject(hdc
, OBJ_FONT
));
1151 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1152 * These files can be enumerated and played under Win98 just
1153 * fine, but at least Win2k chokes on them.
1155 if (pExtTextOutA
->emrtext
.offDx
)
1156 dx
= (const INT
*)((const BYTE
*)mr
+ pExtTextOutA
->emrtext
.offDx
);
1158 ExtTextOutA(hdc
, pExtTextOutA
->emrtext
.ptlReference
.x
, pExtTextOutA
->emrtext
.ptlReference
.y
,
1159 pExtTextOutA
->emrtext
.fOptions
, &rc
,
1160 (LPCSTR
)((const BYTE
*)mr
+ pExtTextOutA
->emrtext
.offString
), pExtTextOutA
->emrtext
.nChars
,
1163 SetGraphicsMode(hdc
, old_mode
);
1167 case EMR_EXTTEXTOUTW
:
1169 const EMREXTTEXTOUTW
*pExtTextOutW
= (const EMREXTTEXTOUTW
*)mr
;
1171 const INT
*dx
= NULL
;
1174 rc
.left
= pExtTextOutW
->emrtext
.rcl
.left
;
1175 rc
.top
= pExtTextOutW
->emrtext
.rcl
.top
;
1176 rc
.right
= pExtTextOutW
->emrtext
.rcl
.right
;
1177 rc
.bottom
= pExtTextOutW
->emrtext
.rcl
.bottom
;
1178 TRACE("EMR_EXTTEXTOUTW: x,y = %d, %d. rect = %d, %d - %d, %d. flags %08x\n",
1179 pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1180 rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, pExtTextOutW
->emrtext
.fOptions
);
1182 old_mode
= SetGraphicsMode(hdc
, pExtTextOutW
->iGraphicsMode
);
1183 /* Reselect the font back into the dc so that the transformation
1185 SelectObject(hdc
, GetCurrentObject(hdc
, OBJ_FONT
));
1187 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1188 * These files can be enumerated and played under Win98 just
1189 * fine, but at least Win2k chokes on them.
1191 if (pExtTextOutW
->emrtext
.offDx
)
1192 dx
= (const INT
*)((const BYTE
*)mr
+ pExtTextOutW
->emrtext
.offDx
);
1194 ExtTextOutW(hdc
, pExtTextOutW
->emrtext
.ptlReference
.x
, pExtTextOutW
->emrtext
.ptlReference
.y
,
1195 pExtTextOutW
->emrtext
.fOptions
, &rc
,
1196 (LPCWSTR
)((const BYTE
*)mr
+ pExtTextOutW
->emrtext
.offString
), pExtTextOutW
->emrtext
.nChars
,
1199 SetGraphicsMode(hdc
, old_mode
);
1203 case EMR_CREATEPALETTE
:
1205 const EMRCREATEPALETTE
*lpCreatePal
= (const EMRCREATEPALETTE
*)mr
;
1207 (handletable
->objectHandle
)[ lpCreatePal
->ihPal
] =
1208 CreatePalette( &lpCreatePal
->lgpl
);
1213 case EMR_SELECTPALETTE
:
1215 const EMRSELECTPALETTE
*lpSelectPal
= (const EMRSELECTPALETTE
*)mr
;
1217 if( lpSelectPal
->ihPal
& 0x80000000 ) {
1218 SelectPalette( hdc
, GetStockObject(lpSelectPal
->ihPal
& 0x7fffffff), TRUE
);
1220 SelectPalette( hdc
, (handletable
->objectHandle
)[lpSelectPal
->ihPal
], TRUE
);
1225 case EMR_REALIZEPALETTE
:
1227 RealizePalette( hdc
);
1231 case EMR_EXTSELECTCLIPRGN
:
1233 const EMREXTSELECTCLIPRGN
*lpRgn
= (const EMREXTSELECTCLIPRGN
*)mr
;
1236 if (mr
->nSize
>= sizeof(*lpRgn
) + sizeof(RGNDATAHEADER
))
1237 hRgn
= ExtCreateRegion( &info
->init_transform
, 0, (const RGNDATA
*)lpRgn
->RgnData
);
1239 ExtSelectClipRgn(hdc
, hRgn
, (INT
)(lpRgn
->iMode
));
1240 /* ExtSelectClipRgn created a copy of the region */
1245 case EMR_SETMETARGN
:
1251 case EMR_SETWORLDTRANSFORM
:
1253 const EMRSETWORLDTRANSFORM
*lpXfrm
= (const EMRSETWORLDTRANSFORM
*)mr
;
1254 info
->state
.world_transform
= lpXfrm
->xform
;
1258 case EMR_POLYBEZIER
:
1260 const EMRPOLYBEZIER
*lpPolyBez
= (const EMRPOLYBEZIER
*)mr
;
1261 PolyBezier(hdc
, (const POINT
*)lpPolyBez
->aptl
, (UINT
)lpPolyBez
->cptl
);
1267 const EMRPOLYGON
*lpPoly
= (const EMRPOLYGON
*)mr
;
1268 Polygon( hdc
, (const POINT
*)lpPoly
->aptl
, (UINT
)lpPoly
->cptl
);
1274 const EMRPOLYLINE
*lpPolyLine
= (const EMRPOLYLINE
*)mr
;
1275 Polyline(hdc
, (const POINT
*)lpPolyLine
->aptl
, (UINT
)lpPolyLine
->cptl
);
1279 case EMR_POLYBEZIERTO
:
1281 const EMRPOLYBEZIERTO
*lpPolyBezierTo
= (const EMRPOLYBEZIERTO
*)mr
;
1282 PolyBezierTo( hdc
, (const POINT
*)lpPolyBezierTo
->aptl
,
1283 (UINT
)lpPolyBezierTo
->cptl
);
1287 case EMR_POLYLINETO
:
1289 const EMRPOLYLINETO
*lpPolyLineTo
= (const EMRPOLYLINETO
*)mr
;
1290 PolylineTo( hdc
, (const POINT
*)lpPolyLineTo
->aptl
,
1291 (UINT
)lpPolyLineTo
->cptl
);
1295 case EMR_POLYPOLYLINE
:
1297 const EMRPOLYPOLYLINE
*pPolyPolyline
= (const EMRPOLYPOLYLINE
*)mr
;
1298 /* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
1300 PolyPolyline(hdc
, (const POINT
*)(pPolyPolyline
->aPolyCounts
+
1301 pPolyPolyline
->nPolys
),
1302 pPolyPolyline
->aPolyCounts
,
1303 pPolyPolyline
->nPolys
);
1308 case EMR_POLYPOLYGON
:
1310 const EMRPOLYPOLYGON
*pPolyPolygon
= (const EMRPOLYPOLYGON
*)mr
;
1312 /* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
1314 PolyPolygon(hdc
, (const POINT
*)(pPolyPolygon
->aPolyCounts
+
1315 pPolyPolygon
->nPolys
),
1316 (const INT
*)pPolyPolygon
->aPolyCounts
, pPolyPolygon
->nPolys
);
1320 case EMR_SETBRUSHORGEX
:
1322 const EMRSETBRUSHORGEX
*lpSetBrushOrgEx
= (const EMRSETBRUSHORGEX
*)mr
;
1325 (INT
)lpSetBrushOrgEx
->ptlOrigin
.x
,
1326 (INT
)lpSetBrushOrgEx
->ptlOrigin
.y
,
1334 const EMRSETPIXELV
*lpSetPixelV
= (const EMRSETPIXELV
*)mr
;
1337 (INT
)lpSetPixelV
->ptlPixel
.x
,
1338 (INT
)lpSetPixelV
->ptlPixel
.y
,
1339 lpSetPixelV
->crColor
);
1344 case EMR_SETMAPPERFLAGS
:
1346 const EMRSETMAPPERFLAGS
*lpSetMapperFlags
= (const EMRSETMAPPERFLAGS
*)mr
;
1348 SetMapperFlags( hdc
, lpSetMapperFlags
->dwFlags
);
1353 case EMR_SETCOLORADJUSTMENT
:
1355 const EMRSETCOLORADJUSTMENT
*lpSetColorAdjust
= (const EMRSETCOLORADJUSTMENT
*)mr
;
1357 SetColorAdjustment( hdc
, &lpSetColorAdjust
->ColorAdjustment
);
1362 case EMR_OFFSETCLIPRGN
:
1364 const EMROFFSETCLIPRGN
*lpOffsetClipRgn
= (const EMROFFSETCLIPRGN
*)mr
;
1367 (INT
)lpOffsetClipRgn
->ptlOffset
.x
,
1368 (INT
)lpOffsetClipRgn
->ptlOffset
.y
);
1369 FIXME("OffsetClipRgn\n");
1374 case EMR_EXCLUDECLIPRECT
:
1376 const EMREXCLUDECLIPRECT
*lpExcludeClipRect
= (const EMREXCLUDECLIPRECT
*)mr
;
1378 ExcludeClipRect( hdc
,
1379 lpExcludeClipRect
->rclClip
.left
,
1380 lpExcludeClipRect
->rclClip
.top
,
1381 lpExcludeClipRect
->rclClip
.right
,
1382 lpExcludeClipRect
->rclClip
.bottom
);
1383 FIXME("ExcludeClipRect\n");
1388 case EMR_SCALEVIEWPORTEXTEX
:
1390 const EMRSCALEVIEWPORTEXTEX
*lpScaleViewportExtEx
= (const EMRSCALEVIEWPORTEXTEX
*)mr
;
1392 if ((info
->state
.mode
!= MM_ISOTROPIC
) && (info
->state
.mode
!= MM_ANISOTROPIC
))
1394 if (!lpScaleViewportExtEx
->xNum
|| !lpScaleViewportExtEx
->xDenom
||
1395 !lpScaleViewportExtEx
->yNum
|| !lpScaleViewportExtEx
->yDenom
)
1397 info
->state
.vportExtX
= MulDiv(info
->state
.vportExtX
, lpScaleViewportExtEx
->xNum
,
1398 lpScaleViewportExtEx
->xDenom
);
1399 info
->state
.vportExtY
= MulDiv(info
->state
.vportExtY
, lpScaleViewportExtEx
->yNum
,
1400 lpScaleViewportExtEx
->yDenom
);
1401 if (info
->state
.vportExtX
== 0) info
->state
.vportExtX
= 1;
1402 if (info
->state
.vportExtY
== 0) info
->state
.vportExtY
= 1;
1403 if (info
->state
.mode
== MM_ISOTROPIC
)
1404 EMF_FixIsotropic(hdc
, info
);
1406 TRACE("EMRSCALEVIEWPORTEXTEX %d/%d %d/%d\n",
1407 lpScaleViewportExtEx
->xNum
,lpScaleViewportExtEx
->xDenom
,
1408 lpScaleViewportExtEx
->yNum
,lpScaleViewportExtEx
->yDenom
);
1413 case EMR_SCALEWINDOWEXTEX
:
1415 const EMRSCALEWINDOWEXTEX
*lpScaleWindowExtEx
= (const EMRSCALEWINDOWEXTEX
*)mr
;
1417 if ((info
->state
.mode
!= MM_ISOTROPIC
) && (info
->state
.mode
!= MM_ANISOTROPIC
))
1419 if (!lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->xDenom
||
1420 !lpScaleWindowExtEx
->xNum
|| !lpScaleWindowExtEx
->yDenom
)
1422 info
->state
.wndExtX
= MulDiv(info
->state
.wndExtX
, lpScaleWindowExtEx
->xNum
,
1423 lpScaleWindowExtEx
->xDenom
);
1424 info
->state
.wndExtY
= MulDiv(info
->state
.wndExtY
, lpScaleWindowExtEx
->yNum
,
1425 lpScaleWindowExtEx
->yDenom
);
1426 if (info
->state
.wndExtX
== 0) info
->state
.wndExtX
= 1;
1427 if (info
->state
.wndExtY
== 0) info
->state
.wndExtY
= 1;
1428 if (info
->state
.mode
== MM_ISOTROPIC
)
1429 EMF_FixIsotropic(hdc
, info
);
1431 TRACE("EMRSCALEWINDOWEXTEX %d/%d %d/%d\n",
1432 lpScaleWindowExtEx
->xNum
,lpScaleWindowExtEx
->xDenom
,
1433 lpScaleWindowExtEx
->yNum
,lpScaleWindowExtEx
->yDenom
);
1438 case EMR_MODIFYWORLDTRANSFORM
:
1440 const EMRMODIFYWORLDTRANSFORM
*lpModifyWorldTrans
= (const EMRMODIFYWORLDTRANSFORM
*)mr
;
1442 switch(lpModifyWorldTrans
->iMode
) {
1444 info
->state
.world_transform
.eM11
= info
->state
.world_transform
.eM22
= 1;
1445 info
->state
.world_transform
.eM12
= info
->state
.world_transform
.eM21
= 0;
1446 info
->state
.world_transform
.eDx
= info
->state
.world_transform
.eDy
= 0;
1448 case MWT_LEFTMULTIPLY
:
1449 CombineTransform(&info
->state
.world_transform
, &lpModifyWorldTrans
->xform
,
1450 &info
->state
.world_transform
);
1452 case MWT_RIGHTMULTIPLY
:
1453 CombineTransform(&info
->state
.world_transform
, &info
->state
.world_transform
,
1454 &lpModifyWorldTrans
->xform
);
1457 FIXME("Unknown imode %d\n", lpModifyWorldTrans
->iMode
);
1465 const EMRANGLEARC
*lpAngleArc
= (const EMRANGLEARC
*)mr
;
1468 (INT
)lpAngleArc
->ptlCenter
.x
, (INT
)lpAngleArc
->ptlCenter
.y
,
1469 lpAngleArc
->nRadius
, lpAngleArc
->eStartAngle
,
1470 lpAngleArc
->eSweepAngle
);
1477 const EMRROUNDRECT
*lpRoundRect
= (const EMRROUNDRECT
*)mr
;
1480 lpRoundRect
->rclBox
.left
,
1481 lpRoundRect
->rclBox
.top
,
1482 lpRoundRect
->rclBox
.right
,
1483 lpRoundRect
->rclBox
.bottom
,
1484 lpRoundRect
->szlCorner
.cx
,
1485 lpRoundRect
->szlCorner
.cy
);
1492 const EMRARC
*lpArc
= (const EMRARC
*)mr
;
1495 (INT
)lpArc
->rclBox
.left
,
1496 (INT
)lpArc
->rclBox
.top
,
1497 (INT
)lpArc
->rclBox
.right
,
1498 (INT
)lpArc
->rclBox
.bottom
,
1499 (INT
)lpArc
->ptlStart
.x
,
1500 (INT
)lpArc
->ptlStart
.y
,
1501 (INT
)lpArc
->ptlEnd
.x
,
1502 (INT
)lpArc
->ptlEnd
.y
);
1509 const EMRCHORD
*lpChord
= (const EMRCHORD
*)mr
;
1512 (INT
)lpChord
->rclBox
.left
,
1513 (INT
)lpChord
->rclBox
.top
,
1514 (INT
)lpChord
->rclBox
.right
,
1515 (INT
)lpChord
->rclBox
.bottom
,
1516 (INT
)lpChord
->ptlStart
.x
,
1517 (INT
)lpChord
->ptlStart
.y
,
1518 (INT
)lpChord
->ptlEnd
.x
,
1519 (INT
)lpChord
->ptlEnd
.y
);
1526 const EMRPIE
*lpPie
= (const EMRPIE
*)mr
;
1529 (INT
)lpPie
->rclBox
.left
,
1530 (INT
)lpPie
->rclBox
.top
,
1531 (INT
)lpPie
->rclBox
.right
,
1532 (INT
)lpPie
->rclBox
.bottom
,
1533 (INT
)lpPie
->ptlStart
.x
,
1534 (INT
)lpPie
->ptlStart
.y
,
1535 (INT
)lpPie
->ptlEnd
.x
,
1536 (INT
)lpPie
->ptlEnd
.y
);
1543 const EMRARC
*lpArcTo
= (const EMRARC
*)mr
;
1546 (INT
)lpArcTo
->rclBox
.left
,
1547 (INT
)lpArcTo
->rclBox
.top
,
1548 (INT
)lpArcTo
->rclBox
.right
,
1549 (INT
)lpArcTo
->rclBox
.bottom
,
1550 (INT
)lpArcTo
->ptlStart
.x
,
1551 (INT
)lpArcTo
->ptlStart
.y
,
1552 (INT
)lpArcTo
->ptlEnd
.x
,
1553 (INT
)lpArcTo
->ptlEnd
.y
);
1558 case EMR_EXTFLOODFILL
:
1560 const EMREXTFLOODFILL
*lpExtFloodFill
= (const EMREXTFLOODFILL
*)mr
;
1563 (INT
)lpExtFloodFill
->ptlStart
.x
,
1564 (INT
)lpExtFloodFill
->ptlStart
.y
,
1565 lpExtFloodFill
->crColor
,
1566 (UINT
)lpExtFloodFill
->iMode
);
1573 const EMRPOLYDRAW
*lpPolyDraw
= (const EMRPOLYDRAW
*)mr
;
1575 (const POINT
*)lpPolyDraw
->aptl
,
1576 lpPolyDraw
->abTypes
,
1577 (INT
)lpPolyDraw
->cptl
);
1582 case EMR_SETARCDIRECTION
:
1584 const EMRSETARCDIRECTION
*lpSetArcDirection
= (const EMRSETARCDIRECTION
*)mr
;
1585 SetArcDirection( hdc
, (INT
)lpSetArcDirection
->iArcDirection
);
1589 case EMR_SETMITERLIMIT
:
1591 const EMRSETMITERLIMIT
*lpSetMiterLimit
= (const EMRSETMITERLIMIT
*)mr
;
1592 SetMiterLimit( hdc
, lpSetMiterLimit
->eMiterLimit
, NULL
);
1608 case EMR_CLOSEFIGURE
:
1616 /*const EMRFILLPATH lpFillPath = (const EMRFILLPATH *)mr;*/
1621 case EMR_STROKEANDFILLPATH
:
1623 /*const EMRSTROKEANDFILLPATH lpStrokeAndFillPath = (const EMRSTROKEANDFILLPATH *)mr;*/
1624 StrokeAndFillPath( hdc
);
1628 case EMR_STROKEPATH
:
1630 /*const EMRSTROKEPATH lpStrokePath = (const EMRSTROKEPATH *)mr;*/
1635 case EMR_FLATTENPATH
:
1647 case EMR_SELECTCLIPPATH
:
1649 const EMRSELECTCLIPPATH
*lpSelectClipPath
= (const EMRSELECTCLIPPATH
*)mr
;
1650 SelectClipPath( hdc
, (INT
)lpSelectClipPath
->iMode
);
1660 case EMR_CREATECOLORSPACE
:
1662 PEMRCREATECOLORSPACE lpCreateColorSpace
= (PEMRCREATECOLORSPACE
)mr
;
1663 (handletable
->objectHandle
)[lpCreateColorSpace
->ihCS
] =
1664 CreateColorSpaceA( &lpCreateColorSpace
->lcs
);
1668 case EMR_SETCOLORSPACE
:
1670 const EMRSETCOLORSPACE
*lpSetColorSpace
= (const EMRSETCOLORSPACE
*)mr
;
1672 (handletable
->objectHandle
)[lpSetColorSpace
->ihCS
] );
1676 case EMR_DELETECOLORSPACE
:
1678 const EMRDELETECOLORSPACE
*lpDeleteColorSpace
= (const EMRDELETECOLORSPACE
*)mr
;
1679 DeleteColorSpace( (handletable
->objectHandle
)[lpDeleteColorSpace
->ihCS
] );
1683 case EMR_SETICMMODE
:
1685 const EMRSETICMMODE
*lpSetICMMode
= (const EMRSETICMMODE
*)mr
;
1686 SetICMMode( hdc
, (INT
)lpSetICMMode
->iMode
);
1690 case EMR_PIXELFORMAT
:
1693 const EMRPIXELFORMAT
*lpPixelFormat
= (const EMRPIXELFORMAT
*)mr
;
1695 iPixelFormat
= ChoosePixelFormat( hdc
, &lpPixelFormat
->pfd
);
1696 SetPixelFormat( hdc
, iPixelFormat
, &lpPixelFormat
->pfd
);
1701 case EMR_SETPALETTEENTRIES
:
1703 const EMRSETPALETTEENTRIES
*lpSetPaletteEntries
= (const EMRSETPALETTEENTRIES
*)mr
;
1705 SetPaletteEntries( (handletable
->objectHandle
)[lpSetPaletteEntries
->ihPal
],
1706 (UINT
)lpSetPaletteEntries
->iStart
,
1707 (UINT
)lpSetPaletteEntries
->cEntries
,
1708 lpSetPaletteEntries
->aPalEntries
);
1713 case EMR_RESIZEPALETTE
:
1715 const EMRRESIZEPALETTE
*lpResizePalette
= (const EMRRESIZEPALETTE
*)mr
;
1717 ResizePalette( (handletable
->objectHandle
)[lpResizePalette
->ihPal
],
1718 (UINT
)lpResizePalette
->cEntries
);
1723 case EMR_CREATEDIBPATTERNBRUSHPT
:
1725 const EMRCREATEDIBPATTERNBRUSHPT
*lpCreate
= (const EMRCREATEDIBPATTERNBRUSHPT
*)mr
;
1726 LPVOID lpPackedStruct
;
1728 /* Check that offsets and data are contained within the record
1729 * (including checking for wrap-arounds).
1731 if ( lpCreate
->offBmi
+ lpCreate
->cbBmi
> mr
->nSize
1732 || lpCreate
->offBits
+ lpCreate
->cbBits
> mr
->nSize
1733 || lpCreate
->offBmi
+ lpCreate
->cbBmi
< lpCreate
->offBmi
1734 || lpCreate
->offBits
+ lpCreate
->cbBits
< lpCreate
->offBits
)
1736 ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
1740 /* This is a BITMAPINFO struct followed directly by bitmap bits */
1741 lpPackedStruct
= HeapAlloc( GetProcessHeap(), 0,
1742 lpCreate
->cbBmi
+ lpCreate
->cbBits
);
1745 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
1749 /* Now pack this structure */
1750 memcpy( lpPackedStruct
,
1751 ((const BYTE
*)lpCreate
) + lpCreate
->offBmi
,
1753 memcpy( ((BYTE
*)lpPackedStruct
) + lpCreate
->cbBmi
,
1754 ((const BYTE
*)lpCreate
) + lpCreate
->offBits
,
1757 (handletable
->objectHandle
)[lpCreate
->ihBrush
] =
1758 CreateDIBPatternBrushPt( lpPackedStruct
,
1759 (UINT
)lpCreate
->iUsage
);
1761 HeapFree(GetProcessHeap(), 0, lpPackedStruct
);
1765 case EMR_CREATEMONOBRUSH
:
1767 const EMRCREATEMONOBRUSH
*pCreateMonoBrush
= (const EMRCREATEMONOBRUSH
*)mr
;
1768 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pCreateMonoBrush
->offBmi
);
1771 /* Need to check if the bitmap is monochrome, and if the
1772 two colors are really black and white */
1773 if (pCreateMonoBrush
->iUsage
== DIB_PAL_MONO
)
1777 /* Undocumented iUsage indicates a mono bitmap with no palette table,
1778 * aligned to 32 rather than 16 bits.
1781 bm
.bmWidth
= pbi
->bmiHeader
.biWidth
;
1782 bm
.bmHeight
= abs(pbi
->bmiHeader
.biHeight
);
1783 bm
.bmWidthBytes
= 4 * ((pbi
->bmiHeader
.biWidth
+ 31) / 32);
1784 bm
.bmPlanes
= pbi
->bmiHeader
.biPlanes
;
1785 bm
.bmBitsPixel
= pbi
->bmiHeader
.biBitCount
;
1786 bm
.bmBits
= (BYTE
*)mr
+ pCreateMonoBrush
->offBits
;
1787 hBmp
= CreateBitmapIndirect(&bm
);
1789 else if (is_dib_monochrome(pbi
))
1791 /* Top-down DIBs have a negative height */
1792 LONG height
= pbi
->bmiHeader
.biHeight
;
1794 hBmp
= CreateBitmap(pbi
->bmiHeader
.biWidth
, abs(height
), 1, 1, NULL
);
1795 SetDIBits(hdc
, hBmp
, 0, pbi
->bmiHeader
.biHeight
,
1796 (const BYTE
*)mr
+ pCreateMonoBrush
->offBits
, pbi
, pCreateMonoBrush
->iUsage
);
1800 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1801 (const BYTE
*)mr
+ pCreateMonoBrush
->offBits
, pbi
, pCreateMonoBrush
->iUsage
);
1804 (handletable
->objectHandle
)[pCreateMonoBrush
->ihBrush
] = CreatePatternBrush(hBmp
);
1806 /* CreatePatternBrush created a copy of the bitmap */
1813 const EMRBITBLT
*pBitBlt
= (const EMRBITBLT
*)mr
;
1815 if(pBitBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1816 PatBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1818 } else { /* BitBlt */
1819 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1820 HBRUSH hBrush
, hBrushOld
;
1821 HBITMAP hBmp
= 0, hBmpOld
= 0;
1822 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pBitBlt
->offBmiSrc
);
1824 SetWorldTransform(hdcSrc
, &pBitBlt
->xformSrc
);
1826 hBrush
= CreateSolidBrush(pBitBlt
->crBkColorSrc
);
1827 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1828 PatBlt(hdcSrc
, pBitBlt
->rclBounds
.left
, pBitBlt
->rclBounds
.top
,
1829 pBitBlt
->rclBounds
.right
- pBitBlt
->rclBounds
.left
,
1830 pBitBlt
->rclBounds
.bottom
- pBitBlt
->rclBounds
.top
, PATCOPY
);
1831 SelectObject(hdcSrc
, hBrushOld
);
1832 DeleteObject(hBrush
);
1834 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1835 (const BYTE
*)mr
+ pBitBlt
->offBitsSrc
, pbi
, pBitBlt
->iUsageSrc
);
1836 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1838 BitBlt(hdc
, pBitBlt
->xDest
, pBitBlt
->yDest
, pBitBlt
->cxDest
, pBitBlt
->cyDest
,
1839 hdcSrc
, pBitBlt
->xSrc
, pBitBlt
->ySrc
, pBitBlt
->dwRop
);
1841 SelectObject(hdcSrc
, hBmpOld
);
1848 case EMR_STRETCHBLT
:
1850 const EMRSTRETCHBLT
*pStretchBlt
= (const EMRSTRETCHBLT
*)mr
;
1852 TRACE("EMR_STRETCHBLT: %d, %d %dx%d -> %d, %d %dx%d. rop %08x offBitsSrc %d\n",
1853 pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1854 pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1855 pStretchBlt
->dwRop
, pStretchBlt
->offBitsSrc
);
1857 if(pStretchBlt
->offBmiSrc
== 0) { /* Record is a PatBlt */
1858 PatBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1859 pStretchBlt
->dwRop
);
1860 } else { /* StretchBlt */
1861 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1862 HBRUSH hBrush
, hBrushOld
;
1863 HBITMAP hBmp
= 0, hBmpOld
= 0;
1864 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pStretchBlt
->offBmiSrc
);
1866 SetWorldTransform(hdcSrc
, &pStretchBlt
->xformSrc
);
1868 hBrush
= CreateSolidBrush(pStretchBlt
->crBkColorSrc
);
1869 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1870 PatBlt(hdcSrc
, pStretchBlt
->rclBounds
.left
, pStretchBlt
->rclBounds
.top
,
1871 pStretchBlt
->rclBounds
.right
- pStretchBlt
->rclBounds
.left
,
1872 pStretchBlt
->rclBounds
.bottom
- pStretchBlt
->rclBounds
.top
, PATCOPY
);
1873 SelectObject(hdcSrc
, hBrushOld
);
1874 DeleteObject(hBrush
);
1876 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1877 (const BYTE
*)mr
+ pStretchBlt
->offBitsSrc
, pbi
, pStretchBlt
->iUsageSrc
);
1878 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1880 StretchBlt(hdc
, pStretchBlt
->xDest
, pStretchBlt
->yDest
, pStretchBlt
->cxDest
, pStretchBlt
->cyDest
,
1881 hdcSrc
, pStretchBlt
->xSrc
, pStretchBlt
->ySrc
, pStretchBlt
->cxSrc
, pStretchBlt
->cySrc
,
1882 pStretchBlt
->dwRop
);
1884 SelectObject(hdcSrc
, hBmpOld
);
1891 case EMR_ALPHABLEND
:
1893 const EMRALPHABLEND
*pAlphaBlend
= (const EMRALPHABLEND
*)mr
;
1895 TRACE("EMR_ALPHABLEND: %d, %d %dx%d -> %d, %d %dx%d. blendfn %08x offBitsSrc %d\n",
1896 pAlphaBlend
->xSrc
, pAlphaBlend
->ySrc
, pAlphaBlend
->cxSrc
, pAlphaBlend
->cySrc
,
1897 pAlphaBlend
->xDest
, pAlphaBlend
->yDest
, pAlphaBlend
->cxDest
, pAlphaBlend
->cyDest
,
1898 pAlphaBlend
->dwRop
, pAlphaBlend
->offBitsSrc
);
1900 if(pAlphaBlend
->offBmiSrc
== 0) {
1901 FIXME("EMR_ALPHABLEND: offBmiSrc == 0\n");
1903 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1904 HBITMAP hBmp
= 0, hBmpOld
= 0;
1905 const BITMAPINFO
*pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pAlphaBlend
->offBmiSrc
);
1908 SetWorldTransform(hdcSrc
, &pAlphaBlend
->xformSrc
);
1910 hBmp
= CreateDIBSection(hdc
, pbi
, pAlphaBlend
->iUsageSrc
, &bits
, NULL
, 0);
1911 memcpy(bits
, (const BYTE
*)mr
+ pAlphaBlend
->offBitsSrc
, pAlphaBlend
->cbBitsSrc
);
1912 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1914 GdiAlphaBlend(hdc
, pAlphaBlend
->xDest
, pAlphaBlend
->yDest
, pAlphaBlend
->cxDest
, pAlphaBlend
->cyDest
,
1915 hdcSrc
, pAlphaBlend
->xSrc
, pAlphaBlend
->ySrc
, pAlphaBlend
->cxSrc
, pAlphaBlend
->cySrc
,
1916 *(BLENDFUNCTION
*)&pAlphaBlend
->dwRop
);
1918 SelectObject(hdcSrc
, hBmpOld
);
1927 const EMRMASKBLT
*pMaskBlt
= (const EMRMASKBLT
*)mr
;
1928 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1929 HBRUSH hBrush
, hBrushOld
;
1930 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1931 const BITMAPINFO
*pbi
;
1933 SetWorldTransform(hdcSrc
, &pMaskBlt
->xformSrc
);
1935 hBrush
= CreateSolidBrush(pMaskBlt
->crBkColorSrc
);
1936 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1937 PatBlt(hdcSrc
, pMaskBlt
->rclBounds
.left
, pMaskBlt
->rclBounds
.top
,
1938 pMaskBlt
->rclBounds
.right
- pMaskBlt
->rclBounds
.left
,
1939 pMaskBlt
->rclBounds
.bottom
- pMaskBlt
->rclBounds
.top
, PATCOPY
);
1940 SelectObject(hdcSrc
, hBrushOld
);
1941 DeleteObject(hBrush
);
1943 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pMaskBlt
->offBmiMask
);
1944 hBmpMask
= CreateBitmap(pbi
->bmiHeader
.biWidth
, pbi
->bmiHeader
.biHeight
,
1946 SetDIBits(hdc
, hBmpMask
, 0, pbi
->bmiHeader
.biHeight
,
1947 (const BYTE
*)mr
+ pMaskBlt
->offBitsMask
, pbi
, pMaskBlt
->iUsageMask
);
1949 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pMaskBlt
->offBmiSrc
);
1950 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
1951 (const BYTE
*)mr
+ pMaskBlt
->offBitsSrc
, pbi
, pMaskBlt
->iUsageSrc
);
1952 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
1965 SelectObject(hdcSrc
, hBmpOld
);
1967 DeleteObject(hBmpMask
);
1974 const EMRPLGBLT
*pPlgBlt
= (const EMRPLGBLT
*)mr
;
1975 HDC hdcSrc
= CreateCompatibleDC(hdc
);
1976 HBRUSH hBrush
, hBrushOld
;
1977 HBITMAP hBmp
, hBmpOld
, hBmpMask
;
1978 const BITMAPINFO
*pbi
;
1981 SetWorldTransform(hdcSrc
, &pPlgBlt
->xformSrc
);
1983 pts
[0].x
= pPlgBlt
->aptlDest
[0].x
; pts
[0].y
= pPlgBlt
->aptlDest
[0].y
;
1984 pts
[1].x
= pPlgBlt
->aptlDest
[1].x
; pts
[1].y
= pPlgBlt
->aptlDest
[1].y
;
1985 pts
[2].x
= pPlgBlt
->aptlDest
[2].x
; pts
[2].y
= pPlgBlt
->aptlDest
[2].y
;
1987 hBrush
= CreateSolidBrush(pPlgBlt
->crBkColorSrc
);
1988 hBrushOld
= SelectObject(hdcSrc
, hBrush
);
1989 PatBlt(hdcSrc
, pPlgBlt
->rclBounds
.left
, pPlgBlt
->rclBounds
.top
,
1990 pPlgBlt
->rclBounds
.right
- pPlgBlt
->rclBounds
.left
,
1991 pPlgBlt
->rclBounds
.bottom
- pPlgBlt
->rclBounds
.top
, PATCOPY
);
1992 SelectObject(hdcSrc
, hBrushOld
);
1993 DeleteObject(hBrush
);
1995 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pPlgBlt
->offBmiMask
);
1996 hBmpMask
= CreateBitmap(pbi
->bmiHeader
.biWidth
, pbi
->bmiHeader
.biHeight
,
1998 SetDIBits(hdc
, hBmpMask
, 0, pbi
->bmiHeader
.biHeight
,
1999 (const BYTE
*)mr
+ pPlgBlt
->offBitsMask
, pbi
, pPlgBlt
->iUsageMask
);
2001 pbi
= (const BITMAPINFO
*)((const BYTE
*)mr
+ pPlgBlt
->offBmiSrc
);
2002 hBmp
= CreateDIBitmap(hdc
, (const BITMAPINFOHEADER
*)pbi
, CBM_INIT
,
2003 (const BYTE
*)mr
+ pPlgBlt
->offBitsSrc
, pbi
, pPlgBlt
->iUsageSrc
);
2004 hBmpOld
= SelectObject(hdcSrc
, hBmp
);
2015 SelectObject(hdcSrc
, hBmpOld
);
2017 DeleteObject(hBmpMask
);
2022 case EMR_SETDIBITSTODEVICE
:
2024 const EMRSETDIBITSTODEVICE
*pSetDIBitsToDevice
= (const EMRSETDIBITSTODEVICE
*)mr
;
2026 SetDIBitsToDevice(hdc
,
2027 pSetDIBitsToDevice
->xDest
,
2028 pSetDIBitsToDevice
->yDest
,
2029 pSetDIBitsToDevice
->cxSrc
,
2030 pSetDIBitsToDevice
->cySrc
,
2031 pSetDIBitsToDevice
->xSrc
,
2032 pSetDIBitsToDevice
->ySrc
,
2033 pSetDIBitsToDevice
->iStartScan
,
2034 pSetDIBitsToDevice
->cScans
,
2035 (const BYTE
*)mr
+ pSetDIBitsToDevice
->offBitsSrc
,
2036 (const BITMAPINFO
*)((const BYTE
*)mr
+ pSetDIBitsToDevice
->offBmiSrc
),
2037 pSetDIBitsToDevice
->iUsageSrc
);
2041 case EMR_POLYTEXTOUTA
:
2043 const EMRPOLYTEXTOUTA
*pPolyTextOutA
= (const EMRPOLYTEXTOUTA
*)mr
;
2044 POLYTEXTA
*polytextA
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA
->cStrings
* sizeof(POLYTEXTA
));
2046 XFORM xform
, xformOld
;
2049 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutA
->iGraphicsMode
);
2050 GetWorldTransform(hdc
, &xformOld
);
2052 xform
.eM11
= pPolyTextOutA
->exScale
;
2055 xform
.eM22
= pPolyTextOutA
->eyScale
;
2058 SetWorldTransform(hdc
, &xform
);
2060 /* Set up POLYTEXTA structures */
2061 for(i
= 0; i
< pPolyTextOutA
->cStrings
; i
++)
2063 polytextA
[i
].x
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.x
;
2064 polytextA
[i
].y
= pPolyTextOutA
->aemrtext
[i
].ptlReference
.y
;
2065 polytextA
[i
].n
= pPolyTextOutA
->aemrtext
[i
].nChars
;
2066 polytextA
[i
].lpstr
= (LPCSTR
)((const BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offString
);
2067 polytextA
[i
].uiFlags
= pPolyTextOutA
->aemrtext
[i
].fOptions
;
2068 polytextA
[i
].rcl
.left
= pPolyTextOutA
->aemrtext
[i
].rcl
.left
;
2069 polytextA
[i
].rcl
.right
= pPolyTextOutA
->aemrtext
[i
].rcl
.right
;
2070 polytextA
[i
].rcl
.top
= pPolyTextOutA
->aemrtext
[i
].rcl
.top
;
2071 polytextA
[i
].rcl
.bottom
= pPolyTextOutA
->aemrtext
[i
].rcl
.bottom
;
2072 polytextA
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutA
->aemrtext
[i
].offDx
);
2074 PolyTextOutA(hdc
, polytextA
, pPolyTextOutA
->cStrings
);
2075 HeapFree(GetProcessHeap(), 0, polytextA
);
2077 SetWorldTransform(hdc
, &xformOld
);
2078 SetGraphicsMode(hdc
, gModeOld
);
2082 case EMR_POLYTEXTOUTW
:
2084 const EMRPOLYTEXTOUTW
*pPolyTextOutW
= (const EMRPOLYTEXTOUTW
*)mr
;
2085 POLYTEXTW
*polytextW
= HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW
->cStrings
* sizeof(POLYTEXTW
));
2087 XFORM xform
, xformOld
;
2090 gModeOld
= SetGraphicsMode(hdc
, pPolyTextOutW
->iGraphicsMode
);
2091 GetWorldTransform(hdc
, &xformOld
);
2093 xform
.eM11
= pPolyTextOutW
->exScale
;
2096 xform
.eM22
= pPolyTextOutW
->eyScale
;
2099 SetWorldTransform(hdc
, &xform
);
2101 /* Set up POLYTEXTW structures */
2102 for(i
= 0; i
< pPolyTextOutW
->cStrings
; i
++)
2104 polytextW
[i
].x
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.x
;
2105 polytextW
[i
].y
= pPolyTextOutW
->aemrtext
[i
].ptlReference
.y
;
2106 polytextW
[i
].n
= pPolyTextOutW
->aemrtext
[i
].nChars
;
2107 polytextW
[i
].lpstr
= (LPCWSTR
)((const BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offString
);
2108 polytextW
[i
].uiFlags
= pPolyTextOutW
->aemrtext
[i
].fOptions
;
2109 polytextW
[i
].rcl
.left
= pPolyTextOutW
->aemrtext
[i
].rcl
.left
;
2110 polytextW
[i
].rcl
.right
= pPolyTextOutW
->aemrtext
[i
].rcl
.right
;
2111 polytextW
[i
].rcl
.top
= pPolyTextOutW
->aemrtext
[i
].rcl
.top
;
2112 polytextW
[i
].rcl
.bottom
= pPolyTextOutW
->aemrtext
[i
].rcl
.bottom
;
2113 polytextW
[i
].pdx
= (int *)((BYTE
*)mr
+ pPolyTextOutW
->aemrtext
[i
].offDx
);
2115 PolyTextOutW(hdc
, polytextW
, pPolyTextOutW
->cStrings
);
2116 HeapFree(GetProcessHeap(), 0, polytextW
);
2118 SetWorldTransform(hdc
, &xformOld
);
2119 SetGraphicsMode(hdc
, gModeOld
);
2125 const EMRFILLRGN
*pFillRgn
= (const EMRFILLRGN
*)mr
;
2126 HRGN hRgn
= ExtCreateRegion(NULL
, pFillRgn
->cbRgnData
, (const RGNDATA
*)pFillRgn
->RgnData
);
2129 (handletable
->objectHandle
)[pFillRgn
->ihBrush
]);
2136 const EMRFRAMERGN
*pFrameRgn
= (const EMRFRAMERGN
*)mr
;
2137 HRGN hRgn
= ExtCreateRegion(NULL
, pFrameRgn
->cbRgnData
, (const RGNDATA
*)pFrameRgn
->RgnData
);
2140 (handletable
->objectHandle
)[pFrameRgn
->ihBrush
],
2141 pFrameRgn
->szlStroke
.cx
,
2142 pFrameRgn
->szlStroke
.cy
);
2149 const EMRINVERTRGN
*pInvertRgn
= (const EMRINVERTRGN
*)mr
;
2150 HRGN hRgn
= ExtCreateRegion(NULL
, pInvertRgn
->cbRgnData
, (const RGNDATA
*)pInvertRgn
->RgnData
);
2151 InvertRgn(hdc
, hRgn
);
2158 const EMRPAINTRGN
*pPaintRgn
= (const EMRPAINTRGN
*)mr
;
2159 HRGN hRgn
= ExtCreateRegion(NULL
, pPaintRgn
->cbRgnData
, (const RGNDATA
*)pPaintRgn
->RgnData
);
2160 PaintRgn(hdc
, hRgn
);
2165 case EMR_SETTEXTJUSTIFICATION
:
2167 const EMRSETTEXTJUSTIFICATION
*pSetTextJust
= (const EMRSETTEXTJUSTIFICATION
*)mr
;
2168 SetTextJustification(hdc
, pSetTextJust
->nBreakExtra
, pSetTextJust
->nBreakCount
);
2174 const EMRSETLAYOUT
*pSetLayout
= (const EMRSETLAYOUT
*)mr
;
2175 SetLayout(hdc
, pSetLayout
->iMode
);
2179 case EMR_POLYDRAW16
:
2181 case EMR_GLSBOUNDEDRECORD
:
2182 case EMR_DRAWESCAPE
:
2185 case EMR_SMALLTEXTOUT
:
2186 case EMR_FORCEUFIMAPPING
:
2187 case EMR_NAMEDESCAPE
:
2188 case EMR_COLORCORRECTPALETTE
:
2189 case EMR_SETICMPROFILEA
:
2190 case EMR_SETICMPROFILEW
:
2191 case EMR_TRANSPARENTBLT
:
2192 case EMR_GRADIENTFILL
:
2193 case EMR_SETLINKEDUFI
:
2194 case EMR_COLORMATCHTOTARGETW
:
2195 case EMR_CREATECOLORSPACEW
:
2198 /* From docs: If PlayEnhMetaFileRecord doesn't recognize a
2199 record then ignore and return TRUE. */
2200 FIXME("type %d is unimplemented\n", type
);
2203 tmprc
.left
= tmprc
.top
= 0;
2204 tmprc
.right
= tmprc
.bottom
= 1000;
2205 LPtoDP(hdc
, (POINT
*)&tmprc
, 2);
2206 TRACE("L:0,0 - 1000,1000 -> D:%d,%d - %d,%d\n", tmprc
.left
,
2207 tmprc
.top
, tmprc
.right
, tmprc
.bottom
);
2213 /*****************************************************************************
2215 * EnumEnhMetaFile (GDI32.@)
2217 * Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
2219 * record. Returns when either every record has been used or
2220 * when _EnhMetaFunc_ returns FALSE.
2224 * TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
2231 * This function behaves differently in Win9x and WinNT.
2233 * In WinNT, the DC's world transform is updated as the EMF changes
2234 * the Window/Viewport Extent and Origin or it's world transform.
2235 * The actual Window/Viewport Extent and Origin are left untouched.
2237 * In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
2238 * updates the scaling itself but only just before a record that
2239 * writes anything to the DC.
2241 * I'm not sure where the data (enum_emh_data) is stored in either
2242 * version. For this implementation, it is stored before the handle
2243 * table, but it could be stored in the DC, in the EMF handle or in
2247 BOOL WINAPI
EnumEnhMetaFile(
2248 HDC hdc
, /* [in] device context to pass to _EnhMetaFunc_ */
2249 HENHMETAFILE hmf
, /* [in] EMF to walk */
2250 ENHMFENUMPROC callback
, /* [in] callback function */
2251 LPVOID data
, /* [in] optional data for callback function */
2252 const RECT
*lpRect
/* [in] bounding rectangle for rendered metafile */
2264 HBRUSH hBrush
= NULL
;
2267 enum_emh_data
*info
;
2268 SIZE vp_size
, win_size
;
2269 POINT vp_org
, win_org
;
2270 INT mapMode
= MM_TEXT
, old_align
= 0, old_rop2
= 0, old_arcdir
= 0, old_polyfill
= 0, old_stretchblt
= 0;
2271 COLORREF old_text_color
= 0, old_bk_color
= 0;
2275 SetLastError(ERROR_INVALID_PARAMETER
);
2279 emh
= EMF_GetEnhMetaHeader(hmf
);
2281 SetLastError(ERROR_INVALID_HANDLE
);
2285 info
= HeapAlloc( GetProcessHeap(), 0,
2286 sizeof (enum_emh_data
) + sizeof(HANDLETABLE
) * emh
->nHandles
);
2289 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2292 info
->state
.wndOrgX
= 0;
2293 info
->state
.wndOrgY
= 0;
2294 info
->state
.wndExtX
= 1;
2295 info
->state
.wndExtY
= 1;
2296 info
->state
.vportOrgX
= 0;
2297 info
->state
.vportOrgY
= 0;
2298 info
->state
.vportExtX
= 1;
2299 info
->state
.vportExtY
= 1;
2300 info
->state
.world_transform
.eM11
= info
->state
.world_transform
.eM22
= 1;
2301 info
->state
.world_transform
.eM12
= info
->state
.world_transform
.eM21
= 0;
2302 info
->state
.world_transform
.eDx
= info
->state
.world_transform
.eDy
= 0;
2304 info
->state
.next
= NULL
;
2305 info
->save_level
= 0;
2306 info
->saved_state
= NULL
;
2308 ht
= (HANDLETABLE
*) &info
[1];
2309 ht
->objectHandle
[0] = hmf
;
2310 for(i
= 1; i
< emh
->nHandles
; i
++)
2311 ht
->objectHandle
[i
] = NULL
;
2315 savedMode
= SetGraphicsMode(hdc
, GM_ADVANCED
);
2316 GetWorldTransform(hdc
, &savedXform
);
2317 GetViewportExtEx(hdc
, &vp_size
);
2318 GetWindowExtEx(hdc
, &win_size
);
2319 GetViewportOrgEx(hdc
, &vp_org
);
2320 GetWindowOrgEx(hdc
, &win_org
);
2321 mapMode
= GetMapMode(hdc
);
2324 hPen
= GetCurrentObject(hdc
, OBJ_PEN
);
2325 hBrush
= GetCurrentObject(hdc
, OBJ_BRUSH
);
2326 hFont
= GetCurrentObject(hdc
, OBJ_FONT
);
2328 hRgn
= CreateRectRgn(0, 0, 0, 0);
2329 if (!GetClipRgn(hdc
, hRgn
))
2335 old_text_color
= SetTextColor(hdc
, RGB(0,0,0));
2336 old_bk_color
= SetBkColor(hdc
, RGB(0xff, 0xff, 0xff));
2337 old_align
= SetTextAlign(hdc
, 0);
2338 old_rop2
= SetROP2(hdc
, R2_COPYPEN
);
2339 old_arcdir
= SetArcDirection(hdc
, AD_COUNTERCLOCKWISE
);
2340 old_polyfill
= SetPolyFillMode(hdc
, ALTERNATE
);
2341 old_stretchblt
= SetStretchBltMode(hdc
, BLACKONWHITE
);
2344 info
->state
.mode
= MM_TEXT
;
2348 /* Win95 leaves the vp/win ext/org info alone */
2349 info
->init_transform
.eM11
= 1.0;
2350 info
->init_transform
.eM12
= 0.0;
2351 info
->init_transform
.eM21
= 0.0;
2352 info
->init_transform
.eM22
= 1.0;
2353 info
->init_transform
.eDx
= 0.0;
2354 info
->init_transform
.eDy
= 0.0;
2358 /* WinNT combines the vp/win ext/org info into a transform */
2359 double xscale
, yscale
;
2360 xscale
= (double)vp_size
.cx
/ (double)win_size
.cx
;
2361 yscale
= (double)vp_size
.cy
/ (double)win_size
.cy
;
2362 info
->init_transform
.eM11
= xscale
;
2363 info
->init_transform
.eM12
= 0.0;
2364 info
->init_transform
.eM21
= 0.0;
2365 info
->init_transform
.eM22
= yscale
;
2366 info
->init_transform
.eDx
= (double)vp_org
.x
- xscale
* (double)win_org
.x
;
2367 info
->init_transform
.eDy
= (double)vp_org
.y
- yscale
* (double)win_org
.y
;
2369 CombineTransform(&info
->init_transform
, &savedXform
, &info
->init_transform
);
2372 if ( lpRect
&& WIDTH(emh
->rclFrame
) && HEIGHT(emh
->rclFrame
) )
2374 double xSrcPixSize
, ySrcPixSize
, xscale
, yscale
;
2377 TRACE("rect: %d,%d - %d,%d. rclFrame: %d,%d - %d,%d\n",
2378 lpRect
->left
, lpRect
->top
, lpRect
->right
, lpRect
->bottom
,
2379 emh
->rclFrame
.left
, emh
->rclFrame
.top
, emh
->rclFrame
.right
,
2380 emh
->rclFrame
.bottom
);
2382 xSrcPixSize
= (double) emh
->szlMillimeters
.cx
/ emh
->szlDevice
.cx
;
2383 ySrcPixSize
= (double) emh
->szlMillimeters
.cy
/ emh
->szlDevice
.cy
;
2384 xscale
= (double) WIDTH(*lpRect
) * 100.0 /
2385 WIDTH(emh
->rclFrame
) * xSrcPixSize
;
2386 yscale
= (double) HEIGHT(*lpRect
) * 100.0 /
2387 HEIGHT(emh
->rclFrame
) * ySrcPixSize
;
2388 TRACE("xscale = %f, yscale = %f\n", xscale
, yscale
);
2390 xform
.eM11
= xscale
;
2393 xform
.eM22
= yscale
;
2394 xform
.eDx
= (double) lpRect
->left
- (double) WIDTH(*lpRect
) / WIDTH(emh
->rclFrame
) * emh
->rclFrame
.left
;
2395 xform
.eDy
= (double) lpRect
->top
- (double) HEIGHT(*lpRect
) / HEIGHT(emh
->rclFrame
) * emh
->rclFrame
.top
;
2397 CombineTransform(&info
->init_transform
, &xform
, &info
->init_transform
);
2400 /* WinNT resets the current vp/win org/ext */
2401 if ( !IS_WIN9X() && hdc
)
2403 SetMapMode(hdc
, MM_TEXT
);
2404 SetWindowOrgEx(hdc
, 0, 0, NULL
);
2405 SetViewportOrgEx(hdc
, 0, 0, NULL
);
2406 EMF_Update_MF_Xform(hdc
, info
);
2411 while(ret
&& offset
< emh
->nBytes
)
2413 emr
= (ENHMETARECORD
*)((char *)emh
+ offset
);
2415 /* In Win9x mode we update the xform if the record will produce output */
2416 if (hdc
&& IS_WIN9X() && emr_produces_output(emr
->iType
))
2417 EMF_Update_MF_Xform(hdc
, info
);
2419 TRACE("Calling EnumFunc with record %s, size %d\n", get_emr_name(emr
->iType
), emr
->nSize
);
2420 ret
= (*callback
)(hdc
, ht
, emr
, emh
->nHandles
, (LPARAM
)data
);
2421 offset
+= emr
->nSize
;
2423 /* WinNT - update the transform (win9x updates when the next graphics
2424 output record is played). */
2425 if (hdc
&& !IS_WIN9X())
2426 EMF_Update_MF_Xform(hdc
, info
);
2431 SetStretchBltMode(hdc
, old_stretchblt
);
2432 SetPolyFillMode(hdc
, old_polyfill
);
2433 SetArcDirection(hdc
, old_arcdir
);
2434 SetROP2(hdc
, old_rop2
);
2435 SetTextAlign(hdc
, old_align
);
2436 SetBkColor(hdc
, old_bk_color
);
2437 SetTextColor(hdc
, old_text_color
);
2440 SelectObject(hdc
, hBrush
);
2441 SelectObject(hdc
, hPen
);
2442 SelectObject(hdc
, hFont
);
2443 ExtSelectClipRgn(hdc
, hRgn
, RGN_COPY
);
2446 SetWorldTransform(hdc
, &savedXform
);
2448 SetGraphicsMode(hdc
, savedMode
);
2449 SetMapMode(hdc
, mapMode
);
2450 SetWindowOrgEx(hdc
, win_org
.x
, win_org
.y
, NULL
);
2451 SetWindowExtEx(hdc
, win_size
.cx
, win_size
.cy
, NULL
);
2452 SetViewportOrgEx(hdc
, vp_org
.x
, vp_org
.y
, NULL
);
2453 SetViewportExtEx(hdc
, vp_size
.cx
, vp_size
.cy
, NULL
);
2456 for(i
= 1; i
< emh
->nHandles
; i
++) /* Don't delete element 0 (hmf) */
2457 if( (ht
->objectHandle
)[i
] )
2458 DeleteObject( (ht
->objectHandle
)[i
] );
2460 while (info
->saved_state
)
2462 EMF_dc_state
*state
= info
->saved_state
;
2463 info
->saved_state
= info
->saved_state
->next
;
2464 HeapFree( GetProcessHeap(), 0, state
);
2466 HeapFree( GetProcessHeap(), 0, info
);
2470 static INT CALLBACK
EMF_PlayEnhMetaFileCallback(HDC hdc
, HANDLETABLE
*ht
,
2471 const ENHMETARECORD
*emr
,
2472 INT handles
, LPARAM data
)
2474 return PlayEnhMetaFileRecord(hdc
, ht
, emr
, handles
);
2477 /**************************************************************************
2478 * PlayEnhMetaFile (GDI32.@)
2480 * Renders an enhanced metafile into a specified rectangle *lpRect
2481 * in device context hdc.
2487 BOOL WINAPI
PlayEnhMetaFile(
2488 HDC hdc
, /* [in] DC to render into */
2489 HENHMETAFILE hmf
, /* [in] metafile to render */
2490 const RECT
*lpRect
/* [in] rectangle to place metafile inside */
2493 return EnumEnhMetaFile(hdc
, hmf
, EMF_PlayEnhMetaFileCallback
, NULL
,
2497 /*****************************************************************************
2498 * DeleteEnhMetaFile (GDI32.@)
2500 * Deletes an enhanced metafile and frees the associated storage.
2502 BOOL WINAPI
DeleteEnhMetaFile(HENHMETAFILE hmf
)
2504 return EMF_Delete_HENHMETAFILE( hmf
);
2507 /*****************************************************************************
2508 * CopyEnhMetaFileA (GDI32.@)
2510 * Duplicate an enhanced metafile.
2514 HENHMETAFILE WINAPI
CopyEnhMetaFileA(
2515 HENHMETAFILE hmfSrc
,
2518 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2519 HENHMETAFILE hmfDst
;
2521 if(!emrSrc
) return FALSE
;
2523 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2524 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2525 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2527 HeapFree( GetProcessHeap(), 0, emrDst
);
2531 hFile
= CreateFileA( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2532 NULL
, CREATE_ALWAYS
, 0, 0);
2533 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, &w
, NULL
);
2534 CloseHandle( hFile
);
2535 /* Reopen file for reading only, so that apps can share
2536 read access to the file while hmf is still valid */
2537 hFile
= CreateFileA( file
, GENERIC_READ
, FILE_SHARE_READ
,
2538 NULL
, OPEN_EXISTING
, 0, 0);
2539 if(hFile
== INVALID_HANDLE_VALUE
) {
2540 ERR("Can't reopen emf for reading\n");
2543 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2544 CloseHandle( hFile
);
2549 /*****************************************************************************
2550 * CopyEnhMetaFileW (GDI32.@)
2552 * See CopyEnhMetaFileA.
2556 HENHMETAFILE WINAPI
CopyEnhMetaFileW(
2557 HENHMETAFILE hmfSrc
,
2560 ENHMETAHEADER
*emrSrc
= EMF_GetEnhMetaHeader( hmfSrc
), *emrDst
;
2561 HENHMETAFILE hmfDst
;
2563 if(!emrSrc
) return FALSE
;
2565 emrDst
= HeapAlloc( GetProcessHeap(), 0, emrSrc
->nBytes
);
2566 memcpy( emrDst
, emrSrc
, emrSrc
->nBytes
);
2567 hmfDst
= EMF_Create_HENHMETAFILE( emrDst
, FALSE
);
2569 HeapFree( GetProcessHeap(), 0, emrDst
);
2573 hFile
= CreateFileW( file
, GENERIC_WRITE
| GENERIC_READ
, 0,
2574 NULL
, CREATE_ALWAYS
, 0, 0);
2575 WriteFile( hFile
, emrSrc
, emrSrc
->nBytes
, &w
, NULL
);
2576 CloseHandle( hFile
);
2577 /* Reopen file for reading only, so that apps can share
2578 read access to the file while hmf is still valid */
2579 hFile
= CreateFileW( file
, GENERIC_READ
, FILE_SHARE_READ
,
2580 NULL
, OPEN_EXISTING
, 0, 0);
2581 if(hFile
== INVALID_HANDLE_VALUE
) {
2582 ERR("Can't reopen emf for reading\n");
2585 hmfDst
= EMF_GetEnhMetaFile( hFile
);
2586 CloseHandle( hFile
);
2592 /* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
2593 typedef struct tagEMF_PaletteCopy
2596 LPPALETTEENTRY lpPe
;
2599 /***************************************************************
2600 * Find the EMR_EOF record and then use it to find the
2601 * palette entries for this enhanced metafile.
2602 * The lpData is actually a pointer to an EMF_PaletteCopy struct
2603 * which contains the max number of elements to copy and where
2606 * NOTE: To be used by GetEnhMetaFilePaletteEntries only!
2608 static INT CALLBACK
cbEnhPaletteCopy( HDC a
,
2610 const ENHMETARECORD
*lpEMR
,
2615 if ( lpEMR
->iType
== EMR_EOF
)
2617 const EMREOF
*lpEof
= (const EMREOF
*)lpEMR
;
2618 EMF_PaletteCopy
* info
= (EMF_PaletteCopy
*)lpData
;
2619 DWORD dwNumPalToCopy
= min( lpEof
->nPalEntries
, info
->cEntries
);
2621 TRACE( "copying 0x%08x palettes\n", dwNumPalToCopy
);
2623 memcpy( info
->lpPe
, (LPCSTR
)lpEof
+ lpEof
->offPalEntries
,
2624 sizeof( *(info
->lpPe
) ) * dwNumPalToCopy
);
2626 /* Update the passed data as a return code */
2627 info
->lpPe
= NULL
; /* Palettes were copied! */
2628 info
->cEntries
= dwNumPalToCopy
;
2630 return FALSE
; /* That's all we need */
2636 /*****************************************************************************
2637 * GetEnhMetaFilePaletteEntries (GDI32.@)
2639 * Copy the palette and report size
2641 * BUGS: Error codes (SetLastError) are not set on failures
2643 UINT WINAPI
GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf
,
2645 LPPALETTEENTRY lpPe
)
2647 ENHMETAHEADER
* enhHeader
= EMF_GetEnhMetaHeader( hEmf
);
2648 EMF_PaletteCopy infoForCallBack
;
2650 TRACE( "(%p,%d,%p)\n", hEmf
, cEntries
, lpPe
);
2652 if (!enhHeader
) return 0;
2654 /* First check if there are any palettes associated with
2656 if ( enhHeader
->nPalEntries
== 0 ) return 0;
2658 /* Is the user requesting the number of palettes? */
2659 if ( lpPe
== NULL
) return enhHeader
->nPalEntries
;
2661 /* Copy cEntries worth of PALETTEENTRY structs into the buffer */
2662 infoForCallBack
.cEntries
= cEntries
;
2663 infoForCallBack
.lpPe
= lpPe
;
2665 if ( !EnumEnhMetaFile( 0, hEmf
, cbEnhPaletteCopy
,
2666 &infoForCallBack
, 0 ) )
2669 /* Verify that the callback executed correctly */
2670 if ( infoForCallBack
.lpPe
!= NULL
)
2672 /* Callback proc had error! */
2673 ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
2677 return infoForCallBack
.cEntries
;
2680 typedef struct gdi_mf_comment
2687 DWORD cbWinMetaFile
;
2690 /******************************************************************
2691 * SetWinMetaFileBits (GDI32.@)
2693 * Translate from old style to new style.
2696 HENHMETAFILE WINAPI
SetWinMetaFileBits(UINT cbBuffer
,
2697 CONST BYTE
*lpbBuffer
,
2699 CONST METAFILEPICT
*lpmfp
2702 static const WCHAR szDisplayW
[] = { 'D','I','S','P','L','A','Y','\0' };
2703 HMETAFILE hmf
= NULL
;
2704 HENHMETAFILE ret
= NULL
;
2705 HDC hdc
= NULL
, hdcdisp
= NULL
;
2706 RECT rc
, *prcFrame
= NULL
;
2707 LONG mm
, xExt
, yExt
;
2708 INT horzsize
, vertsize
, horzres
, vertres
;
2710 TRACE("(%d, %p, %p, %p)\n", cbBuffer
, lpbBuffer
, hdcRef
, lpmfp
);
2712 hmf
= SetMetaFileBitsEx(cbBuffer
, lpbBuffer
);
2715 WARN("SetMetaFileBitsEx failed\n");
2720 hdcRef
= hdcdisp
= CreateDCW(szDisplayW
, NULL
, NULL
, NULL
);
2724 TRACE("mm = %d %dx%d\n", lpmfp
->mm
, lpmfp
->xExt
, lpmfp
->yExt
);
2732 TRACE("lpmfp == NULL\n");
2734 /* Use the whole device surface */
2735 mm
= MM_ANISOTROPIC
;
2740 if (mm
== MM_ISOTROPIC
|| mm
== MM_ANISOTROPIC
)
2742 if (xExt
< 0 || yExt
< 0)
2744 /* Use the whole device surface */
2749 /* Use the x and y extents as the frame box */
2752 rc
.left
= rc
.top
= 0;
2759 if(!(hdc
= CreateEnhMetaFileW(hdcRef
, NULL
, prcFrame
, NULL
)))
2761 ERR("CreateEnhMetaFile failed\n");
2766 * Write the original METAFILE into the enhanced metafile.
2767 * It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
2771 gdi_mf_comment
*mfcomment
;
2772 UINT mfcomment_size
;
2774 mfcomment_size
= sizeof (gdi_mf_comment
) + cbBuffer
;
2775 mfcomment
= HeapAlloc(GetProcessHeap(), 0, mfcomment_size
);
2778 mfcomment
->ident
= GDICOMMENT_IDENTIFIER
;
2779 mfcomment
->iComment
= GDICOMMENT_WINDOWS_METAFILE
;
2780 mfcomment
->nVersion
= 0x00000300;
2781 mfcomment
->nChecksum
= 0; /* FIXME */
2782 mfcomment
->fFlags
= 0;
2783 mfcomment
->cbWinMetaFile
= cbBuffer
;
2784 memcpy(&mfcomment
[1], lpbBuffer
, cbBuffer
);
2785 GdiComment(hdc
, mfcomment_size
, (BYTE
*) mfcomment
);
2786 HeapFree(GetProcessHeap(), 0, mfcomment
);
2788 SetMapMode(hdc
, mm
);
2792 horzsize
= GetDeviceCaps(hdcRef
, HORZSIZE
);
2793 vertsize
= GetDeviceCaps(hdcRef
, VERTSIZE
);
2794 horzres
= GetDeviceCaps(hdcRef
, HORZRES
);
2795 vertres
= GetDeviceCaps(hdcRef
, VERTRES
);
2799 /* Use the whole device surface */
2805 xExt
= MulDiv(xExt
, horzres
, 100 * horzsize
);
2806 yExt
= MulDiv(yExt
, vertres
, 100 * vertsize
);
2809 /* set the initial viewport:window ratio as 1:1 */
2810 SetViewportExtEx(hdc
, xExt
, yExt
, NULL
);
2811 SetWindowExtEx(hdc
, xExt
, yExt
, NULL
);
2813 PlayMetaFile(hdc
, hmf
);
2815 ret
= CloseEnhMetaFile(hdc
);
2817 if (hdcdisp
) DeleteDC(hdcdisp
);
2818 DeleteMetaFile(hmf
);