If you use Image.Save Method to save an image to a EMF/WMF, you got an exceptoin (http://msdn.microsoft.com/en-us/library/ktx83wah.aspx)
Is there another way to save the image to an EMF/WMF? Are there any encoders available?
Thanks Eric
|
If you use Image.Save Method to save an image to a EMF/WMF, you got an exceptoin (http://msdn.microsoft.com/en-us/library/ktx83wah.aspx) Is there another way to save the image to an EMF/WMF? Are there any encoders available? Thanks Eric | ||||
|
feedback
|
|
Creating an image with GDI+ and saving it as an EMF is simple with
This is what you want to do most of the time, since that is what EMF is for: saving vector images in the form of GDI+ drawing commands. You can save a | |||||
feedback
|
|
If I remember correctly, it can be done with a combination of the Metafile.GetHenhmetafile(), the API GetEnhMetaFileBits() and Stream.Write(), something like
I think this is how I solved the problem when I had it. | |||||
feedback
|
|
The question was: "Is there another way to save the image to an EMF/WMF?" Not "what is metafile" or "how to create metafile" or "how to use metafile with Graphics". I also look for answer for this question "how to save EMF/WMF" In fact if you use:
In both cases image is saved as format png. And this is the problem which I cannot solve :/ | |||
|
feedback
|
|
The answer by erikkallen is correct. I tried this from VB.NET, and had to use 2 different DllImports to get it to work:
The first import is used for the first call to get the emf size. The second import to get the actual bits. Alternatively you could use:
This copies the emf bits directly to the named file. | |||
|
feedback
|
|
A metafile is a file which records a sequence of GDI operations. It is scalable because the original sequence of operations that generated the picture are captured, and therefore the co-ordinates that were recorded can be scaled. I think, in .NET, that you should create a If you really want to store a bitmap in a metafile, use these steps then use | |||
|
feedback
|
|
I was looking for a way to save the GDI instructions in a Metafile object to a EMF file. Han's post helped me solve the problem. This was before I joined SOF. Thank you, Han. Here is what I tried.
[DllImport("gdi32.dll")]
static extern IntPtr CopyEnhMetaFile( // Copy EMF to file
IntPtr hemfSrc, // Handle to EMF
String lpszFile // File
);
[DllImport("gdi32.dll")]
static extern int DeleteEnhMetaFile( // Delete EMF
IntPtr hemf // Handle to EMF
);
// Code that creates the metafile
// Metafile metafile = ...
// Get a handle to the metafile
IntPtr iptrMetafileHandle = metafile.GetHenhmetafile();
// Export metafile to an image file
CopyEnhMetaFile(
iptrMetafileHandle,
"image.emf");
// Delete the metafile from memory
DeleteEnhMetaFile(iptrMetafileHandle);
| ||||
|
feedback
|
|
It appears there is much confusion over vector vs. bitmap. All of the code in this thread generates bitmap (non-vector) files - it does not preserve the vector GDI calls. To prove this to yourself, download the "EMF Parser" tool and inspect the output files: http://downloads.zdnet.com/abstract.aspx?docid=749645. This issue has caused many developers considering anguish. Sure would be nice if Microsoft would fix this and properly support their own EMF format. | |||
|
feedback
|
|
You also need to close the
Otherwise, you cannot delete the file because it's still used by the process. | ||||
|
feedback
|