Lines Matching refs:metafile

23     // Read a metafile

30 // Playback a metafile from a HMETAFILE
31 // If deleteWmf is TRUE, then when the metafile is deleted,
37 GpMetafile * metafile = NULL;
39 lastResult = DllExports::GdipCreateMetafileFromWmf(hWmf, deleteWmf, apmFileHeader, &metafile);
41 SetNativeImage(metafile);
44 // Playback a metafile from a HENHMETAFILE
45 // If deleteEmf is TRUE, then when the metafile is deleted,
50 GpMetafile * metafile = NULL;
52 lastResult = DllExports::GdipCreateMetafileFromEmf(hEmf, deleteEmf, &metafile);
54 SetNativeImage(metafile);
57 // Playback a metafile from a file
60 GpMetafile * metafile = NULL;
62 lastResult = DllExports::GdipCreateMetafileFromFile(filename, &metafile);
64 SetNativeImage(metafile);
67 // Playback a WMF metafile from a file
72 GpMetafile * metafile = NULL;
74 lastResult = DllExports::GdipCreateMetafileFromWmfFile(filename, apmFileHeader, &metafile);
76 SetNativeImage(metafile);
79 // Playback a metafile from a stream
82 GpMetafile * metafile = NULL;
84 lastResult = DllExports::GdipCreateMetafileFromStream(stream, &metafile);
86 SetNativeImage(metafile);
89 // Record a metafile to memory
96 GpMetafile * metafile = NULL;
100 description, &metafile);
102 SetNativeImage(metafile);
105 // Record a metafile to memory
114 GpMetafile * metafile = NULL;
118 description, &metafile);
120 SetNativeImage(metafile);
123 // Record a metafile to memory
132 GpMetafile * metafile = NULL;
136 description, &metafile);
138 SetNativeImage(metafile);
141 // Record a metafile to a file
149 GpMetafile * metafile = NULL;
153 description, &metafile);
155 SetNativeImage(metafile);
158 // Record a metafile to a file
168 GpMetafile * metafile = NULL;
172 description, &metafile);
174 SetNativeImage(metafile);
177 // Record a metafile to a file
187 GpMetafile * metafile = NULL;
191 description, &metafile);
193 SetNativeImage(metafile);
196 // Record a metafile to a stream
204 GpMetafile * metafile = NULL;
208 description, &metafile);
210 SetNativeImage(metafile);
213 // Record a metafile to a stream
223 GpMetafile * metafile = NULL;
227 description, &metafile);
229 SetNativeImage(metafile);
232 // Write a metafile to a stream with down-level GDI records
242 GpMetafile * metafile = NULL;
246 description, &metafile);
248 SetNativeImage(metafile);
325 // If you're using a printer HDC for the metafile, but you want the
326 // metafile rasterized at screen resolution, then use this API to set
327 // the rasterization dpi of the metafile to the screen resolution,