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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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"
47 #include "gdi_private.h"
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
56 BOOL on_disk; /* true if metafile is on disk */
59 static const struct emr_name {
72 X(EMR_SETWINDOWEXTEX),
73 X(EMR_SETWINDOWORGEX),
74 X(EMR_SETVIEWPORTEXTEX),
75 X(EMR_SETVIEWPORTORGEX),
79 X(EMR_SETMAPPERFLAGS),
82 X(EMR_SETPOLYFILLMODE),
84 X(EMR_SETSTRETCHBLTMODE),
86 X(EMR_SETCOLORADJUSTMENT),
92 X(EMR_EXCLUDECLIPRECT),
93 X(EMR_INTERSECTCLIPRECT),
94 X(EMR_SCALEVIEWPORTEXTEX),
95 X(EMR_SCALEWINDOWEXTEX),
98 X(EMR_SETWORLDTRANSFORM),
99 X(EMR_MODIFYWORLDTRANSFORM),
102 X(EMR_CREATEBRUSHINDIRECT),
111 X(EMR_SELECTPALETTE),
112 X(EMR_CREATEPALETTE),
113 X(EMR_SETPALETTEENTRIES),
114 X(EMR_RESIZEPALETTE),
115 X(EMR_REALIZEPALETTE),
120 X(EMR_SETARCDIRECTION),
121 X(EMR_SETMITERLIMIT),
126 X(EMR_STROKEANDFILLPATH),
130 X(EMR_SELECTCLIPPATH),
137 X(EMR_EXTSELECTCLIPRGN),
142 X(EMR_SETDIBITSTODEVICE),
143 X(EMR_STRETCHDIBITS),
144 X(EMR_EXTCREATEFONTINDIRECTW),
150 X(EMR_POLYBEZIERTO16),
152 X(EMR_POLYPOLYLINE16),
153 X(EMR_POLYPOLYGON16),
155 X(EMR_CREATEMONOBRUSH),
156 X(EMR_CREATEDIBPATTERNBRUSHPT),
161 X(EMR_CREATECOLORSPACE),
162 X(EMR_SETCOLORSPACE),
163 X(EMR_DELETECOLORSPACE),
165 X(EMR_GLSBOUNDEDRECORD),
171 X(EMR_FORCEUFIMAPPING),
173 X(EMR_COLORCORRECTPALETTE),
174 X(EMR_SETICMPROFILEA),
175 X(EMR_SETICMPROFILEW),
178 X(EMR_TRANSPARENTBLT),
182 X(EMR_SETTEXTJUSTIFICATION),
183 X(EMR_COLORMATCHTOTARGETW),
184 X(EMR_CREATECOLORSPACEW)
188 /****************************************************************************
191 static const char *get_emr_name(DWORD type)
194 for(i = 0; i < sizeof(emr_names) / sizeof(emr_names[0]); i++)
195 if(type == emr_names[i].type) return emr_names[i].name;
196 TRACE("Unknown record type %ld\n", type);
200 /***********************************************************************
203 * Returns whether a DIB can be converted to a monochrome DDB.
205 * A DIB can be converted if its color table contains only black and
206 * white. Black must be the first color in the color table.
208 * Note : If the first color in the color table is white followed by
209 * black, we can't convert it to a monochrome DDB with
210 * SetDIBits, because black and white would be inverted.
212 static inline BOOL is_dib_monochrome( const BITMAPINFO* info )
214 if (info->bmiHeader.biBitCount != 1) return FALSE;
216 if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
218 RGBTRIPLE *rgb = ((BITMAPCOREINFO *) info)->bmciColors;
220 /* Check if the first color is black */
221 if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
224 /* Check if the second color is white */
225 return ((rgb->rgbtRed == 0xff) && (rgb->rgbtGreen == 0xff)
226 && (rgb->rgbtBlue == 0xff));
230 else /* assume BITMAPINFOHEADER */
232 const RGBQUAD *rgb = info->bmiColors;
234 /* Check if the first color is black */
235 if ((rgb->rgbRed == 0) && (rgb->rgbGreen == 0) &&
236 (rgb->rgbBlue == 0) && (rgb->rgbReserved == 0))
240 /* Check if the second color is white */
241 return ((rgb->rgbRed == 0xff) && (rgb->rgbGreen == 0xff)
242 && (rgb->rgbBlue == 0xff) && (rgb->rgbReserved == 0));
248 /****************************************************************************
249 * EMF_Create_HENHMETAFILE
251 HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk )
253 HENHMETAFILE hmf = 0;
254 ENHMETAFILEOBJ *metaObj = GDI_AllocObject( sizeof(ENHMETAFILEOBJ),
256 (HGDIOBJ *)&hmf, NULL );
260 metaObj->on_disk = on_disk;
261 GDI_ReleaseObj( hmf );
266 /****************************************************************************
267 * EMF_Delete_HENHMETAFILE
269 static BOOL EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf )
271 ENHMETAFILEOBJ *metaObj = (ENHMETAFILEOBJ *)GDI_GetObjPtr( hmf,
273 if(!metaObj) return FALSE;
276 UnmapViewOfFile( metaObj->emh );
278 HeapFree( GetProcessHeap(), 0, metaObj->emh );
279 return GDI_FreeObject( hmf, metaObj );
282 /******************************************************************
283 * EMF_GetEnhMetaHeader
285 * Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
287 static ENHMETAHEADER *EMF_GetEnhMetaHeader( HENHMETAFILE hmf )
289 ENHMETAHEADER *ret = NULL;
290 ENHMETAFILEOBJ *metaObj = (ENHMETAFILEOBJ *)GDI_GetObjPtr( hmf, ENHMETAFILE_MAGIC );
291 TRACE("hmf %p -> enhmetaObj %p\n", hmf, metaObj);
295 GDI_ReleaseObj( hmf );
300 /*****************************************************************************
304 static HENHMETAFILE EMF_GetEnhMetaFile( HANDLE hFile )
309 hMapping = CreateFileMappingA( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
310 emh = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
311 CloseHandle( hMapping );
315 if (emh->iType != EMR_HEADER || emh->dSignature != ENHMETA_SIGNATURE) {
316 WARN("Invalid emf header type 0x%08lx sig 0x%08lx.\n",
317 emh->iType, emh->dSignature);
321 /* refuse to load unaligned EMF as Windows does */
324 WARN("Refusing to load unaligned EMF\n");
328 return EMF_Create_HENHMETAFILE( emh, TRUE );
331 UnmapViewOfFile( emh );
336 /*****************************************************************************
337 * GetEnhMetaFileA (GDI32.@)
341 HENHMETAFILE WINAPI GetEnhMetaFileA(
342 LPCSTR lpszMetaFile /* [in] filename of enhanced metafile */
348 hFile = CreateFileA(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
349 OPEN_EXISTING, 0, 0);
350 if (hFile == INVALID_HANDLE_VALUE) {
351 WARN("could not open %s\n", lpszMetaFile);
354 hmf = EMF_GetEnhMetaFile( hFile );
355 CloseHandle( hFile );
359 /*****************************************************************************
360 * GetEnhMetaFileW (GDI32.@)
362 HENHMETAFILE WINAPI GetEnhMetaFileW(
363 LPCWSTR lpszMetaFile) /* [in] filename of enhanced metafile */
368 hFile = CreateFileW(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
369 OPEN_EXISTING, 0, 0);
370 if (hFile == INVALID_HANDLE_VALUE) {
371 WARN("could not open %s\n", debugstr_w(lpszMetaFile));
374 hmf = EMF_GetEnhMetaFile( hFile );
375 CloseHandle( hFile );
379 /*****************************************************************************
380 * GetEnhMetaFileHeader (GDI32.@)
382 * Retrieves the record containing the header for the specified
383 * enhanced-format metafile.
386 * If buf is NULL, returns the size of buffer required.
387 * Otherwise, copy up to bufsize bytes of enhanced metafile header into
390 UINT WINAPI GetEnhMetaFileHeader(
391 HENHMETAFILE hmf, /* [in] enhanced metafile */
392 UINT bufsize, /* [in] size of buffer */
393 LPENHMETAHEADER buf /* [out] buffer */
399 emh = EMF_GetEnhMetaHeader(hmf);
400 if(!emh) return FALSE;
402 if (!buf) return size;
403 size = min(size, bufsize);
404 memmove(buf, emh, size);
409 /*****************************************************************************
410 * GetEnhMetaFileDescriptionA (GDI32.@)
412 * See GetEnhMetaFileDescriptionW.
414 UINT WINAPI GetEnhMetaFileDescriptionA(
415 HENHMETAFILE hmf, /* [in] enhanced metafile */
416 UINT size, /* [in] size of buf */
417 LPSTR buf /* [out] buffer to receive description */
420 LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
424 if(!emh) return FALSE;
425 if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
426 descrW = (WCHAR *) ((char *) emh + emh->offDescription);
427 len = WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, NULL, 0, NULL, NULL );
429 if (!buf || !size ) return len;
431 len = min( size, len );
432 WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, buf, len, NULL, NULL );
436 /*****************************************************************************
437 * GetEnhMetaFileDescriptionW (GDI32.@)
439 * Copies the description string of an enhanced metafile into a buffer
443 * If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
444 * number of characters copied.
446 UINT WINAPI GetEnhMetaFileDescriptionW(
447 HENHMETAFILE hmf, /* [in] enhanced metafile */
448 UINT size, /* [in] size of buf */
449 LPWSTR buf /* [out] buffer to receive description */
452 LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
454 if(!emh) return FALSE;
455 if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
456 if (!buf || !size ) return emh->nDescription;
458 memmove(buf, (char *) emh + emh->offDescription, min(size,emh->nDescription)*sizeof(WCHAR));
459 return min(size, emh->nDescription);
462 /****************************************************************************
463 * SetEnhMetaFileBits (GDI32.@)
465 * Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
467 HENHMETAFILE WINAPI SetEnhMetaFileBits(UINT bufsize, const BYTE *buf)
469 ENHMETAHEADER *emh = HeapAlloc( GetProcessHeap(), 0, bufsize );
470 memmove(emh, buf, bufsize);
471 return EMF_Create_HENHMETAFILE( emh, FALSE );
474 /*****************************************************************************
475 * GetEnhMetaFileBits (GDI32.@)
478 UINT WINAPI GetEnhMetaFileBits(
484 LPENHMETAHEADER emh = EMF_GetEnhMetaHeader( hmf );
490 if( buf == NULL ) return size;
492 size = min( size, bufsize );
493 memmove(buf, emh, size);
497 typedef struct enum_emh_data
500 XFORM init_transform;
501 XFORM world_transform;
512 #define ENUM_GET_PRIVATE_DATA(ht) \
513 ((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
515 #define WIDTH(rect) ( (rect).right - (rect).left )
516 #define HEIGHT(rect) ( (rect).bottom - (rect).top )
518 #define IS_WIN9X() (GetVersion()&0x80000000)
520 static void EMF_Update_MF_Xform(HDC hdc, enum_emh_data *info)
522 XFORM mapping_mode_trans, final_trans;
523 FLOAT scaleX, scaleY;
525 scaleX = (FLOAT)info->vportExtX / (FLOAT)info->wndExtX;
526 scaleY = (FLOAT)info->vportExtY / (FLOAT)info->wndExtY;
527 mapping_mode_trans.eM11 = scaleX;
528 mapping_mode_trans.eM12 = 0.0;
529 mapping_mode_trans.eM21 = 0.0;
530 mapping_mode_trans.eM22 = scaleY;
531 mapping_mode_trans.eDx = (FLOAT)info->vportOrgX - scaleX * (FLOAT)info->wndOrgX;
532 mapping_mode_trans.eDy = (FLOAT)info->vportOrgY - scaleY * (FLOAT)info->wndOrgY;
534 CombineTransform(&final_trans, &info->world_transform, &mapping_mode_trans);
535 CombineTransform(&final_trans, &final_trans, &info->init_transform);
537 if (!SetWorldTransform(hdc, &final_trans))
539 ERR("World transform failed!\n");
543 static void EMF_SetMapMode(HDC hdc, enum_emh_data *info)
545 INT horzSize = GetDeviceCaps( hdc, HORZSIZE );
546 INT vertSize = GetDeviceCaps( hdc, VERTSIZE );
547 INT horzRes = GetDeviceCaps( hdc, HORZRES );
548 INT vertRes = GetDeviceCaps( hdc, VERTRES );
550 TRACE("%d\n",info->mode);
562 info->wndExtX = horzSize * 10;
563 info->wndExtY = vertSize * 10;
564 info->vportExtX = horzRes;
565 info->vportExtY = -vertRes;
568 info->wndExtX = horzSize * 100;
569 info->wndExtY = vertSize * 100;
570 info->vportExtX = horzRes;
571 info->vportExtY = -vertRes;
574 info->wndExtX = MulDiv(1000, horzSize, 254);
575 info->wndExtY = MulDiv(1000, vertSize, 254);
576 info->vportExtX = horzRes;
577 info->vportExtY = -vertRes;
580 info->wndExtX = MulDiv(10000, horzSize, 254);
581 info->wndExtY = MulDiv(10000, vertSize, 254);
582 info->vportExtX = horzRes;
583 info->vportExtY = -vertRes;
586 info->wndExtX = MulDiv(14400, horzSize, 254);
587 info->wndExtY = MulDiv(14400, vertSize, 254);
588 info->vportExtX = horzRes;
589 info->vportExtY = -vertRes;
598 /***********************************************************************
601 * Fix viewport extensions for isotropic mode.
604 static void EMF_FixIsotropic(HDC hdc, enum_emh_data *info)
606 double xdim = fabs((double)info->vportExtX * GetDeviceCaps( hdc, HORZSIZE ) /
607 (GetDeviceCaps( hdc, HORZRES ) * info->wndExtX));
608 double ydim = fabs((double)info->vportExtY * GetDeviceCaps( hdc, VERTSIZE ) /
609 (GetDeviceCaps( hdc, VERTRES ) * info->wndExtY));
613 INT mincx = (info->vportExtX >= 0) ? 1 : -1;
614 info->vportExtX = floor(info->vportExtX * ydim / xdim + 0.5);
615 if (!info->vportExtX) info->vportExtX = mincx;
619 INT mincy = (info->vportExtY >= 0) ? 1 : -1;
620 info->vportExtY = floor(info->vportExtY * xdim / ydim + 0.5);
621 if (!info->vportExtY) info->vportExtY = mincy;
625 /*****************************************************************************
626 * emr_produces_output
628 * Returns TRUE if the record type writes something to the dc. Used by
629 * PlayEnhMetaFileRecord to determine whether it needs to update the
630 * dc's xform when in win9x mode.
632 * FIXME: need to test which records should be here.
634 static BOOL emr_produces_output(int type)
640 case EMR_POLYBEZIERTO:
642 case EMR_POLYPOLYLINE:
643 case EMR_POLYPOLYGON:
646 case EMR_EXCLUDECLIPRECT:
647 case EMR_INTERSECTCLIPRECT:
648 case EMR_SELECTOBJECT:
656 case EMR_EXTFLOODFILL:
668 case EMR_SETDIBITSTODEVICE:
669 case EMR_STRETCHDIBITS:
670 case EMR_EXTTEXTOUTA:
671 case EMR_EXTTEXTOUTW:
672 case EMR_POLYBEZIER16:
675 case EMR_POLYBEZIERTO16:
676 case EMR_POLYLINETO16:
677 case EMR_POLYPOLYLINE16:
678 case EMR_POLYPOLYGON16:
680 case EMR_POLYTEXTOUTA:
681 case EMR_POLYTEXTOUTW:
682 case EMR_SMALLTEXTOUT:
684 case EMR_TRANSPARENTBLT:
692 /*****************************************************************************
693 * PlayEnhMetaFileRecord (GDI32.@)
695 * Render a single enhanced metafile record in the device context hdc.
698 * TRUE (non zero) on success, FALSE on error.
700 * Many unimplemented records.
701 * No error handling on record play failures (ie checking return codes)
704 * WinNT actually updates the current world transform in this function
705 * whereas Win9x does not.
707 BOOL WINAPI PlayEnhMetaFileRecord(
708 HDC hdc, /* [in] device context in which to render EMF record */
709 LPHANDLETABLE handletable, /* [in] array of handles to be used in rendering record */
710 const ENHMETARECORD *mr, /* [in] EMF record to render */
711 UINT handles /* [in] size of handle array */
716 enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
718 TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
719 hdc, handletable, mr, handles);
720 if (!mr) return FALSE;
724 /* In Win9x mode we update the xform if the record will produce output */
725 if ( IS_WIN9X() && emr_produces_output(type) )
726 EMF_Update_MF_Xform(hdc, info);
728 TRACE("record %s\n", get_emr_name(type));
737 PEMRGDICOMMENT lpGdiComment = (PEMRGDICOMMENT)mr;
738 /* In an enhanced metafile, there can be both public and private GDI comments */
739 GdiComment( hdc, lpGdiComment->cbData, lpGdiComment->Data );
744 PEMRSETMAPMODE pSetMapMode = (PEMRSETMAPMODE) mr;
746 if(info->mode == pSetMapMode->iMode && (info->mode == MM_ISOTROPIC || info->mode == MM_ANISOTROPIC))
748 info->mode = pSetMapMode->iMode;
749 EMF_SetMapMode(hdc, info);
754 PEMRSETBKMODE pSetBkMode = (PEMRSETBKMODE) mr;
755 SetBkMode(hdc, pSetBkMode->iMode);
760 PEMRSETBKCOLOR pSetBkColor = (PEMRSETBKCOLOR) mr;
761 SetBkColor(hdc, pSetBkColor->crColor);
764 case EMR_SETPOLYFILLMODE:
766 PEMRSETPOLYFILLMODE pSetPolyFillMode = (PEMRSETPOLYFILLMODE) mr;
767 SetPolyFillMode(hdc, pSetPolyFillMode->iMode);
772 PEMRSETROP2 pSetROP2 = (PEMRSETROP2) mr;
773 SetROP2(hdc, pSetROP2->iMode);
776 case EMR_SETSTRETCHBLTMODE:
778 PEMRSETSTRETCHBLTMODE pSetStretchBltMode = (PEMRSETSTRETCHBLTMODE) mr;
779 SetStretchBltMode(hdc, pSetStretchBltMode->iMode);
782 case EMR_SETTEXTALIGN:
784 PEMRSETTEXTALIGN pSetTextAlign = (PEMRSETTEXTALIGN) mr;
785 SetTextAlign(hdc, pSetTextAlign->iMode);
788 case EMR_SETTEXTCOLOR:
790 PEMRSETTEXTCOLOR pSetTextColor = (PEMRSETTEXTCOLOR) mr;
791 SetTextColor(hdc, pSetTextColor->crColor);
801 PEMRRESTOREDC pRestoreDC = (PEMRRESTOREDC) mr;
802 TRACE("EMR_RESTORE: %ld\n", pRestoreDC->iRelative);
803 RestoreDC(hdc, pRestoreDC->iRelative);
806 case EMR_INTERSECTCLIPRECT:
808 PEMRINTERSECTCLIPRECT pClipRect = (PEMRINTERSECTCLIPRECT) mr;
809 TRACE("EMR_INTERSECTCLIPRECT: rect %ld,%ld - %ld, %ld\n",
810 pClipRect->rclClip.left, pClipRect->rclClip.top,
811 pClipRect->rclClip.right, pClipRect->rclClip.bottom);
812 IntersectClipRect(hdc, pClipRect->rclClip.left, pClipRect->rclClip.top,
813 pClipRect->rclClip.right, pClipRect->rclClip.bottom);
816 case EMR_SELECTOBJECT:
818 PEMRSELECTOBJECT pSelectObject = (PEMRSELECTOBJECT) mr;
819 if( pSelectObject->ihObject & 0x80000000 ) {
820 /* High order bit is set - it's a stock object
821 * Strip the high bit to get the index.
822 * See MSDN article Q142319
824 SelectObject( hdc, GetStockObject( pSelectObject->ihObject &
827 /* High order bit wasn't set - not a stock object
830 (handletable->objectHandle)[pSelectObject->ihObject] );
834 case EMR_DELETEOBJECT:
836 PEMRDELETEOBJECT pDeleteObject = (PEMRDELETEOBJECT) mr;
837 DeleteObject( (handletable->objectHandle)[pDeleteObject->ihObject]);
838 (handletable->objectHandle)[pDeleteObject->ihObject] = 0;
841 case EMR_SETWINDOWORGEX:
843 PEMRSETWINDOWORGEX pSetWindowOrgEx = (PEMRSETWINDOWORGEX) mr;
845 info->wndOrgX = pSetWindowOrgEx->ptlOrigin.x;
846 info->wndOrgY = pSetWindowOrgEx->ptlOrigin.y;
848 TRACE("SetWindowOrgEx: %d,%d\n",info->wndOrgX,info->wndOrgY);
851 case EMR_SETWINDOWEXTEX:
853 PEMRSETWINDOWEXTEX pSetWindowExtEx = (PEMRSETWINDOWEXTEX) mr;
855 if(info->mode != MM_ISOTROPIC && info->mode != MM_ANISOTROPIC)
857 info->wndExtX = pSetWindowExtEx->szlExtent.cx;
858 info->wndExtY = pSetWindowExtEx->szlExtent.cy;
859 if (info->mode == MM_ISOTROPIC)
860 EMF_FixIsotropic(hdc, info);
862 TRACE("SetWindowExtEx: %d,%d\n",info->wndExtX,info->wndExtY);
865 case EMR_SETVIEWPORTORGEX:
867 PEMRSETVIEWPORTORGEX pSetViewportOrgEx = (PEMRSETVIEWPORTORGEX) mr;
868 enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
870 info->vportOrgX = pSetViewportOrgEx->ptlOrigin.x;
871 info->vportOrgY = pSetViewportOrgEx->ptlOrigin.y;
872 TRACE("SetViewportOrgEx: %d,%d\n",info->vportOrgX,info->vportOrgY);
875 case EMR_SETVIEWPORTEXTEX:
877 PEMRSETVIEWPORTEXTEX pSetViewportExtEx = (PEMRSETVIEWPORTEXTEX) mr;
878 enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
880 if(info->mode != MM_ISOTROPIC && info->mode != MM_ANISOTROPIC)
882 info->vportExtX = pSetViewportExtEx->szlExtent.cx;
883 info->vportExtY = pSetViewportExtEx->szlExtent.cy;
884 if (info->mode == MM_ISOTROPIC)
885 EMF_FixIsotropic(hdc, info);
886 TRACE("SetViewportExtEx: %d,%d\n",info->vportExtX,info->vportExtY);
891 PEMRCREATEPEN pCreatePen = (PEMRCREATEPEN) mr;
892 (handletable->objectHandle)[pCreatePen->ihPen] =
893 CreatePenIndirect(&pCreatePen->lopn);
896 case EMR_EXTCREATEPEN:
898 PEMREXTCREATEPEN pPen = (PEMREXTCREATEPEN) mr;
900 lb.lbStyle = pPen->elp.elpBrushStyle;
901 lb.lbColor = pPen->elp.elpColor;
902 lb.lbHatch = pPen->elp.elpHatch;
904 if(pPen->offBmi || pPen->offBits)
905 FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
907 (handletable->objectHandle)[pPen->ihPen] =
908 ExtCreatePen(pPen->elp.elpPenStyle, pPen->elp.elpWidth, &lb,
909 pPen->elp.elpNumEntries, pPen->elp.elpStyleEntry);
912 case EMR_CREATEBRUSHINDIRECT:
914 PEMRCREATEBRUSHINDIRECT pBrush = (PEMRCREATEBRUSHINDIRECT) mr;
916 brush.lbStyle = pBrush->lb.lbStyle;
917 brush.lbColor = pBrush->lb.lbColor;
918 brush.lbHatch = pBrush->lb.lbHatch;
919 (handletable->objectHandle)[pBrush->ihBrush] = CreateBrushIndirect(&brush);
922 case EMR_EXTCREATEFONTINDIRECTW:
924 PEMREXTCREATEFONTINDIRECTW pFont = (PEMREXTCREATEFONTINDIRECTW) mr;
925 (handletable->objectHandle)[pFont->ihFont] =
926 CreateFontIndirectW(&pFont->elfw.elfLogFont);
931 PEMRMOVETOEX pMoveToEx = (PEMRMOVETOEX) mr;
932 MoveToEx(hdc, pMoveToEx->ptl.x, pMoveToEx->ptl.y, NULL);
937 PEMRLINETO pLineTo = (PEMRLINETO) mr;
938 LineTo(hdc, pLineTo->ptl.x, pLineTo->ptl.y);
943 PEMRRECTANGLE pRect = (PEMRRECTANGLE) mr;
944 Rectangle(hdc, pRect->rclBox.left, pRect->rclBox.top,
945 pRect->rclBox.right, pRect->rclBox.bottom);
950 PEMRELLIPSE pEllipse = (PEMRELLIPSE) mr;
951 Ellipse(hdc, pEllipse->rclBox.left, pEllipse->rclBox.top,
952 pEllipse->rclBox.right, pEllipse->rclBox.bottom);
957 PEMRPOLYGON16 pPoly = (PEMRPOLYGON16) mr;
958 /* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
959 POINT *pts = HeapAlloc( GetProcessHeap(), 0,
960 pPoly->cpts * sizeof(POINT) );
962 for(i = 0; i < pPoly->cpts; i++)
964 pts[i].x = pPoly->apts[i].x;
965 pts[i].y = pPoly->apts[i].y;
967 Polygon(hdc, pts, pPoly->cpts);
968 HeapFree( GetProcessHeap(), 0, pts );
973 PEMRPOLYLINE16 pPoly = (PEMRPOLYLINE16) mr;
974 /* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
975 POINT *pts = HeapAlloc( GetProcessHeap(), 0,
976 pPoly->cpts * sizeof(POINT) );
978 for(i = 0; i < pPoly->cpts; i++)
980 pts[i].x = pPoly->apts[i].x;
981 pts[i].y = pPoly->apts[i].y;
983 Polyline(hdc, pts, pPoly->cpts);
984 HeapFree( GetProcessHeap(), 0, pts );
987 case EMR_POLYLINETO16:
989 PEMRPOLYLINETO16 pPoly = (PEMRPOLYLINETO16) mr;
990 /* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
991 POINT *pts = HeapAlloc( GetProcessHeap(), 0,
992 pPoly->cpts * sizeof(POINT) );
994 for(i = 0; i < pPoly->cpts; i++)
996 pts[i].x = pPoly->apts[i].x;
997 pts[i].y = pPoly->apts[i].y;
999 PolylineTo(hdc, pts, pPoly->cpts);
1000 HeapFree( GetProcessHeap(), 0, pts );
1003 case EMR_POLYBEZIER16:
1005 PEMRPOLYBEZIER16 pPoly = (PEMRPOLYBEZIER16) mr;
1006 /* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
1007 POINT *pts = HeapAlloc( GetProcessHeap(), 0,
1008 pPoly->cpts * sizeof(POINT) );
1010 for(i = 0; i < pPoly->cpts; i++)
1012 pts[i].x = pPoly->apts[i].x;
1013 pts[i].y = pPoly->apts[i].y;
1015 PolyBezier(hdc, pts, pPoly->cpts);
1016 HeapFree( GetProcessHeap(), 0, pts );
1019 case EMR_POLYBEZIERTO16:
1021 PEMRPOLYBEZIERTO16 pPoly = (PEMRPOLYBEZIERTO16) mr;
1022 /* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
1023 POINT *pts = HeapAlloc( GetProcessHeap(), 0,
1024 pPoly->cpts * sizeof(POINT) );
1026 for(i = 0; i < pPoly->cpts; i++)
1028 pts[i].x = pPoly->apts[i].x;
1029 pts[i].y = pPoly->apts[i].y;
1031 PolyBezierTo(hdc, pts, pPoly->cpts);
1032 HeapFree( GetProcessHeap(), 0, pts );
1035 case EMR_POLYPOLYGON16:
1037 PEMRPOLYPOLYGON16 pPolyPoly = (PEMRPOLYPOLYGON16) mr;
1038 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1039 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1041 POINT16 *pts16 = (POINT16 *)(pPolyPoly->aPolyCounts + pPolyPoly->nPolys);
1042 POINT *pts = HeapAlloc( GetProcessHeap(), 0, pPolyPoly->cpts * sizeof(POINT) );
1044 for(i = 0; i < pPolyPoly->cpts; i++)
1046 pts[i].x = pts16[i].x;
1047 pts[i].y = pts16[i].y;
1049 PolyPolygon(hdc, pts, (INT*)pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
1050 HeapFree( GetProcessHeap(), 0, pts );
1053 case EMR_POLYPOLYLINE16:
1055 PEMRPOLYPOLYLINE16 pPolyPoly = (PEMRPOLYPOLYLINE16) mr;
1056 /* NB POINTS array doesn't start at pPolyPoly->apts it's actually
1057 pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
1059 POINT16 *pts16 = (POINT16 *)(pPolyPoly->aPolyCounts + pPolyPoly->nPolys);
1060 POINT *pts = HeapAlloc( GetProcessHeap(), 0, pPolyPoly->cpts * sizeof(POINT) );
1062 for(i = 0; i < pPolyPoly->cpts; i++)
1064 pts[i].x = pts16[i].x;
1065 pts[i].y = pts16[i].y;
1067 PolyPolyline(hdc, pts, pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
1068 HeapFree( GetProcessHeap(), 0, pts );
1072 case EMR_STRETCHDIBITS:
1074 EMRSTRETCHDIBITS *pStretchDIBits = (EMRSTRETCHDIBITS *)mr;
1077 pStretchDIBits->xDest,
1078 pStretchDIBits->yDest,
1079 pStretchDIBits->cxDest,
1080 pStretchDIBits->cyDest,
1081 pStretchDIBits->xSrc,
1082 pStretchDIBits->ySrc,
1083 pStretchDIBits->cxSrc,
1084 pStretchDIBits->cySrc,
1085 (BYTE *)mr + pStretchDIBits->offBitsSrc,
1086 (const BITMAPINFO *)((BYTE *)mr + pStretchDIBits->offBmiSrc),
1087 pStretchDIBits->iUsageSrc,
1088 pStretchDIBits->dwRop);
1092 case EMR_EXTTEXTOUTA:
1094 PEMREXTTEXTOUTA pExtTextOutA = (PEMREXTTEXTOUTA)mr;
1098 rc.left = pExtTextOutA->emrtext.rcl.left;
1099 rc.top = pExtTextOutA->emrtext.rcl.top;
1100 rc.right = pExtTextOutA->emrtext.rcl.right;
1101 rc.bottom = pExtTextOutA->emrtext.rcl.bottom;
1102 TRACE("EMR_EXTTEXTOUTA: x,y = %ld, %ld. rect = %ld, %ld - %ld, %ld. flags %08lx\n",
1103 pExtTextOutA->emrtext.ptlReference.x, pExtTextOutA->emrtext.ptlReference.y,
1104 rc.left, rc.top, rc.right, rc.bottom, pExtTextOutA->emrtext.fOptions);
1106 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1107 * These files can be enumerated and played under Win98 just
1108 * fine, but at least Win2k chokes on them.
1110 if (pExtTextOutA->emrtext.offDx)
1111 dx = (INT *)((BYTE *)mr + pExtTextOutA->emrtext.offDx);
1113 ExtTextOutA(hdc, pExtTextOutA->emrtext.ptlReference.x, pExtTextOutA->emrtext.ptlReference.y,
1114 pExtTextOutA->emrtext.fOptions, &rc,
1115 (LPSTR)((BYTE *)mr + pExtTextOutA->emrtext.offString), pExtTextOutA->emrtext.nChars,
1120 case EMR_EXTTEXTOUTW:
1122 PEMREXTTEXTOUTW pExtTextOutW = (PEMREXTTEXTOUTW)mr;
1126 rc.left = pExtTextOutW->emrtext.rcl.left;
1127 rc.top = pExtTextOutW->emrtext.rcl.top;
1128 rc.right = pExtTextOutW->emrtext.rcl.right;
1129 rc.bottom = pExtTextOutW->emrtext.rcl.bottom;
1130 TRACE("EMR_EXTTEXTOUTW: x,y = %ld, %ld. rect = %ld, %ld - %ld, %ld. flags %08lx\n",
1131 pExtTextOutW->emrtext.ptlReference.x, pExtTextOutW->emrtext.ptlReference.y,
1132 rc.left, rc.top, rc.right, rc.bottom, pExtTextOutW->emrtext.fOptions);
1134 /* Linux version of pstoedit produces EMFs with offDx set to 0.
1135 * These files can be enumerated and played under Win98 just
1136 * fine, but at least Win2k chokes on them.
1138 if (pExtTextOutW->emrtext.offDx)
1139 dx = (INT *)((BYTE *)mr + pExtTextOutW->emrtext.offDx);
1141 ExtTextOutW(hdc, pExtTextOutW->emrtext.ptlReference.x, pExtTextOutW->emrtext.ptlReference.y,
1142 pExtTextOutW->emrtext.fOptions, &rc,
1143 (LPWSTR)((BYTE *)mr + pExtTextOutW->emrtext.offString), pExtTextOutW->emrtext.nChars,
1148 case EMR_CREATEPALETTE:
1150 PEMRCREATEPALETTE lpCreatePal = (PEMRCREATEPALETTE)mr;
1152 (handletable->objectHandle)[ lpCreatePal->ihPal ] =
1153 CreatePalette( &lpCreatePal->lgpl );
1158 case EMR_SELECTPALETTE:
1160 PEMRSELECTPALETTE lpSelectPal = (PEMRSELECTPALETTE)mr;
1162 if( lpSelectPal->ihPal & 0x80000000 ) {
1163 SelectPalette( hdc, GetStockObject(lpSelectPal->ihPal & 0x7fffffff), TRUE);
1165 SelectPalette( hdc, (handletable->objectHandle)[lpSelectPal->ihPal], TRUE);
1170 case EMR_REALIZEPALETTE:
1172 RealizePalette( hdc );
1176 case EMR_EXTSELECTCLIPRGN:
1179 PEMREXTSELECTCLIPRGN lpRgn = (PEMREXTSELECTCLIPRGN)mr;
1180 HRGN hRgn = ExtCreateRegion(NULL, lpRgn->cbRgnData, (RGNDATA *)lpRgn->RgnData);
1182 ExtSelectClipRgn(hdc, hRgn, (INT)(lpRgn->iMode));
1183 /* ExtSelectClipRgn created a copy of the region */
1186 FIXME("ExtSelectClipRgn\n");
1190 case EMR_SETMETARGN:
1196 case EMR_SETWORLDTRANSFORM:
1198 PEMRSETWORLDTRANSFORM lpXfrm = (PEMRSETWORLDTRANSFORM)mr;
1199 info->world_transform = lpXfrm->xform;
1203 case EMR_POLYBEZIER:
1205 PEMRPOLYBEZIER lpPolyBez = (PEMRPOLYBEZIER)mr;
1206 PolyBezier(hdc, (const POINT*)lpPolyBez->aptl, (UINT)lpPolyBez->cptl);
1212 PEMRPOLYGON lpPoly = (PEMRPOLYGON)mr;
1213 Polygon( hdc, (const POINT*)lpPoly->aptl, (UINT)lpPoly->cptl );
1219 PEMRPOLYLINE lpPolyLine = (PEMRPOLYLINE)mr;
1220 Polyline(hdc, (const POINT*)lpPolyLine->aptl, (UINT)lpPolyLine->cptl);
1224 case EMR_POLYBEZIERTO:
1226 PEMRPOLYBEZIERTO lpPolyBezierTo = (PEMRPOLYBEZIERTO)mr;
1227 PolyBezierTo( hdc, (const POINT*)lpPolyBezierTo->aptl,
1228 (UINT)lpPolyBezierTo->cptl );
1232 case EMR_POLYLINETO:
1234 PEMRPOLYLINETO lpPolyLineTo = (PEMRPOLYLINETO)mr;
1235 PolylineTo( hdc, (const POINT*)lpPolyLineTo->aptl,
1236 (UINT)lpPolyLineTo->cptl );
1240 case EMR_POLYPOLYLINE:
1242 PEMRPOLYPOLYLINE pPolyPolyline = (PEMRPOLYPOLYLINE) mr;
1243 /* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
1245 PolyPolyline(hdc, (LPPOINT)(pPolyPolyline->aPolyCounts +
1246 pPolyPolyline->nPolys),
1247 pPolyPolyline->aPolyCounts,
1248 pPolyPolyline->nPolys );
1253 case EMR_POLYPOLYGON:
1255 PEMRPOLYPOLYGON pPolyPolygon = (PEMRPOLYPOLYGON) mr;
1257 /* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
1259 PolyPolygon(hdc, (LPPOINT)(pPolyPolygon->aPolyCounts +
1260 pPolyPolygon->nPolys),
1261 (INT*)pPolyPolygon->aPolyCounts, pPolyPolygon->nPolys );
1265 case EMR_SETBRUSHORGEX:
1267 PEMRSETBRUSHORGEX lpSetBrushOrgEx = (PEMRSETBRUSHORGEX)mr;
1270 (INT)lpSetBrushOrgEx->ptlOrigin.x,
1271 (INT)lpSetBrushOrgEx->ptlOrigin.y,
1279 PEMRSETPIXELV lpSetPixelV = (PEMRSETPIXELV)mr;
1282 (INT)lpSetPixelV->ptlPixel.x,
1283 (INT)lpSetPixelV->ptlPixel.y,
1284 lpSetPixelV->crColor );
1289 case EMR_SETMAPPERFLAGS:
1291 PEMRSETMAPPERFLAGS lpSetMapperFlags = (PEMRSETMAPPERFLAGS)mr;
1293 SetMapperFlags( hdc, lpSetMapperFlags->dwFlags );
1298 case EMR_SETCOLORADJUSTMENT:
1300 PEMRSETCOLORADJUSTMENT lpSetColorAdjust = (PEMRSETCOLORADJUSTMENT)mr;
1302 SetColorAdjustment( hdc, &lpSetColorAdjust->ColorAdjustment );
1307 case EMR_OFFSETCLIPRGN:
1309 PEMROFFSETCLIPRGN lpOffsetClipRgn = (PEMROFFSETCLIPRGN)mr;
1312 (INT)lpOffsetClipRgn->ptlOffset.x,
1313 (INT)lpOffsetClipRgn->ptlOffset.y );
1314 FIXME("OffsetClipRgn\n");
1319 case EMR_EXCLUDECLIPRECT:
1321 PEMREXCLUDECLIPRECT lpExcludeClipRect = (PEMREXCLUDECLIPRECT)mr;
1323 ExcludeClipRect( hdc,
1324 lpExcludeClipRect->rclClip.left,
1325 lpExcludeClipRect->rclClip.top,
1326 lpExcludeClipRect->rclClip.right,
1327 lpExcludeClipRect->rclClip.bottom );
1328 FIXME("ExcludeClipRect\n");
1333 case EMR_SCALEVIEWPORTEXTEX:
1335 PEMRSCALEVIEWPORTEXTEX lpScaleViewportExtEx = (PEMRSCALEVIEWPORTEXTEX)mr;
1337 if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
1339 if (!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->xDenom ||
1340 !lpScaleViewportExtEx->yNum || !lpScaleViewportExtEx->yDenom)
1342 info->vportExtX = (info->vportExtX * lpScaleViewportExtEx->xNum) /
1343 lpScaleViewportExtEx->xDenom;
1344 info->vportExtY = (info->vportExtY * lpScaleViewportExtEx->yNum) /
1345 lpScaleViewportExtEx->yDenom;
1346 if (info->vportExtX == 0) info->vportExtX = 1;
1347 if (info->vportExtY == 0) info->vportExtY = 1;
1348 if (info->mode == MM_ISOTROPIC)
1349 EMF_FixIsotropic(hdc, info);
1351 TRACE("EMRSCALEVIEWPORTEXTEX %ld/%ld %ld/%ld\n",
1352 lpScaleViewportExtEx->xNum,lpScaleViewportExtEx->xDenom,
1353 lpScaleViewportExtEx->yNum,lpScaleViewportExtEx->yDenom);
1358 case EMR_SCALEWINDOWEXTEX:
1360 PEMRSCALEWINDOWEXTEX lpScaleWindowExtEx = (PEMRSCALEWINDOWEXTEX)mr;
1362 if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
1364 if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
1365 !lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom)
1367 info->wndExtX = (info->wndExtX * lpScaleWindowExtEx->xNum) /
1368 lpScaleWindowExtEx->xDenom;
1369 info->wndExtY = (info->wndExtY * lpScaleWindowExtEx->yNum) /
1370 lpScaleWindowExtEx->yDenom;
1371 if (info->wndExtX == 0) info->wndExtX = 1;
1372 if (info->wndExtY == 0) info->wndExtY = 1;
1373 if (info->mode == MM_ISOTROPIC)
1374 EMF_FixIsotropic(hdc, info);
1376 TRACE("EMRSCALEWINDOWEXTEX %ld/%ld %ld/%ld\n",
1377 lpScaleWindowExtEx->xNum,lpScaleWindowExtEx->xDenom,
1378 lpScaleWindowExtEx->yNum,lpScaleWindowExtEx->yDenom);
1383 case EMR_MODIFYWORLDTRANSFORM:
1385 PEMRMODIFYWORLDTRANSFORM lpModifyWorldTrans = (PEMRMODIFYWORLDTRANSFORM)mr;
1387 switch(lpModifyWorldTrans->iMode) {
1389 info->world_transform.eM11 = info->world_transform.eM22 = 1;
1390 info->world_transform.eM12 = info->world_transform.eM21 = 0;
1391 info->world_transform.eDx = info->world_transform.eDy = 0;
1393 case MWT_LEFTMULTIPLY:
1394 CombineTransform(&info->world_transform, &lpModifyWorldTrans->xform,
1395 &info->world_transform);
1397 case MWT_RIGHTMULTIPLY:
1398 CombineTransform(&info->world_transform, &info->world_transform,
1399 &lpModifyWorldTrans->xform);
1402 FIXME("Unknown imode %ld\n", lpModifyWorldTrans->iMode);
1410 PEMRANGLEARC lpAngleArc = (PEMRANGLEARC)mr;
1413 (INT)lpAngleArc->ptlCenter.x, (INT)lpAngleArc->ptlCenter.y,
1414 lpAngleArc->nRadius, lpAngleArc->eStartAngle,
1415 lpAngleArc->eSweepAngle );
1422 PEMRROUNDRECT lpRoundRect = (PEMRROUNDRECT)mr;
1425 lpRoundRect->rclBox.left,
1426 lpRoundRect->rclBox.top,
1427 lpRoundRect->rclBox.right,
1428 lpRoundRect->rclBox.bottom,
1429 lpRoundRect->szlCorner.cx,
1430 lpRoundRect->szlCorner.cy );
1437 PEMRARC lpArc = (PEMRARC)mr;
1440 (INT)lpArc->rclBox.left,
1441 (INT)lpArc->rclBox.top,
1442 (INT)lpArc->rclBox.right,
1443 (INT)lpArc->rclBox.bottom,
1444 (INT)lpArc->ptlStart.x,
1445 (INT)lpArc->ptlStart.y,
1446 (INT)lpArc->ptlEnd.x,
1447 (INT)lpArc->ptlEnd.y );
1454 PEMRCHORD lpChord = (PEMRCHORD)mr;
1457 (INT)lpChord->rclBox.left,
1458 (INT)lpChord->rclBox.top,
1459 (INT)lpChord->rclBox.right,
1460 (INT)lpChord->rclBox.bottom,
1461 (INT)lpChord->ptlStart.x,
1462 (INT)lpChord->ptlStart.y,
1463 (INT)lpChord->ptlEnd.x,
1464 (INT)lpChord->ptlEnd.y );
1471 PEMRPIE lpPie = (PEMRPIE)mr;
1474 (INT)lpPie->rclBox.left,
1475 (INT)lpPie->rclBox.top,
1476 (INT)lpPie->rclBox.right,
1477 (INT)lpPie->rclBox.bottom,
1478 (INT)lpPie->ptlStart.x,
1479 (INT)lpPie->ptlStart.y,
1480 (INT)lpPie->ptlEnd.x,
1481 (INT)lpPie->ptlEnd.y );
1488 PEMRARC lpArcTo = (PEMRARC)mr;
1491 (INT)lpArcTo->rclBox.left,
1492 (INT)lpArcTo->rclBox.top,
1493 (INT)lpArcTo->rclBox.right,
1494 (INT)lpArcTo->rclBox.bottom,
1495 (INT)lpArcTo->ptlStart.x,
1496 (INT)lpArcTo->ptlStart.y,
1497 (INT)lpArcTo->ptlEnd.x,
1498 (INT)lpArcTo->ptlEnd.y );
1503 case EMR_EXTFLOODFILL:
1505 PEMREXTFLOODFILL lpExtFloodFill = (PEMREXTFLOODFILL)mr;
1508 (INT)lpExtFloodFill->ptlStart.x,
1509 (INT)lpExtFloodFill->ptlStart.y,
1510 lpExtFloodFill->crColor,
1511 (UINT)lpExtFloodFill->iMode );
1518 PEMRPOLYDRAW lpPolyDraw = (PEMRPOLYDRAW)mr;
1520 (const POINT*)lpPolyDraw->aptl,
1521 lpPolyDraw->abTypes,
1522 (INT)lpPolyDraw->cptl );
1527 case EMR_SETARCDIRECTION:
1529 PEMRSETARCDIRECTION lpSetArcDirection = (PEMRSETARCDIRECTION)mr;
1530 SetArcDirection( hdc, (INT)lpSetArcDirection->iArcDirection );
1534 case EMR_SETMITERLIMIT:
1536 PEMRSETMITERLIMIT lpSetMiterLimit = (PEMRSETMITERLIMIT)mr;
1537 SetMiterLimit( hdc, lpSetMiterLimit->eMiterLimit, NULL );
1553 case EMR_CLOSEFIGURE:
1561 /*PEMRFILLPATH lpFillPath = (PEMRFILLPATH)mr;*/
1566 case EMR_STROKEANDFILLPATH:
1568 /*PEMRSTROKEANDFILLPATH lpStrokeAndFillPath = (PEMRSTROKEANDFILLPATH)mr;*/
1569 StrokeAndFillPath( hdc );
1573 case EMR_STROKEPATH:
1575 /*PEMRSTROKEPATH lpStrokePath = (PEMRSTROKEPATH)mr;*/
1580 case EMR_FLATTENPATH:
1592 case EMR_SELECTCLIPPATH:
1594 PEMRSELECTCLIPPATH lpSelectClipPath = (PEMRSELECTCLIPPATH)mr;
1595 SelectClipPath( hdc, (INT)lpSelectClipPath->iMode );
1605 case EMR_CREATECOLORSPACE:
1607 PEMRCREATECOLORSPACE lpCreateColorSpace = (PEMRCREATECOLORSPACE)mr;
1608 (handletable->objectHandle)[lpCreateColorSpace->ihCS] =
1609 CreateColorSpaceA( &lpCreateColorSpace->lcs );
1613 case EMR_SETCOLORSPACE:
1615 PEMRSETCOLORSPACE lpSetColorSpace = (PEMRSETCOLORSPACE)mr;
1617 (handletable->objectHandle)[lpSetColorSpace->ihCS] );
1621 case EMR_DELETECOLORSPACE:
1623 PEMRDELETECOLORSPACE lpDeleteColorSpace = (PEMRDELETECOLORSPACE)mr;
1624 DeleteColorSpace( (handletable->objectHandle)[lpDeleteColorSpace->ihCS] );
1628 case EMR_SETICMMODE:
1630 PEMRSETICMMODE lpSetICMMode = (PEMRSETICMMODE)mr;
1631 SetICMMode( hdc, (INT)lpSetICMMode->iMode );
1635 case EMR_PIXELFORMAT:
1638 PEMRPIXELFORMAT lpPixelFormat = (PEMRPIXELFORMAT)mr;
1640 iPixelFormat = ChoosePixelFormat( hdc, &lpPixelFormat->pfd );
1641 SetPixelFormat( hdc, iPixelFormat, &lpPixelFormat->pfd );
1646 case EMR_SETPALETTEENTRIES:
1648 PEMRSETPALETTEENTRIES lpSetPaletteEntries = (PEMRSETPALETTEENTRIES)mr;
1650 SetPaletteEntries( (handletable->objectHandle)[lpSetPaletteEntries->ihPal],
1651 (UINT)lpSetPaletteEntries->iStart,
1652 (UINT)lpSetPaletteEntries->cEntries,
1653 lpSetPaletteEntries->aPalEntries );
1658 case EMR_RESIZEPALETTE:
1660 PEMRRESIZEPALETTE lpResizePalette = (PEMRRESIZEPALETTE)mr;
1662 ResizePalette( (handletable->objectHandle)[lpResizePalette->ihPal],
1663 (UINT)lpResizePalette->cEntries );
1668 case EMR_CREATEDIBPATTERNBRUSHPT:
1670 PEMRCREATEDIBPATTERNBRUSHPT lpCreate = (PEMRCREATEDIBPATTERNBRUSHPT)mr;
1671 LPVOID lpPackedStruct;
1673 /* check that offsets and data are contained within the record */
1674 if ( !( (lpCreate->cbBmi>=0) && (lpCreate->cbBits>=0) &&
1675 (lpCreate->offBmi>=0) && (lpCreate->offBits>=0) &&
1676 ((lpCreate->offBmi +lpCreate->cbBmi ) <= mr->nSize) &&
1677 ((lpCreate->offBits+lpCreate->cbBits) <= mr->nSize) ) )
1679 ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
1683 /* This is a BITMAPINFO struct followed directly by bitmap bits */
1684 lpPackedStruct = HeapAlloc( GetProcessHeap(), 0,
1685 lpCreate->cbBmi + lpCreate->cbBits );
1688 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1692 /* Now pack this structure */
1693 memcpy( lpPackedStruct,
1694 ((BYTE*)lpCreate) + lpCreate->offBmi,
1696 memcpy( ((BYTE*)lpPackedStruct) + lpCreate->cbBmi,
1697 ((BYTE*)lpCreate) + lpCreate->offBits,
1700 (handletable->objectHandle)[lpCreate->ihBrush] =
1701 CreateDIBPatternBrushPt( lpPackedStruct,
1702 (UINT)lpCreate->iUsage );
1704 HeapFree(GetProcessHeap(), 0, lpPackedStruct);
1708 case EMR_CREATEMONOBRUSH:
1710 PEMRCREATEMONOBRUSH pCreateMonoBrush = (PEMRCREATEMONOBRUSH)mr;
1711 BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pCreateMonoBrush->offBmi);
1714 /* Need to check if the bitmap is monochrome, and if the
1715 two colors are really black and white */
1716 if (pCreateMonoBrush->iUsage == DIB_PAL_MONO)
1720 /* Undocumented iUsage indicates a mono bitmap with no palette table,
1721 * aligned to 32 rather than 16 bits.
1724 bm.bmWidth = pbi->bmiHeader.biWidth;
1725 bm.bmHeight = abs(pbi->bmiHeader.biHeight);
1726 bm.bmWidthBytes = 4 * ((pbi->bmiHeader.biWidth + 31) / 32);
1727 bm.bmPlanes = pbi->bmiHeader.biPlanes;
1728 bm.bmBitsPixel = pbi->bmiHeader.biBitCount;
1729 bm.bmBits = (BYTE *)mr + pCreateMonoBrush->offBits;
1730 hBmp = CreateBitmapIndirect(&bm);
1732 else if (is_dib_monochrome(pbi))
1734 /* Top-down DIBs have a negative height */
1735 LONG height = pbi->bmiHeader.biHeight;
1737 hBmp = CreateBitmap(pbi->bmiHeader.biWidth, abs(height), 1, 1, NULL);
1738 SetDIBits(hdc, hBmp, 0, pbi->bmiHeader.biHeight,
1739 (BYTE *)mr + pCreateMonoBrush->offBits, pbi, pCreateMonoBrush->iUsage);
1743 hBmp = CreateDIBitmap(hdc, (BITMAPINFOHEADER *)pbi, CBM_INIT,
1744 (BYTE *)mr + pCreateMonoBrush->offBits, pbi, pCreateMonoBrush->iUsage);
1747 (handletable->objectHandle)[pCreateMonoBrush->ihBrush] = CreatePatternBrush(hBmp);
1749 /* CreatePatternBrush created a copy of the bitmap */
1756 PEMRBITBLT pBitBlt = (PEMRBITBLT)mr;
1758 if(pBitBlt->offBmiSrc == 0) { /* Record is a PatBlt */
1759 PatBlt(hdc, pBitBlt->xDest, pBitBlt->yDest, pBitBlt->cxDest, pBitBlt->cyDest,
1761 } else { /* BitBlt */
1762 HDC hdcSrc = CreateCompatibleDC(hdc);
1763 HBRUSH hBrush, hBrushOld;
1764 HBITMAP hBmp = 0, hBmpOld = 0;
1765 BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pBitBlt->offBmiSrc);
1767 SetWorldTransform(hdcSrc, &pBitBlt->xformSrc);
1769 hBrush = CreateSolidBrush(pBitBlt->crBkColorSrc);
1770 hBrushOld = SelectObject(hdcSrc, hBrush);
1771 PatBlt(hdcSrc, pBitBlt->rclBounds.left, pBitBlt->rclBounds.top,
1772 pBitBlt->rclBounds.right - pBitBlt->rclBounds.left,
1773 pBitBlt->rclBounds.bottom - pBitBlt->rclBounds.top, PATCOPY);
1774 SelectObject(hdcSrc, hBrushOld);
1775 DeleteObject(hBrush);
1777 hBmp = CreateDIBitmap(hdc, (BITMAPINFOHEADER *)pbi, CBM_INIT,
1778 (BYTE *)mr + pBitBlt->offBitsSrc, pbi, pBitBlt->iUsageSrc);
1779 hBmpOld = SelectObject(hdcSrc, hBmp);
1781 BitBlt(hdc, pBitBlt->xDest, pBitBlt->yDest, pBitBlt->cxDest, pBitBlt->cyDest,
1782 hdcSrc, pBitBlt->xSrc, pBitBlt->ySrc, pBitBlt->dwRop);
1784 SelectObject(hdcSrc, hBmpOld);
1791 case EMR_STRETCHBLT:
1793 PEMRSTRETCHBLT pStretchBlt= (PEMRSTRETCHBLT)mr;
1795 TRACE("EMR_STRETCHBLT: %ld, %ld %ldx%ld -> %ld, %ld %ldx%ld. rop %08lx offBitsSrc %ld\n",
1796 pStretchBlt->xSrc, pStretchBlt->ySrc, pStretchBlt->cxSrc, pStretchBlt->cySrc,
1797 pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
1798 pStretchBlt->dwRop, pStretchBlt->offBitsSrc);
1800 if(pStretchBlt->offBmiSrc == 0) { /* Record is a PatBlt */
1801 PatBlt(hdc, pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
1802 pStretchBlt->dwRop);
1803 } else { /* StretchBlt */
1804 HDC hdcSrc = CreateCompatibleDC(hdc);
1805 HBRUSH hBrush, hBrushOld;
1806 HBITMAP hBmp = 0, hBmpOld = 0;
1807 BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pStretchBlt->offBmiSrc);
1809 SetWorldTransform(hdcSrc, &pStretchBlt->xformSrc);
1811 hBrush = CreateSolidBrush(pStretchBlt->crBkColorSrc);
1812 hBrushOld = SelectObject(hdcSrc, hBrush);
1813 PatBlt(hdcSrc, pStretchBlt->rclBounds.left, pStretchBlt->rclBounds.top,
1814 pStretchBlt->rclBounds.right - pStretchBlt->rclBounds.left,
1815 pStretchBlt->rclBounds.bottom - pStretchBlt->rclBounds.top, PATCOPY);
1816 SelectObject(hdcSrc, hBrushOld);
1817 DeleteObject(hBrush);
1819 hBmp = CreateDIBitmap(hdc, (BITMAPINFOHEADER *)pbi, CBM_INIT,
1820 (BYTE *)mr + pStretchBlt->offBitsSrc, pbi, pStretchBlt->iUsageSrc);
1821 hBmpOld = SelectObject(hdcSrc, hBmp);
1823 StretchBlt(hdc, pStretchBlt->xDest, pStretchBlt->yDest, pStretchBlt->cxDest, pStretchBlt->cyDest,
1824 hdcSrc, pStretchBlt->xSrc, pStretchBlt->ySrc, pStretchBlt->cxSrc, pStretchBlt->cySrc,
1825 pStretchBlt->dwRop);
1827 SelectObject(hdcSrc, hBmpOld);
1834 case EMR_ALPHABLEND:
1836 PEMRALPHABLEND pAlphaBlend= (PEMRALPHABLEND)mr;
1838 TRACE("EMR_ALPHABLEND: %ld, %ld %ldx%ld -> %ld, %ld %ldx%ld. blendfn %08lx offBitsSrc %ld\n",
1839 pAlphaBlend->xSrc, pAlphaBlend->ySrc, pAlphaBlend->cxSrc, pAlphaBlend->cySrc,
1840 pAlphaBlend->xDest, pAlphaBlend->yDest, pAlphaBlend->cxDest, pAlphaBlend->cyDest,
1841 pAlphaBlend->dwRop, pAlphaBlend->offBitsSrc);
1843 if(pAlphaBlend->offBmiSrc == 0) {
1844 FIXME("EMR_ALPHABLEND: offBmiSrc == 0\n");
1846 HDC hdcSrc = CreateCompatibleDC(hdc);
1847 HBITMAP hBmp = 0, hBmpOld = 0;
1848 BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pAlphaBlend->offBmiSrc);
1849 BLENDFUNCTION blendfn;
1852 SetWorldTransform(hdcSrc, &pAlphaBlend->xformSrc);
1854 hBmp = CreateDIBSection(hdc, pbi, pAlphaBlend->iUsageSrc, &bits, NULL, 0);
1855 memcpy(bits, (BYTE*)mr + pAlphaBlend->offBitsSrc, pAlphaBlend->cbBitsSrc);
1856 hBmpOld = SelectObject(hdcSrc, hBmp);
1858 blendfn.BlendOp = (pAlphaBlend->dwRop >> 24) & 0xff;
1859 blendfn.BlendFlags = (pAlphaBlend->dwRop >> 16) & 0xff;
1860 blendfn.SourceConstantAlpha = (pAlphaBlend->dwRop >> 8) & 0xff;
1861 blendfn.AlphaFormat = (pAlphaBlend->dwRop) & 0xff;
1863 GdiAlphaBlend(hdc, pAlphaBlend->xDest, pAlphaBlend->yDest, pAlphaBlend->cxDest, pAlphaBlend->cyDest,
1864 hdcSrc, pAlphaBlend->xSrc, pAlphaBlend->ySrc, pAlphaBlend->cxSrc, pAlphaBlend->cySrc,
1867 SelectObject(hdcSrc, hBmpOld);
1876 PEMRMASKBLT pMaskBlt= (PEMRMASKBLT)mr;
1877 HDC hdcSrc = CreateCompatibleDC(hdc);
1878 HBRUSH hBrush, hBrushOld;
1879 HBITMAP hBmp, hBmpOld, hBmpMask;
1882 SetWorldTransform(hdcSrc, &pMaskBlt->xformSrc);
1884 hBrush = CreateSolidBrush(pMaskBlt->crBkColorSrc);
1885 hBrushOld = SelectObject(hdcSrc, hBrush);
1886 PatBlt(hdcSrc, pMaskBlt->rclBounds.left, pMaskBlt->rclBounds.top,
1887 pMaskBlt->rclBounds.right - pMaskBlt->rclBounds.left,
1888 pMaskBlt->rclBounds.bottom - pMaskBlt->rclBounds.top, PATCOPY);
1889 SelectObject(hdcSrc, hBrushOld);
1890 DeleteObject(hBrush);
1892 pbi = (BITMAPINFO *)((BYTE *)mr + pMaskBlt->offBmiMask);
1893 hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
1895 SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
1896 (BYTE *)mr + pMaskBlt->offBitsMask, pbi, pMaskBlt->iUsageMask);
1898 pbi = (BITMAPINFO *)((BYTE *)mr + pMaskBlt->offBmiSrc);
1899 hBmp = CreateDIBitmap(hdc, (BITMAPINFOHEADER *)pbi, CBM_INIT,
1900 (BYTE *)mr + pMaskBlt->offBitsSrc, pbi, pMaskBlt->iUsageSrc);
1901 hBmpOld = SelectObject(hdcSrc, hBmp);
1914 SelectObject(hdcSrc, hBmpOld);
1916 DeleteObject(hBmpMask);
1923 PEMRPLGBLT pPlgBlt= (PEMRPLGBLT)mr;
1924 HDC hdcSrc = CreateCompatibleDC(hdc);
1925 HBRUSH hBrush, hBrushOld;
1926 HBITMAP hBmp, hBmpOld, hBmpMask;
1930 SetWorldTransform(hdcSrc, &pPlgBlt->xformSrc);
1932 pts[0].x = pPlgBlt->aptlDest[0].x; pts[0].y = pPlgBlt->aptlDest[0].y;
1933 pts[1].x = pPlgBlt->aptlDest[1].x; pts[1].y = pPlgBlt->aptlDest[1].y;
1934 pts[2].x = pPlgBlt->aptlDest[2].x; pts[2].y = pPlgBlt->aptlDest[2].y;
1936 hBrush = CreateSolidBrush(pPlgBlt->crBkColorSrc);
1937 hBrushOld = SelectObject(hdcSrc, hBrush);
1938 PatBlt(hdcSrc, pPlgBlt->rclBounds.left, pPlgBlt->rclBounds.top,
1939 pPlgBlt->rclBounds.right - pPlgBlt->rclBounds.left,
1940 pPlgBlt->rclBounds.bottom - pPlgBlt->rclBounds.top, PATCOPY);
1941 SelectObject(hdcSrc, hBrushOld);
1942 DeleteObject(hBrush);
1944 pbi = (BITMAPINFO *)((BYTE *)mr + pPlgBlt->offBmiMask);
1945 hBmpMask = CreateBitmap(pbi->bmiHeader.biWidth, pbi->bmiHeader.biHeight,
1947 SetDIBits(hdc, hBmpMask, 0, pbi->bmiHeader.biHeight,
1948 (BYTE *)mr + pPlgBlt->offBitsMask, pbi, pPlgBlt->iUsageMask);
1950 pbi = (BITMAPINFO *)((BYTE *)mr + pPlgBlt->offBmiSrc);
1951 hBmp = CreateDIBitmap(hdc, (BITMAPINFOHEADER *)pbi, CBM_INIT,
1952 (BYTE *)mr + pPlgBlt->offBitsSrc, pbi, pPlgBlt->iUsageSrc);
1953 hBmpOld = SelectObject(hdcSrc, hBmp);
1964 SelectObject(hdcSrc, hBmpOld);
1966 DeleteObject(hBmpMask);
1971 case EMR_SETDIBITSTODEVICE:
1973 PEMRSETDIBITSTODEVICE pSetDIBitsToDevice = (PEMRSETDIBITSTODEVICE)mr;
1975 SetDIBitsToDevice(hdc,
1976 pSetDIBitsToDevice->xDest,
1977 pSetDIBitsToDevice->yDest,
1978 pSetDIBitsToDevice->cxSrc,
1979 pSetDIBitsToDevice->cySrc,
1980 pSetDIBitsToDevice->xSrc,
1981 pSetDIBitsToDevice->ySrc,
1982 pSetDIBitsToDevice->iStartScan,
1983 pSetDIBitsToDevice->cScans,
1984 (BYTE *)mr + pSetDIBitsToDevice->offBitsSrc,
1985 (BITMAPINFO *)((BYTE *)mr + pSetDIBitsToDevice->offBmiSrc),
1986 pSetDIBitsToDevice->iUsageSrc);
1990 case EMR_POLYTEXTOUTA:
1992 PEMRPOLYTEXTOUTA pPolyTextOutA = (PEMRPOLYTEXTOUTA)mr;
1993 POLYTEXTA *polytextA = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA->cStrings * sizeof(POLYTEXTA));
1995 XFORM xform, xformOld;
1998 gModeOld = SetGraphicsMode(hdc, pPolyTextOutA->iGraphicsMode);
1999 GetWorldTransform(hdc, &xformOld);
2001 xform.eM11 = pPolyTextOutA->exScale;
2004 xform.eM22 = pPolyTextOutA->eyScale;
2007 SetWorldTransform(hdc, &xform);
2009 /* Set up POLYTEXTA structures */
2010 for(i = 0; i < pPolyTextOutA->cStrings; i++)
2012 polytextA[i].x = pPolyTextOutA->aemrtext[i].ptlReference.x;
2013 polytextA[i].y = pPolyTextOutA->aemrtext[i].ptlReference.y;
2014 polytextA[i].n = pPolyTextOutA->aemrtext[i].nChars;
2015 polytextA[i].lpstr = (LPSTR)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offString);
2016 polytextA[i].uiFlags = pPolyTextOutA->aemrtext[i].fOptions;
2017 polytextA[i].rcl.left = pPolyTextOutA->aemrtext[i].rcl.left;
2018 polytextA[i].rcl.right = pPolyTextOutA->aemrtext[i].rcl.right;
2019 polytextA[i].rcl.top = pPolyTextOutA->aemrtext[i].rcl.top;
2020 polytextA[i].rcl.bottom = pPolyTextOutA->aemrtext[i].rcl.bottom;
2021 polytextA[i].pdx = (int *)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offDx);
2023 PolyTextOutA(hdc, polytextA, pPolyTextOutA->cStrings);
2024 HeapFree(GetProcessHeap(), 0, polytextA);
2026 SetWorldTransform(hdc, &xformOld);
2027 SetGraphicsMode(hdc, gModeOld);
2031 case EMR_POLYTEXTOUTW:
2033 PEMRPOLYTEXTOUTW pPolyTextOutW = (PEMRPOLYTEXTOUTW)mr;
2034 POLYTEXTW *polytextW = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW->cStrings * sizeof(POLYTEXTW));
2036 XFORM xform, xformOld;
2039 gModeOld = SetGraphicsMode(hdc, pPolyTextOutW->iGraphicsMode);
2040 GetWorldTransform(hdc, &xformOld);
2042 xform.eM11 = pPolyTextOutW->exScale;
2045 xform.eM22 = pPolyTextOutW->eyScale;
2048 SetWorldTransform(hdc, &xform);
2050 /* Set up POLYTEXTW structures */
2051 for(i = 0; i < pPolyTextOutW->cStrings; i++)
2053 polytextW[i].x = pPolyTextOutW->aemrtext[i].ptlReference.x;
2054 polytextW[i].y = pPolyTextOutW->aemrtext[i].ptlReference.y;
2055 polytextW[i].n = pPolyTextOutW->aemrtext[i].nChars;
2056 polytextW[i].lpstr = (LPWSTR)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offString);
2057 polytextW[i].uiFlags = pPolyTextOutW->aemrtext[i].fOptions;
2058 polytextW[i].rcl.left = pPolyTextOutW->aemrtext[i].rcl.left;
2059 polytextW[i].rcl.right = pPolyTextOutW->aemrtext[i].rcl.right;
2060 polytextW[i].rcl.top = pPolyTextOutW->aemrtext[i].rcl.top;
2061 polytextW[i].rcl.bottom = pPolyTextOutW->aemrtext[i].rcl.bottom;
2062 polytextW[i].pdx = (int *)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offDx);
2064 PolyTextOutW(hdc, polytextW, pPolyTextOutW->cStrings);
2065 HeapFree(GetProcessHeap(), 0, polytextW);
2067 SetWorldTransform(hdc, &xformOld);
2068 SetGraphicsMode(hdc, gModeOld);
2074 PEMRFILLRGN pFillRgn = (PEMRFILLRGN)mr;
2075 HRGN hRgn = ExtCreateRegion(NULL, pFillRgn->cbRgnData, (RGNDATA *)pFillRgn->RgnData);
2078 (handletable->objectHandle)[pFillRgn->ihBrush]);
2085 PEMRFRAMERGN pFrameRgn = (PEMRFRAMERGN)mr;
2086 HRGN hRgn = ExtCreateRegion(NULL, pFrameRgn->cbRgnData, (RGNDATA *)pFrameRgn->RgnData);
2089 (handletable->objectHandle)[pFrameRgn->ihBrush],
2090 pFrameRgn->szlStroke.cx,
2091 pFrameRgn->szlStroke.cy);
2098 PEMRINVERTRGN pInvertRgn = (PEMRINVERTRGN)mr;
2099 HRGN hRgn = ExtCreateRegion(NULL, pInvertRgn->cbRgnData, (RGNDATA *)pInvertRgn->RgnData);
2100 InvertRgn(hdc, hRgn);
2107 PEMRPAINTRGN pPaintRgn = (PEMRPAINTRGN)mr;
2108 HRGN hRgn = ExtCreateRegion(NULL, pPaintRgn->cbRgnData, (RGNDATA *)pPaintRgn->RgnData);
2109 PaintRgn(hdc, hRgn);
2114 case EMR_SETTEXTJUSTIFICATION:
2116 PEMRSETTEXTJUSTIFICATION pSetTextJust = (PEMRSETTEXTJUSTIFICATION)mr;
2117 SetTextJustification(hdc, pSetTextJust->nBreakExtra, pSetTextJust->nBreakCount);
2123 PEMRSETLAYOUT pSetLayout = (PEMRSETLAYOUT)mr;
2124 SetLayout(hdc, pSetLayout->iMode);
2128 case EMR_POLYDRAW16:
2130 case EMR_GLSBOUNDEDRECORD:
2131 case EMR_DRAWESCAPE :
2134 case EMR_SMALLTEXTOUT:
2135 case EMR_FORCEUFIMAPPING:
2136 case EMR_NAMEDESCAPE:
2137 case EMR_COLORCORRECTPALETTE:
2138 case EMR_SETICMPROFILEA:
2139 case EMR_SETICMPROFILEW:
2140 case EMR_TRANSPARENTBLT:
2141 case EMR_GRADIENTFILL:
2142 case EMR_SETLINKEDUFI:
2143 case EMR_COLORMATCHTOTARGETW:
2144 case EMR_CREATECOLORSPACEW:
2147 /* From docs: If PlayEnhMetaFileRecord doesn't recognize a
2148 record then ignore and return TRUE. */
2149 FIXME("type %d is unimplemented\n", type);
2152 tmprc.left = tmprc.top = 0;
2153 tmprc.right = tmprc.bottom = 1000;
2154 LPtoDP(hdc, (POINT*)&tmprc, 2);
2155 TRACE("L:0,0 - 1000,1000 -> D:%ld,%ld - %ld,%ld\n", tmprc.left,
2156 tmprc.top, tmprc.right, tmprc.bottom);
2160 /* WinNT - update the transform (win9x updates when the next graphics output
2161 record is played). */
2162 EMF_Update_MF_Xform(hdc, info);
2169 /*****************************************************************************
2171 * EnumEnhMetaFile (GDI32.@)
2173 * Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
2175 * record. Returns when either every record has been used or
2176 * when _EnhMetaFunc_ returns FALSE.
2180 * TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
2187 * This function behaves differently in Win9x and WinNT.
2189 * In WinNT, the DC's world transform is updated as the EMF changes
2190 * the Window/Viewport Extent and Origin or it's world transform.
2191 * The actual Window/Viewport Extent and Origin are left untouched.
2193 * In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
2194 * updates the scaling itself but only just before a record that
2195 * writes anything to the DC.
2197 * I'm not sure where the data (enum_emh_data) is stored in either
2198 * version. For this implementation, it is stored before the handle
2199 * table, but it could be stored in the DC, in the EMF handle or in
2203 BOOL WINAPI EnumEnhMetaFile(
2204 HDC hdc, /* [in] device context to pass to _EnhMetaFunc_ */
2205 HENHMETAFILE hmf, /* [in] EMF to walk */
2206 ENHMFENUMPROC callback, /* [in] callback function */
2207 LPVOID data, /* [in] optional data for callback function */
2208 const RECT *lpRect /* [in] bounding rectangle for rendered metafile */
2220 HBRUSH hBrush = NULL;
2222 enum_emh_data *info;
2223 SIZE vp_size, win_size;
2224 POINT vp_org, win_org;
2225 INT mapMode = MM_TEXT, old_align = 0, old_rop2 = 0, old_arcdir = 0, old_polyfill = 0, old_stretchblt = 0;
2226 COLORREF old_text_color = 0, old_bk_color = 0;
2230 SetLastError(ERROR_INVALID_PARAMETER);
2234 emh = EMF_GetEnhMetaHeader(hmf);
2236 SetLastError(ERROR_INVALID_HANDLE);
2240 info = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
2241 sizeof (enum_emh_data) + sizeof(HANDLETABLE) * emh->nHandles );
2244 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2251 info->vportOrgX = 0;
2252 info->vportOrgY = 0;
2253 info->vportExtX = 1;
2254 info->vportExtY = 1;
2255 info->world_transform.eM11 = info->world_transform.eM22 = 1;
2256 info->world_transform.eM12 = info->world_transform.eM21 = 0;
2257 info->world_transform.eDx = info->world_transform.eDy = 0;
2259 ht = (HANDLETABLE*) &info[1];
2260 ht->objectHandle[0] = hmf;
2264 savedMode = SetGraphicsMode(hdc, GM_ADVANCED);
2265 GetWorldTransform(hdc, &savedXform);
2266 GetViewportExtEx(hdc, &vp_size);
2267 GetWindowExtEx(hdc, &win_size);
2268 GetViewportOrgEx(hdc, &vp_org);
2269 GetWindowOrgEx(hdc, &win_org);
2270 mapMode = GetMapMode(hdc);
2272 /* save the current pen, brush and font */
2273 hPen = GetCurrentObject(hdc, OBJ_PEN);
2274 hBrush = GetCurrentObject(hdc, OBJ_BRUSH);
2275 hFont = GetCurrentObject(hdc, OBJ_FONT);
2277 old_text_color = SetTextColor(hdc, RGB(0,0,0));
2278 old_bk_color = SetBkColor(hdc, RGB(0xff, 0xff, 0xff));
2279 old_align = SetTextAlign(hdc, 0);
2280 old_rop2 = SetROP2(hdc, R2_COPYPEN);
2281 old_arcdir = SetArcDirection(hdc, AD_COUNTERCLOCKWISE);
2282 old_polyfill = SetPolyFillMode(hdc, ALTERNATE);
2283 old_stretchblt = SetStretchBltMode(hdc, BLACKONWHITE);
2286 info->mode = MM_TEXT;
2290 /* Win95 leaves the vp/win ext/org info alone */
2291 info->init_transform.eM11 = 1.0;
2292 info->init_transform.eM12 = 0.0;
2293 info->init_transform.eM21 = 0.0;
2294 info->init_transform.eM22 = 1.0;
2295 info->init_transform.eDx = 0.0;
2296 info->init_transform.eDy = 0.0;
2300 /* WinNT combines the vp/win ext/org info into a transform */
2301 FLOAT xscale, yscale;
2302 xscale = (FLOAT)vp_size.cx / (FLOAT)win_size.cx;
2303 yscale = (FLOAT)vp_size.cy / (FLOAT)win_size.cy;
2304 info->init_transform.eM11 = xscale;
2305 info->init_transform.eM12 = 0.0;
2306 info->init_transform.eM21 = 0.0;
2307 info->init_transform.eM22 = yscale;
2308 info->init_transform.eDx = (FLOAT)vp_org.x - xscale * (FLOAT)win_org.x;
2309 info->init_transform.eDy = (FLOAT)vp_org.y - yscale * (FLOAT)win_org.y;
2311 CombineTransform(&info->init_transform, &savedXform, &info->init_transform);
2314 if ( lpRect && WIDTH(emh->rclFrame) && HEIGHT(emh->rclFrame) )
2316 FLOAT xSrcPixSize, ySrcPixSize, xscale, yscale;
2319 TRACE("rect: %ld,%ld - %ld,%ld. rclFrame: %ld,%ld - %ld,%ld\n",
2320 lpRect->left, lpRect->top, lpRect->right, lpRect->bottom,
2321 emh->rclFrame.left, emh->rclFrame.top, emh->rclFrame.right,
2322 emh->rclFrame.bottom);
2324 xSrcPixSize = (FLOAT) emh->szlMillimeters.cx / emh->szlDevice.cx;
2325 ySrcPixSize = (FLOAT) emh->szlMillimeters.cy / emh->szlDevice.cy;
2326 xscale = (FLOAT) WIDTH(*lpRect) * 100.0 /
2327 WIDTH(emh->rclFrame) * xSrcPixSize;
2328 yscale = (FLOAT) HEIGHT(*lpRect) * 100.0 /
2329 HEIGHT(emh->rclFrame) * ySrcPixSize;
2330 TRACE("xscale = %f, yscale = %f\n", xscale, yscale);
2332 xform.eM11 = xscale;
2335 xform.eM22 = yscale;
2336 xform.eDx = (FLOAT) lpRect->left - (FLOAT) WIDTH(*lpRect) / WIDTH(emh->rclFrame) * emh->rclFrame.left;
2337 xform.eDy = (FLOAT) lpRect->top - (FLOAT) HEIGHT(*lpRect) / HEIGHT(emh->rclFrame) * emh->rclFrame.top;
2339 CombineTransform(&info->init_transform, &xform, &info->init_transform);
2342 /* WinNT resets the current vp/win org/ext */
2343 if ( !IS_WIN9X() && hdc )
2345 SetMapMode(hdc, MM_TEXT);
2346 SetWindowOrgEx(hdc, 0, 0, NULL);
2347 SetViewportOrgEx(hdc, 0, 0, NULL);
2348 EMF_Update_MF_Xform(hdc, info);
2353 while(ret && offset < emh->nBytes)
2355 emr = (ENHMETARECORD *)((char *)emh + offset);
2356 TRACE("Calling EnumFunc with record %s, size %ld\n", get_emr_name(emr->iType), emr->nSize);
2357 ret = (*callback)(hdc, ht, emr, emh->nHandles, (LPARAM)data);
2358 offset += emr->nSize;
2363 SetStretchBltMode(hdc, old_stretchblt);
2364 SetPolyFillMode(hdc, old_polyfill);
2365 SetArcDirection(hdc, old_arcdir);
2366 SetROP2(hdc, old_rop2);
2367 SetTextAlign(hdc, old_align);
2368 SetBkColor(hdc, old_bk_color);
2369 SetTextColor(hdc, old_text_color);
2371 /* restore pen, brush and font */
2372 SelectObject(hdc, hBrush);
2373 SelectObject(hdc, hPen);
2374 SelectObject(hdc, hFont);
2376 SetWorldTransform(hdc, &savedXform);
2378 SetGraphicsMode(hdc, savedMode);
2379 SetMapMode(hdc, mapMode);
2380 SetWindowOrgEx(hdc, win_org.x, win_org.y, NULL);
2381 SetWindowExtEx(hdc, win_size.cx, win_size.cy, NULL);
2382 SetViewportOrgEx(hdc, vp_org.x, vp_org.y, NULL);
2383 SetViewportExtEx(hdc, vp_size.cx, vp_size.cy, NULL);
2386 for(i = 1; i < emh->nHandles; i++) /* Don't delete element 0 (hmf) */
2387 if( (ht->objectHandle)[i] )
2388 DeleteObject( (ht->objectHandle)[i] );
2390 HeapFree( GetProcessHeap(), 0, info );
2394 static INT CALLBACK EMF_PlayEnhMetaFileCallback(HDC hdc, HANDLETABLE *ht,
2395 const ENHMETARECORD *emr,
2396 INT handles, LPARAM data)
2398 return PlayEnhMetaFileRecord(hdc, ht, emr, handles);
2401 /**************************************************************************
2402 * PlayEnhMetaFile (GDI32.@)
2404 * Renders an enhanced metafile into a specified rectangle *lpRect
2405 * in device context hdc.
2411 BOOL WINAPI PlayEnhMetaFile(
2412 HDC hdc, /* [in] DC to render into */
2413 HENHMETAFILE hmf, /* [in] metafile to render */
2414 const RECT *lpRect /* [in] rectangle to place metafile inside */
2417 return EnumEnhMetaFile(hdc, hmf, EMF_PlayEnhMetaFileCallback, NULL,
2421 /*****************************************************************************
2422 * DeleteEnhMetaFile (GDI32.@)
2424 * Deletes an enhanced metafile and frees the associated storage.
2426 BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE hmf)
2428 return EMF_Delete_HENHMETAFILE( hmf );
2431 /*****************************************************************************
2432 * CopyEnhMetaFileA (GDI32.@)
2434 * Duplicate an enhanced metafile.
2438 HENHMETAFILE WINAPI CopyEnhMetaFileA(
2439 HENHMETAFILE hmfSrc,
2442 ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
2443 HENHMETAFILE hmfDst;
2445 if(!emrSrc) return FALSE;
2447 emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
2448 memcpy( emrDst, emrSrc, emrSrc->nBytes );
2449 hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
2453 hFile = CreateFileA( file, GENERIC_WRITE | GENERIC_READ, 0,
2454 NULL, CREATE_ALWAYS, 0, 0);
2455 WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
2456 CloseHandle( hFile );
2457 /* Reopen file for reading only, so that apps can share
2458 read access to the file while hmf is still valid */
2459 hFile = CreateFileA( file, GENERIC_READ, FILE_SHARE_READ,
2460 NULL, OPEN_EXISTING, 0, 0);
2461 if(hFile == INVALID_HANDLE_VALUE) {
2462 ERR("Can't reopen emf for reading\n");
2465 hmfDst = EMF_GetEnhMetaFile( hFile );
2466 CloseHandle( hFile );
2471 /*****************************************************************************
2472 * CopyEnhMetaFileW (GDI32.@)
2474 * See CopyEnhMetaFileA.
2478 HENHMETAFILE WINAPI CopyEnhMetaFileW(
2479 HENHMETAFILE hmfSrc,
2482 ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
2483 HENHMETAFILE hmfDst;
2485 if(!emrSrc) return FALSE;
2487 emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
2488 memcpy( emrDst, emrSrc, emrSrc->nBytes );
2489 hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
2493 hFile = CreateFileW( file, GENERIC_WRITE | GENERIC_READ, 0,
2494 NULL, CREATE_ALWAYS, 0, 0);
2495 WriteFile( hFile, emrSrc, emrSrc->nBytes, &w, NULL);
2496 CloseHandle( hFile );
2497 /* Reopen file for reading only, so that apps can share
2498 read access to the file while hmf is still valid */
2499 hFile = CreateFileW( file, GENERIC_READ, FILE_SHARE_READ,
2500 NULL, OPEN_EXISTING, 0, 0);
2501 if(hFile == INVALID_HANDLE_VALUE) {
2502 ERR("Can't reopen emf for reading\n");
2505 hmfDst = EMF_GetEnhMetaFile( hFile );
2506 CloseHandle( hFile );
2512 /* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
2513 typedef struct tagEMF_PaletteCopy
2516 LPPALETTEENTRY lpPe;
2519 /***************************************************************
2520 * Find the EMR_EOF record and then use it to find the
2521 * palette entries for this enhanced metafile.
2522 * The lpData is actually a pointer to an EMF_PaletteCopy struct
2523 * which contains the max number of elements to copy and where
2526 * NOTE: To be used by GetEnhMetaFilePaletteEntries only!
2528 static INT CALLBACK cbEnhPaletteCopy( HDC a,
2530 const ENHMETARECORD *lpEMR,
2535 if ( lpEMR->iType == EMR_EOF )
2537 PEMREOF lpEof = (PEMREOF)lpEMR;
2538 EMF_PaletteCopy* info = (EMF_PaletteCopy*)lpData;
2539 DWORD dwNumPalToCopy = min( lpEof->nPalEntries, info->cEntries );
2541 TRACE( "copying 0x%08lx palettes\n", dwNumPalToCopy );
2543 memcpy( (LPVOID)info->lpPe,
2544 (LPVOID)(((LPSTR)lpEof) + lpEof->offPalEntries),
2545 sizeof( *(info->lpPe) ) * dwNumPalToCopy );
2547 /* Update the passed data as a return code */
2548 info->lpPe = NULL; /* Palettes were copied! */
2549 info->cEntries = (UINT)dwNumPalToCopy;
2551 return FALSE; /* That's all we need */
2557 /*****************************************************************************
2558 * GetEnhMetaFilePaletteEntries (GDI32.@)
2560 * Copy the palette and report size
2562 * BUGS: Error codes (SetLastError) are not set on failures
2564 UINT WINAPI GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf,
2566 LPPALETTEENTRY lpPe )
2568 ENHMETAHEADER* enhHeader = EMF_GetEnhMetaHeader( hEmf );
2569 EMF_PaletteCopy infoForCallBack;
2571 TRACE( "(%p,%d,%p)\n", hEmf, cEntries, lpPe );
2573 if (!enhHeader) return 0;
2575 /* First check if there are any palettes associated with
2577 if ( enhHeader->nPalEntries == 0 ) return 0;
2579 /* Is the user requesting the number of palettes? */
2580 if ( lpPe == NULL ) return (UINT)enhHeader->nPalEntries;
2582 /* Copy cEntries worth of PALETTEENTRY structs into the buffer */
2583 infoForCallBack.cEntries = cEntries;
2584 infoForCallBack.lpPe = lpPe;
2586 if ( !EnumEnhMetaFile( 0, hEmf, cbEnhPaletteCopy,
2587 &infoForCallBack, 0 ) )
2590 /* Verify that the callback executed correctly */
2591 if ( infoForCallBack.lpPe != NULL )
2593 /* Callback proc had error! */
2594 ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
2598 return infoForCallBack.cEntries;
2601 typedef struct gdi_mf_comment
2608 DWORD cbWinMetaFile;
2611 /******************************************************************
2612 * SetWinMetaFileBits (GDI32.@)
2614 * Translate from old style to new style.
2617 HENHMETAFILE WINAPI SetWinMetaFileBits(UINT cbBuffer,
2618 CONST BYTE *lpbBuffer,
2620 CONST METAFILEPICT *lpmfp
2623 static const WCHAR szDisplayW[] = { 'D','I','S','P','L','A','Y','\0' };
2624 HMETAFILE hmf = NULL;
2625 HENHMETAFILE ret = NULL;
2626 HDC hdc = NULL, hdcdisp = NULL;
2627 RECT rc, *prcFrame = NULL;
2628 gdi_mf_comment *mfcomment;
2629 UINT mfcomment_size;
2631 TRACE("(%d, %p, %p, %p)\n", cbBuffer, lpbBuffer, hdcRef, lpmfp);
2633 hmf = SetMetaFileBitsEx(cbBuffer, lpbBuffer);
2636 WARN("SetMetaFileBitsEx failed\n");
2641 hdcRef = hdcdisp = CreateDCW(szDisplayW, NULL, NULL, NULL);
2644 TRACE("mm = %ld %ldx%ld\n", lpmfp->mm, lpmfp->xExt, lpmfp->yExt);
2646 if (lpmfp && (lpmfp->mm == MM_ISOTROPIC || lpmfp->mm == MM_ANISOTROPIC))
2648 rc.left = rc.top = 0;
2649 rc.right = lpmfp->xExt;
2650 rc.bottom = lpmfp->yExt;
2654 if(!(hdc = CreateEnhMetaFileW(hdcRef, NULL, prcFrame, NULL)))
2656 ERR("CreateEnhMetaFile fails?\n");
2661 * Write the original METAFILE into the enhanced metafile.
2662 * It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
2664 mfcomment_size = sizeof (gdi_mf_comment) + cbBuffer;
2665 mfcomment = HeapAlloc(GetProcessHeap(), 0, mfcomment_size);
2668 mfcomment->ident = GDICOMMENT_IDENTIFIER;
2669 mfcomment->iComment = GDICOMMENT_WINDOWS_METAFILE;
2670 mfcomment->nVersion = 0x00000300;
2671 mfcomment->nChecksum = 0; /* FIXME */
2672 mfcomment->fFlags = 0;
2673 mfcomment->cbWinMetaFile = cbBuffer;
2674 memcpy(&mfcomment[1], lpbBuffer, cbBuffer);
2675 GdiComment(hdc, mfcomment_size, (BYTE*) mfcomment);
2676 HeapFree(GetProcessHeap(), 0, mfcomment);
2679 if(lpmfp && lpmfp->mm != MM_TEXT)
2680 SetMapMode(hdc, lpmfp->mm);
2682 if (lpmfp && (lpmfp->mm == MM_ISOTROPIC || lpmfp->mm == MM_ANISOTROPIC))
2684 INT horzres, vertres, horzsize, vertsize, xext, yext;
2686 horzres = GetDeviceCaps(hdcRef, HORZRES);
2687 vertres = GetDeviceCaps(hdcRef, VERTRES);
2688 horzsize = GetDeviceCaps(hdcRef, HORZSIZE);
2689 vertsize = GetDeviceCaps(hdcRef, VERTSIZE);
2691 /* set the initial viewport:window ratio as 1:1 */
2692 xext = lpmfp->xExt*horzres/(100*horzsize);
2693 yext = lpmfp->yExt*vertres/(100*vertsize);
2694 SetViewportExtEx(hdc, xext, yext, NULL);
2695 SetWindowExtEx(hdc, xext, yext, NULL);
2698 PlayMetaFile(hdc, hmf);
2700 ret = CloseEnhMetaFile(hdc);
2702 if (hdcdisp) DeleteDC(hdcdisp);
2703 DeleteMetaFile(hmf);