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.elpStyleEntry);
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);
1906 BLENDFUNCTION blendfn;
1909 SetWorldTransform(hdcSrc, &pAlphaBlend->xformSrc);
1911 hBmp = CreateDIBSection(hdc, pbi, pAlphaBlend->iUsageSrc, &bits, NULL, 0);
1912 memcpy(bits, (const BYTE *)mr + pAlphaBlend->offBitsSrc, pAlphaBlend->cbBitsSrc);
1913 hBmpOld = SelectObject(hdcSrc, hBmp);
1915 blendfn.BlendOp = (pAlphaBlend->dwRop >> 24) & 0xff;
1916 blendfn.BlendFlags = (pAlphaBlend->dwRop >> 16) & 0xff;
1917 blendfn.SourceConstantAlpha = (pAlphaBlend->dwRop >> 8) & 0xff;
1918 blendfn.AlphaFormat = (pAlphaBlend->dwRop) & 0xff;
1920 GdiAlphaBlend(hdc, pAlphaBlend->xDest, pAlphaBlend->yDest, pAlphaBlend->cxDest, pAlphaBlend->cyDest,
1921 hdcSrc, pAlphaBlend->xSrc, pAlphaBlend->ySrc, pAlphaBlend->cxSrc, pAlphaBlend->cySrc,
1924 SelectObject(hdcSrc, hBmpOld);
1933 const EMRMASKBLT *pMaskBlt = (const EMRMASKBLT *)mr;
1934 HDC hdcSrc = CreateCompatibleDC(hdc);
1935 HBRUSH hBrush, hBrushOld;
1936 HBITMAP hBmp, hBmpOld, hBmpMask;
1937 const BITMAPINFO *pbi;
1939 SetWorldTransform(hdcSrc, &pMaskBlt->xformSrc);
1941 hBrush = CreateSolidBrush(pMaskBlt->crBkColorSrc);
1942 hBrushOld = SelectObject(hdcSrc, hBrush);
1943 PatBlt(hdcSrc, pMaskBlt->rclBounds.left, pMaskBlt->rclBounds.top,
1944 pMaskBlt->rclBounds.right - pMaskBlt->rclBounds.left,
1945 pMaskBlt->rclBounds.bottom - pMaskBlt->rclBounds.top, PATCOPY);
1946 SelectObject(hdcSrc, hBrushOld);
1947 DeleteObject(hBrush);
1949 pbi = (const BITMAPINFO *)((const BYTE *)mr + pMaskBlt->offBmiMask);
1950 hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
1952 SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
1953 (const BYTE *)mr + pMaskBlt->offBitsMask, pbi, pMaskBlt->iUsageMask);
1955 pbi = (const BITMAPINFO *)((const BYTE *)mr + pMaskBlt->offBmiSrc);
1956 hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
1957 (const BYTE *)mr + pMaskBlt->offBitsSrc, pbi, pMaskBlt->iUsageSrc);
1958 hBmpOld = SelectObject(hdcSrc, hBmp);
1971 SelectObject(hdcSrc, hBmpOld);
1973 DeleteObject(hBmpMask);
1980 const EMRPLGBLT *pPlgBlt = (const EMRPLGBLT *)mr;
1981 HDC hdcSrc = CreateCompatibleDC(hdc);
1982 HBRUSH hBrush, hBrushOld;
1983 HBITMAP hBmp, hBmpOld, hBmpMask;
1984 const BITMAPINFO *pbi;
1987 SetWorldTransform(hdcSrc, &pPlgBlt->xformSrc);
1989 pts[0].x = pPlgBlt->aptlDest[0].x; pts[0].y = pPlgBlt->aptlDest[0].y;
1990 pts[1].x = pPlgBlt->aptlDest[1].x; pts[1].y = pPlgBlt->aptlDest[1].y;
1991 pts[2].x = pPlgBlt->aptlDest[2].x; pts[2].y = pPlgBlt->aptlDest[2].y;
1993 hBrush = CreateSolidBrush(pPlgBlt->crBkColorSrc);
1994 hBrushOld = SelectObject(hdcSrc, hBrush);
1995 PatBlt(hdcSrc, pPlgBlt->rclBounds.left, pPlgBlt->rclBounds.top,
1996 pPlgBlt->rclBounds.right - pPlgBlt->rclBounds.left,
1997 pPlgBlt->rclBounds.bottom - pPlgBlt->rclBounds.top, PATCOPY);
1998 SelectObject(hdcSrc, hBrushOld);
1999 DeleteObject(hBrush);
2001 pbi = (const BITMAPINFO *)((const BYTE *)mr + pPlgBlt->offBmiMask);
2002 hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
2004 SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
2005 (const BYTE *)mr + pPlgBlt->offBitsMask, pbi, pPlgBlt->iUsageMask);
2007 pbi = (const BITMAPINFO *)((const BYTE *)mr + pPlgBlt->offBmiSrc);
2008 hBmp = CreateDIBitmap(hdc, (const BITMAPINFOHEADER *)pbi, CBM_INIT,
2009 (const BYTE *)mr + pPlgBlt->offBitsSrc, pbi, pPlgBlt->iUsageSrc);
2010 hBmpOld = SelectObject(hdcSrc, hBmp);
2021 SelectObject(hdcSrc, hBmpOld);
2023 DeleteObject(hBmpMask);
2028 case EMR_SETDIBITSTODEVICE:
2030 const EMRSETDIBITSTODEVICE *pSetDIBitsToDevice = (const EMRSETDIBITSTODEVICE *)mr;
2032 SetDIBitsToDevice(hdc,
2033 pSetDIBitsToDevice->xDest,
2034 pSetDIBitsToDevice->yDest,
2035 pSetDIBitsToDevice->cxSrc,
2036 pSetDIBitsToDevice->cySrc,
2037 pSetDIBitsToDevice->xSrc,
2038 pSetDIBitsToDevice->ySrc,
2039 pSetDIBitsToDevice->iStartScan,
2040 pSetDIBitsToDevice->cScans,
2041 (const BYTE *)mr + pSetDIBitsToDevice->offBitsSrc,
2042 (const BITMAPINFO *)((const BYTE *)mr + pSetDIBitsToDevice->offBmiSrc),
2043 pSetDIBitsToDevice->iUsageSrc);
2047 case EMR_POLYTEXTOUTA:
2049 const EMRPOLYTEXTOUTA *pPolyTextOutA = (const EMRPOLYTEXTOUTA *)mr;
2050 POLYTEXTA *polytextA = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA->cStrings * sizeof(POLYTEXTA));
2052 XFORM xform, xformOld;
2055 gModeOld = SetGraphicsMode(hdc, pPolyTextOutA->iGraphicsMode);
2056 GetWorldTransform(hdc, &xformOld);
2058 xform.eM11 = pPolyTextOutA->exScale;
2061 xform.eM22 = pPolyTextOutA->eyScale;
2064 SetWorldTransform(hdc, &xform);
2066 /* Set up POLYTEXTA structures */
2067 for(i = 0; i < pPolyTextOutA->cStrings; i++)
2069 polytextA[i].x = pPolyTextOutA->aemrtext[i].ptlReference.x;
2070 polytextA[i].y = pPolyTextOutA->aemrtext[i].ptlReference.y;
2071 polytextA[i].n = pPolyTextOutA->aemrtext[i].nChars;
2072 polytextA[i].lpstr = (LPCSTR)((const BYTE *)mr + pPolyTextOutA->aemrtext[i].offString);
2073 polytextA[i].uiFlags = pPolyTextOutA->aemrtext[i].fOptions;
2074 polytextA[i].rcl.left = pPolyTextOutA->aemrtext[i].rcl.left;
2075 polytextA[i].rcl.right = pPolyTextOutA->aemrtext[i].rcl.right;
2076 polytextA[i].rcl.top = pPolyTextOutA->aemrtext[i].rcl.top;
2077 polytextA[i].rcl.bottom = pPolyTextOutA->aemrtext[i].rcl.bottom;
2078 polytextA[i].pdx = (int *)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offDx);
2080 PolyTextOutA(hdc, polytextA, pPolyTextOutA->cStrings);
2081 HeapFree(GetProcessHeap(), 0, polytextA);
2083 SetWorldTransform(hdc, &xformOld);
2084 SetGraphicsMode(hdc, gModeOld);
2088 case EMR_POLYTEXTOUTW:
2090 const EMRPOLYTEXTOUTW *pPolyTextOutW = (const EMRPOLYTEXTOUTW *)mr;
2091 POLYTEXTW *polytextW = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW->cStrings * sizeof(POLYTEXTW));
2093 XFORM xform, xformOld;
2096 gModeOld = SetGraphicsMode(hdc, pPolyTextOutW->iGraphicsMode);
2097 GetWorldTransform(hdc, &xformOld);
2099 xform.eM11 = pPolyTextOutW->exScale;
2102 xform.eM22 = pPolyTextOutW->eyScale;
2105 SetWorldTransform(hdc, &xform);
2107 /* Set up POLYTEXTW structures */
2108 for(i = 0; i < pPolyTextOutW->cStrings; i++)
2110 polytextW[i].x = pPolyTextOutW->aemrtext[i].ptlReference.x;
2111 polytextW[i].y = pPolyTextOutW->aemrtext[i].ptlReference.y;
2112 polytextW[i].n = pPolyTextOutW->aemrtext[i].nChars;
2113 polytextW[i].lpstr = (LPCWSTR)((const BYTE *)mr + pPolyTextOutW->aemrtext[i].offString);
2114 polytextW[i].uiFlags = pPolyTextOutW->aemrtext[i].fOptions;
2115 polytextW[i].rcl.left = pPolyTextOutW->aemrtext[i].rcl.left;
2116 polytextW[i].rcl.right = pPolyTextOutW->aemrtext[i].rcl.right;
2117 polytextW[i].rcl.top = pPolyTextOutW->aemrtext[i].rcl.top;
2118 polytextW[i].rcl.bottom = pPolyTextOutW->aemrtext[i].rcl.bottom;
2119 polytextW[i].pdx = (int *)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offDx);
2121 PolyTextOutW(hdc, polytextW, pPolyTextOutW->cStrings);
2122 HeapFree(GetProcessHeap(), 0, polytextW);
2124 SetWorldTransform(hdc, &xformOld);
2125 SetGraphicsMode(hdc, gModeOld);
2131 const EMRFILLRGN *pFillRgn = (const EMRFILLRGN *)mr;
2132 HRGN hRgn = ExtCreateRegion(NULL, pFillRgn->cbRgnData, (const RGNDATA *)pFillRgn->RgnData);
2135 (handletable->objectHandle)[pFillRgn->ihBrush]);
2142 const EMRFRAMERGN *pFrameRgn = (const EMRFRAMERGN *)mr;
2143 HRGN hRgn = ExtCreateRegion(NULL, pFrameRgn->cbRgnData, (const RGNDATA *)pFrameRgn->RgnData);
2146 (handletable->objectHandle)[pFrameRgn->ihBrush],
2147 pFrameRgn->szlStroke.cx,
2148 pFrameRgn->szlStroke.cy);
2155 const EMRINVERTRGN *pInvertRgn = (const EMRINVERTRGN *)mr;
2156 HRGN hRgn = ExtCreateRegion(NULL, pInvertRgn->cbRgnData, (const RGNDATA *)pInvertRgn->RgnData);
2157 InvertRgn(hdc, hRgn);
2164 const EMRPAINTRGN *pPaintRgn = (const EMRPAINTRGN *)mr;
2165 HRGN hRgn = ExtCreateRegion(NULL, pPaintRgn->cbRgnData, (const RGNDATA *)pPaintRgn->RgnData);
2166 PaintRgn(hdc, hRgn);
2171 case EMR_SETTEXTJUSTIFICATION:
2173 const EMRSETTEXTJUSTIFICATION *pSetTextJust = (const EMRSETTEXTJUSTIFICATION *)mr;
2174 SetTextJustification(hdc, pSetTextJust->nBreakExtra, pSetTextJust->nBreakCount);
2180 const EMRSETLAYOUT *pSetLayout = (const EMRSETLAYOUT *)mr;
2181 SetLayout(hdc, pSetLayout->iMode);
2185 case EMR_POLYDRAW16:
2187 case EMR_GLSBOUNDEDRECORD:
2188 case EMR_DRAWESCAPE :
2191 case EMR_SMALLTEXTOUT:
2192 case EMR_FORCEUFIMAPPING:
2193 case EMR_NAMEDESCAPE:
2194 case EMR_COLORCORRECTPALETTE:
2195 case EMR_SETICMPROFILEA:
2196 case EMR_SETICMPROFILEW:
2197 case EMR_TRANSPARENTBLT:
2198 case EMR_GRADIENTFILL:
2199 case EMR_SETLINKEDUFI:
2200 case EMR_COLORMATCHTOTARGETW:
2201 case EMR_CREATECOLORSPACEW:
2204 /* From docs: If PlayEnhMetaFileRecord doesn't recognize a
2205 record then ignore and return TRUE. */
2206 FIXME("type %d is unimplemented\n", type);
2209 tmprc.left = tmprc.top = 0;
2210 tmprc.right = tmprc.bottom = 1000;
2211 LPtoDP(hdc, (POINT*)&tmprc, 2);
2212 TRACE("L:0,0 - 1000,1000 -> D:%d,%d - %d,%d\n", tmprc.left,
2213 tmprc.top, tmprc.right, tmprc.bottom);
2219 /*****************************************************************************
2221 * EnumEnhMetaFile (GDI32.@)
2223 * Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
2225 * record. Returns when either every record has been used or
2226 * when _EnhMetaFunc_ returns FALSE.
2230 * TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
2237 * This function behaves differently in Win9x and WinNT.
2239 * In WinNT, the DC's world transform is updated as the EMF changes
2240 * the Window/Viewport Extent and Origin or it's world transform.
2241 * The actual Window/Viewport Extent and Origin are left untouched.
2243 * In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
2244 * updates the scaling itself but only just before a record that
2245 * writes anything to the DC.
2247 * I'm not sure where the data (enum_emh_data) is stored in either
2248 * version. For this implementation, it is stored before the handle
2249 * table, but it could be stored in the DC, in the EMF handle or in
2253 BOOL WINAPI EnumEnhMetaFile(
2254 HDC hdc, /* [in] device context to pass to _EnhMetaFunc_ */
2255 HENHMETAFILE hmf, /* [in] EMF to walk */
2256 ENHMFENUMPROC callback, /* [in] callback function */
2257 LPVOID data, /* [in] optional data for callback function */
2258 const RECT *lpRect /* [in] bounding rectangle for rendered metafile */
2270 HBRUSH hBrush = NULL;
2273 enum_emh_data *info;
2274 SIZE vp_size, win_size;
2275 POINT vp_org, win_org;
2276 INT mapMode = MM_TEXT, old_align = 0, old_rop2 = 0, old_arcdir = 0, old_polyfill = 0, old_stretchblt = 0;
2277 COLORREF old_text_color = 0, old_bk_color = 0;
2281 SetLastError(ERROR_INVALID_PARAMETER);
2285 emh = EMF_GetEnhMetaHeader(hmf);
2287 SetLastError(ERROR_INVALID_HANDLE);
2291 info = HeapAlloc( GetProcessHeap(), 0,
2292 sizeof (enum_emh_data) + sizeof(HANDLETABLE) * emh->nHandles );
2295 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2298 info->state.wndOrgX = 0;
2299 info->state.wndOrgY = 0;
2300 info->state.wndExtX = 1;
2301 info->state.wndExtY = 1;
2302 info->state.vportOrgX = 0;
2303 info->state.vportOrgY = 0;
2304 info->state.vportExtX = 1;
2305 info->state.vportExtY = 1;
2306 info->state.world_transform.eM11 = info->state.world_transform.eM22 = 1;
2307 info->state.world_transform.eM12 = info->state.world_transform.eM21 = 0;
2308 info->state.world_transform.eDx = info->state.world_transform.eDy = 0;
2310 info->state.next = NULL;
2311 info->save_level = 0;
2312 info->saved_state = NULL;
2314 ht = (HANDLETABLE*) &info[1];
2315 ht->objectHandle[0] = hmf;
2316 for(i = 1; i < emh->nHandles; i++)
2317 ht->objectHandle[i] = NULL;
2321 savedMode = SetGraphicsMode(hdc, GM_ADVANCED);
2322 GetWorldTransform(hdc, &savedXform);
2323 GetViewportExtEx(hdc, &vp_size);
2324 GetWindowExtEx(hdc, &win_size);
2325 GetViewportOrgEx(hdc, &vp_org);
2326 GetWindowOrgEx(hdc, &win_org);
2327 mapMode = GetMapMode(hdc);
2330 hPen = GetCurrentObject(hdc, OBJ_PEN);
2331 hBrush = GetCurrentObject(hdc, OBJ_BRUSH);
2332 hFont = GetCurrentObject(hdc, OBJ_FONT);
2334 hRgn = CreateRectRgn(0, 0, 0, 0);
2335 if (!GetClipRgn(hdc, hRgn))
2341 old_text_color = SetTextColor(hdc, RGB(0,0,0));
2342 old_bk_color = SetBkColor(hdc, RGB(0xff, 0xff, 0xff));
2343 old_align = SetTextAlign(hdc, 0);
2344 old_rop2 = SetROP2(hdc, R2_COPYPEN);
2345 old_arcdir = SetArcDirection(hdc, AD_COUNTERCLOCKWISE);
2346 old_polyfill = SetPolyFillMode(hdc, ALTERNATE);
2347 old_stretchblt = SetStretchBltMode(hdc, BLACKONWHITE);
2350 info->state.mode = MM_TEXT;
2354 /* Win95 leaves the vp/win ext/org info alone */
2355 info->init_transform.eM11 = 1.0;
2356 info->init_transform.eM12 = 0.0;
2357 info->init_transform.eM21 = 0.0;
2358 info->init_transform.eM22 = 1.0;
2359 info->init_transform.eDx = 0.0;
2360 info->init_transform.eDy = 0.0;
2364 /* WinNT combines the vp/win ext/org info into a transform */
2365 double xscale, yscale;
2366 xscale = (double)vp_size.cx / (double)win_size.cx;
2367 yscale = (double)vp_size.cy / (double)win_size.cy;
2368 info->init_transform.eM11 = xscale;
2369 info->init_transform.eM12 = 0.0;
2370 info->init_transform.eM21 = 0.0;
2371 info->init_transform.eM22 = yscale;
2372 info->init_transform.eDx = (double)vp_org.x - xscale * (double)win_org.x;
2373 info->init_transform.eDy = (double)vp_org.y - yscale * (double)win_org.y;
2375 CombineTransform(&info->init_transform, &savedXform, &info->init_transform);
2378 if ( lpRect && WIDTH(emh->rclFrame) && HEIGHT(emh->rclFrame) )
2380 double xSrcPixSize, ySrcPixSize, xscale, yscale;
2383 TRACE("rect: %d,%d - %d,%d. rclFrame: %d,%d - %d,%d\n",
2384 lpRect->left, lpRect->top, lpRect->right, lpRect->bottom,
2385 emh->rclFrame.left, emh->rclFrame.top, emh->rclFrame.right,
2386 emh->rclFrame.bottom);
2388 xSrcPixSize = (double) emh->szlMillimeters.cx / emh->szlDevice.cx;
2389 ySrcPixSize = (double) emh->szlMillimeters.cy / emh->szlDevice.cy;
2390 xscale = (double) WIDTH(*lpRect) * 100.0 /
2391 WIDTH(emh->rclFrame) * xSrcPixSize;
2392 yscale = (double) HEIGHT(*lpRect) * 100.0 /
2393 HEIGHT(emh->rclFrame) * ySrcPixSize;
2394 TRACE("xscale = %f, yscale = %f\n", xscale, yscale);
2396 xform.eM11 = xscale;
2399 xform.eM22 = yscale;
2400 xform.eDx = (double) lpRect->left - (double) WIDTH(*lpRect) / WIDTH(emh->rclFrame) * emh->rclFrame.left;
2401 xform.eDy = (double) lpRect->top - (double) HEIGHT(*lpRect) / HEIGHT(emh->rclFrame) * emh->rclFrame.top;
2403 CombineTransform(&info->init_transform, &xform, &info->init_transform);
2406 /* WinNT resets the current vp/win org/ext */
2407 if ( !IS_WIN9X() && hdc )
2409 SetMapMode(hdc, MM_TEXT);
2410 SetWindowOrgEx(hdc, 0, 0, NULL);
2411 SetViewportOrgEx(hdc, 0, 0, NULL);
2412 EMF_Update_MF_Xform(hdc, info);
2417 while(ret && offset < emh->nBytes)
2419 emr = (ENHMETARECORD *)((char *)emh + offset);
2421 /* In Win9x mode we update the xform if the record will produce output */
2422 if (hdc && IS_WIN9X() && emr_produces_output(emr->iType))
2423 EMF_Update_MF_Xform(hdc, info);
2425 TRACE("Calling EnumFunc with record %s, size %d\n", get_emr_name(emr->iType), emr->nSize);
2426 ret = (*callback)(hdc, ht, emr, emh->nHandles, (LPARAM)data);
2427 offset += emr->nSize;
2429 /* WinNT - update the transform (win9x updates when the next graphics
2430 output record is played). */
2431 if (hdc && !IS_WIN9X())
2432 EMF_Update_MF_Xform(hdc, info);
2437 SetStretchBltMode(hdc, old_stretchblt);
2438 SetPolyFillMode(hdc, old_polyfill);
2439 SetArcDirection(hdc, old_arcdir);
2440 SetROP2(hdc, old_rop2);
2441 SetTextAlign(hdc, old_align);
2442 SetBkColor(hdc, old_bk_color);
2443 SetTextColor(hdc, old_text_color);
2446 SelectObject(hdc, hBrush);
2447 SelectObject(hdc, hPen);
2448 SelectObject(hdc, hFont);
2449 ExtSelectClipRgn(hdc, hRgn, RGN_COPY);
2452 SetWorldTransform(hdc, &savedXform);
2454 SetGraphicsMode(hdc, savedMode);
2455 SetMapMode(hdc, mapMode);
2456 SetWindowOrgEx(hdc, win_org.x, win_org.y, NULL);
2457 SetWindowExtEx(hdc, win_size.cx, win_size.cy, NULL);
2458 SetViewportOrgEx(hdc, vp_org.x, vp_org.y, NULL);
2459 SetViewportExtEx(hdc, vp_size.cx, vp_size.cy, NULL);
2462 for(i = 1; i < emh->nHandles; i++) /* Don't delete element 0 (hmf) */
2463 if( (ht->objectHandle)[i] )
2464 DeleteObject( (ht->objectHandle)[i] );
2466 while (info->saved_state)
2468 EMF_dc_state *state = info->saved_state;
2469 info->saved_state = info->saved_state->next;
2470 HeapFree( GetProcessHeap(), 0, state );
2472 HeapFree( GetProcessHeap(), 0, info );
2476 static INT CALLBACK EMF_PlayEnhMetaFileCallback(HDC hdc, HANDLETABLE *ht,
2477 const ENHMETARECORD *emr,
2478 INT handles, LPARAM data)
2480 return PlayEnhMetaFileRecord(hdc, ht, emr, handles);
2483 /**************************************************************************
2484 * PlayEnhMetaFile (GDI32.@)
2486 * Renders an enhanced metafile into a specified rectangle *lpRect
2487 * in device context hdc.
2493 BOOL WINAPI PlayEnhMetaFile(
2494 HDC hdc, /* [in] DC to render into */
2495 HENHMETAFILE hmf, /* [in] metafile to render */
2496 const RECT *lpRect /* [in] rectangle to place metafile inside */
2499 return EnumEnhMetaFile(hdc, hmf, EMF_PlayEnhMetaFileCallback, NULL,
2503 /*****************************************************************************
2504 * DeleteEnhMetaFile (GDI32.@)
2506 * Deletes an enhanced metafile and frees the associated storage.
2508 BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE hmf)
2510 return EMF_Delete_HENHMETAFILE( hmf );
2513 /*****************************************************************************
2514 * CopyEnhMetaFileA (GDI32.@)
2516 * Duplicate an enhanced metafile.
2520 HENHMETAFILE WINAPI CopyEnhMetaFileA(
2521 HENHMETAFILE hmfSrc,
2524 ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
2525 HENHMETAFILE hmfDst;
2527 if(!emrSrc) return FALSE;
2529 emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
2530 memcpy( emrDst, emrSrc, emrSrc->nBytes );
2531 hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
2533 HeapFree( GetProcessHeap(), 0, emrDst );
2537 hFile = CreateFileA( file, GENERIC_WRITE | GENERIC_READ, 0,
2538 NULL, CREATE_ALWAYS, 0, 0);
2539 WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
2540 CloseHandle( hFile );
2541 /* Reopen file for reading only, so that apps can share
2542 read access to the file while hmf is still valid */
2543 hFile = CreateFileA( file, GENERIC_READ, FILE_SHARE_READ,
2544 NULL, OPEN_EXISTING, 0, 0);
2545 if(hFile == INVALID_HANDLE_VALUE) {
2546 ERR("Can't reopen emf for reading\n");
2549 hmfDst = EMF_GetEnhMetaFile( hFile );
2550 CloseHandle( hFile );
2555 /*****************************************************************************
2556 * CopyEnhMetaFileW (GDI32.@)
2558 * See CopyEnhMetaFileA.
2562 HENHMETAFILE WINAPI CopyEnhMetaFileW(
2563 HENHMETAFILE hmfSrc,
2566 ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
2567 HENHMETAFILE hmfDst;
2569 if(!emrSrc) return FALSE;
2571 emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
2572 memcpy( emrDst, emrSrc, emrSrc->nBytes );
2573 hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
2575 HeapFree( GetProcessHeap(), 0, emrDst );
2579 hFile = CreateFileW( file, GENERIC_WRITE | GENERIC_READ, 0,
2580 NULL, CREATE_ALWAYS, 0, 0);
2581 WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
2582 CloseHandle( hFile );
2583 /* Reopen file for reading only, so that apps can share
2584 read access to the file while hmf is still valid */
2585 hFile = CreateFileW( file, GENERIC_READ, FILE_SHARE_READ,
2586 NULL, OPEN_EXISTING, 0, 0);
2587 if(hFile == INVALID_HANDLE_VALUE) {
2588 ERR("Can't reopen emf for reading\n");
2591 hmfDst = EMF_GetEnhMetaFile( hFile );
2592 CloseHandle( hFile );
2598 /* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
2599 typedef struct tagEMF_PaletteCopy
2602 LPPALETTEENTRY lpPe;
2605 /***************************************************************
2606 * Find the EMR_EOF record and then use it to find the
2607 * palette entries for this enhanced metafile.
2608 * The lpData is actually a pointer to an EMF_PaletteCopy struct
2609 * which contains the max number of elements to copy and where
2612 * NOTE: To be used by GetEnhMetaFilePaletteEntries only!
2614 static INT CALLBACK cbEnhPaletteCopy( HDC a,
2616 const ENHMETARECORD *lpEMR,
2621 if ( lpEMR->iType == EMR_EOF )
2623 const EMREOF *lpEof = (const EMREOF *)lpEMR;
2624 EMF_PaletteCopy* info = (EMF_PaletteCopy*)lpData;
2625 DWORD dwNumPalToCopy = min( lpEof->nPalEntries, info->cEntries );
2627 TRACE( "copying 0x%08x palettes\n", dwNumPalToCopy );
2629 memcpy( info->lpPe, (LPCSTR)lpEof + lpEof->offPalEntries,
2630 sizeof( *(info->lpPe) ) * dwNumPalToCopy );
2632 /* Update the passed data as a return code */
2633 info->lpPe = NULL; /* Palettes were copied! */
2634 info->cEntries = dwNumPalToCopy;
2636 return FALSE; /* That's all we need */
2642 /*****************************************************************************
2643 * GetEnhMetaFilePaletteEntries (GDI32.@)
2645 * Copy the palette and report size
2647 * BUGS: Error codes (SetLastError) are not set on failures
2649 UINT WINAPI GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf,
2651 LPPALETTEENTRY lpPe )
2653 ENHMETAHEADER* enhHeader = EMF_GetEnhMetaHeader( hEmf );
2654 EMF_PaletteCopy infoForCallBack;
2656 TRACE( "(%p,%d,%p)\n", hEmf, cEntries, lpPe );
2658 if (!enhHeader) return 0;
2660 /* First check if there are any palettes associated with
2662 if ( enhHeader->nPalEntries == 0 ) return 0;
2664 /* Is the user requesting the number of palettes? */
2665 if ( lpPe == NULL ) return enhHeader->nPalEntries;
2667 /* Copy cEntries worth of PALETTEENTRY structs into the buffer */
2668 infoForCallBack.cEntries = cEntries;
2669 infoForCallBack.lpPe = lpPe;
2671 if ( !EnumEnhMetaFile( 0, hEmf, cbEnhPaletteCopy,
2672 &infoForCallBack, 0 ) )
2675 /* Verify that the callback executed correctly */
2676 if ( infoForCallBack.lpPe != NULL )
2678 /* Callback proc had error! */
2679 ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
2683 return infoForCallBack.cEntries;
2686 typedef struct gdi_mf_comment
2693 DWORD cbWinMetaFile;
2696 /******************************************************************
2697 * SetWinMetaFileBits (GDI32.@)
2699 * Translate from old style to new style.
2702 HENHMETAFILE WINAPI SetWinMetaFileBits(UINT cbBuffer,
2703 CONST BYTE *lpbBuffer,
2705 CONST METAFILEPICT *lpmfp
2708 static const WCHAR szDisplayW[] = { 'D','I','S','P','L','A','Y','\0' };
2709 HMETAFILE hmf = NULL;
2710 HENHMETAFILE ret = NULL;
2711 HDC hdc = NULL, hdcdisp = NULL;
2712 RECT rc, *prcFrame = NULL;
2713 LONG mm, xExt, yExt;
2714 INT horzsize, vertsize, horzres, vertres;
2716 TRACE("(%d, %p, %p, %p)\n", cbBuffer, lpbBuffer, hdcRef, lpmfp);
2718 hmf = SetMetaFileBitsEx(cbBuffer, lpbBuffer);
2721 WARN("SetMetaFileBitsEx failed\n");
2726 hdcRef = hdcdisp = CreateDCW(szDisplayW, NULL, NULL, NULL);
2730 TRACE("mm = %d %dx%d\n", lpmfp->mm, lpmfp->xExt, lpmfp->yExt);
2738 TRACE("lpmfp == NULL\n");
2740 /* Use the whole device surface */
2741 mm = MM_ANISOTROPIC;
2746 if (mm == MM_ISOTROPIC || mm == MM_ANISOTROPIC)
2748 if (xExt < 0 || yExt < 0)
2750 /* Use the whole device surface */
2755 /* Use the x and y extents as the frame box */
2758 rc.left = rc.top = 0;
2765 if(!(hdc = CreateEnhMetaFileW(hdcRef, NULL, prcFrame, NULL)))
2767 ERR("CreateEnhMetaFile failed\n");
2772 * Write the original METAFILE into the enhanced metafile.
2773 * It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
2777 gdi_mf_comment *mfcomment;
2778 UINT mfcomment_size;
2780 mfcomment_size = sizeof (gdi_mf_comment) + cbBuffer;
2781 mfcomment = HeapAlloc(GetProcessHeap(), 0, mfcomment_size);
2784 mfcomment->ident = GDICOMMENT_IDENTIFIER;
2785 mfcomment->iComment = GDICOMMENT_WINDOWS_METAFILE;
2786 mfcomment->nVersion = 0x00000300;
2787 mfcomment->nChecksum = 0; /* FIXME */
2788 mfcomment->fFlags = 0;
2789 mfcomment->cbWinMetaFile = cbBuffer;
2790 memcpy(&mfcomment[1], lpbBuffer, cbBuffer);
2791 GdiComment(hdc, mfcomment_size, (BYTE*) mfcomment);
2792 HeapFree(GetProcessHeap(), 0, mfcomment);
2794 SetMapMode(hdc, mm);
2798 horzsize = GetDeviceCaps(hdcRef, HORZSIZE);
2799 vertsize = GetDeviceCaps(hdcRef, VERTSIZE);
2800 horzres = GetDeviceCaps(hdcRef, HORZRES);
2801 vertres = GetDeviceCaps(hdcRef, VERTRES);
2805 /* Use the whole device surface */
2811 xExt = MulDiv(xExt, horzres, 100 * horzsize);
2812 yExt = MulDiv(yExt, vertres, 100 * vertsize);
2815 /* set the initial viewport:window ratio as 1:1 */
2816 SetViewportExtEx(hdc, xExt, yExt, NULL);
2817 SetWindowExtEx(hdc, xExt, yExt, NULL);
2819 PlayMetaFile(hdc, hmf);
2821 ret = CloseEnhMetaFile(hdc);
2823 if (hdcdisp) DeleteDC(hdcdisp);
2824 DeleteMetaFile(hmf);