I need to display a Windows Metafile (EMF) using WPF, how can I do?
Edit:
I'd to keep the image vector-based.
|
|
Take a look at the 3rd party library Ab2d.ReadWmf. Update #1: Overview First off, this post states that Microsoft does not intend support EMF files in WPF. That doesn't mean it can't be done, just that they will not support them. Looking at the Wikipedia page about the WMF/EMF format I see that it describes EMF as:
If you've worked with WPF much you know that WPF is fundamentally different than GDI. A quick overview is available here. This means that you'll need to read in your EMF file and translate the GDI calls to WPF calls. Here's a thread where they discuss the process. That sounds like a lot of work to me. Luckily, Microsoft provides an interface for reading in Windows Metafiles. Take a look at this thread for an example and the documentation available here, but this will only get you half way there since it's not a WPF Visual. At this point I think the easiest solution would be to create a WinForms control in your WPF app and host it inside a WindowsFormsHost control. Update #2: Code Sample To display an EMF file in a WPF application:
UserControl:
XAML:
|
|||||
|
|
Here is a utility function that loads an EMF file and converts it into a WPF BitmapSource:
You simply use it like this:
The drawback is you will need to reference System.Drawing.dll (GDI+) into your WPF application, but that should not be a big issue. |
|||||||
|