Tagged Questions
The wmf tag has no wiki summary.
3
votes
2answers
6k views
How to draw smooth images with C#?
I'm trying to draw images on a C# form (in PictureBoxes, as well as using Graphics.DrawImage()), and am looking for a way to draw them smooth. The images must be a format that supports transparency, ...
3
votes
3answers
2k views
Does WPF support reading/writing WMF/EMF files natively?
Can Windows Presentation Foundation read/write WMF/EMF files without having to use WinForms Interop or Win32.
If it does not, what is the reason?
2
votes
3answers
261 views
Decompress “wmz” file
When we try to save msword doc file as html file we get "wmz" files for the math equation objects.
I tried decompressing the wmz file and saving the content as jpg.
I can open this jpg file in the ...
2
votes
1answer
1k views
WMF / EMF File Format conversion C#
In my program, I have a requirement to "playback" or "parse" windows metafiles (WMF and EMF). I have dug through MSDN and Google, and the closest I have come is the Graphics. EnumerateMetafile method. ...
2
votes
1answer
2k views
How to overlay or watermark a picture in windows media player
I working on a distributed mediaplayer that uses the windows media player component.
Now the customer asks me if its possible to have their logo overlayed on the media played instead of them having to ...
1
vote
2answers
496 views
Convert an image into WMF with .NET?
There are plenty of examples of converting a wmf into a bitmap like:
Reliable .wmf/wmf to Pixel based image conversion
But I need the reverse operation. I do not look for a vectorizer. I just want to ...
1
vote
0answers
94 views
WMF image data validation?
There is an image capturing device which gives its output in wmf. This output is stored in the database directly. We have cases where at times some of these images do not appear on a web page in IE. ...
1
vote
2answers
388 views
How can I convert a WMF image to PNG or JPG on Windows using Perl?
By any chance is anyone aware of a Perl module that will allow a WMF image to be converted over to the PNG or JPEG format? I searched CPAN, but did not come across anything.
Due to installation ...
1
vote
3answers
2k views
Save metafile in C#
If I have a wmf or emf image in System.Drawing.Image, is there a way to save the metafile data with c# without rendering it as a bitmap? Calling Image.Save will render it to a bitmap and I want to ...
1
vote
3answers
814 views
Capturing the desktop with Windows Media Format(WMF)
I am using Windows Media Format SDK to capture the desktop in real time and save it in a WMV file (actually this is an oversimplification of my project, but this is the relevant part). For encoding, I ...
0
votes
1answer
53 views
Windows Enhanced Metafile Pen vs Windows Metafile
I'm working on a system that have huge database of metafiles (the old win3.0 format), and I need to convert that to Enhanced Metafile. I did convert the whole database, and manage to play the files to ...
0
votes
2answers
115 views
How to convert jpg,bitmap format image into vector format in c#
I try to convert the jpg image into vector format.I try to implement this code but it's through the exeception
public void Run()
{
Control c = new Control();
...
0
votes
2answers
112 views
An unclear converted image. wmf to png
I'm trying to convert wmf image file into png format with c#.net.
But, saved image is unclear as you can see below
http://yfrog.com/ochql9p
my code:
Metafile img = new Metafile(@"test.wmf");
...
0
votes
0answers
62 views
how to display .wmf or .emf pictures on Android
Now, I want to display a .WMF(Windows Metafile Formate) or .EMF picture on Android.
But Android do not support VectorGraphics. How can I do to display this pictures with Android 2D graphics library?
...
0
votes
0answers
100 views
How to rotate WMF and save preserving vector format
I have a WMF image file, which I have to rotate with a specific angle and save in vector format. If I create metafile graphics and draw the image after setting the rotate transform, the generated ...
0
votes
0answers
112 views
Ogg/flac metadata/playback in Windows Explorer and Media Player
I'd like to look at implementing a library that would allow ogg files (including flac with ogg tags) to be seen as the proper media files they are in Explorer and Media Player. What I don't know is ...
0
votes
2answers
108 views
Metadata in wmf file?
Is there a way to store and retrieve custom metadata in a wmf file, please notice that i don't mean Windows Media Format?
Optional using .net and C# ?
0
votes
1answer
61 views
Is there a library to render Windows metafiles to a cairo surface?
I'm trying to implement a PDF output target in an existing application which uses Windows metafiles (specifically, Aldus Placeable Metafiles) as one of its inputs. Is there a pre-existing library to ...
0
votes
1answer
149 views
Reading a WMF header with WINAPI
I can't seem to find anywhere how I can read the header of a .wmf file with C/C++ and the Win32 API.
Can anyone give me some pointers and/or an example?
I have a C++ application that must be able to ...
0
votes
1answer
558 views
How can I convert a WMF picture to GIF or PNG with Delphi?
Is there a way to convert a WMF picture to GIF or PNG with the Delphi 2009 (or newer) run time libraries? If not, which image conversion library would you recommend?
0
votes
2answers
773 views
Generate vector EMF/WMF (Windows Metafile) clipboard content from Qt 4.5
We are moving a large codebase from GDI to QPainter. One thing we used to get on Windows easily was the EMF clipboard format, which enabled customers to manipulate their pasted output in other ...
0
votes
2answers
737 views
C# - Encode ASF with a custom data stream
I'm trying to create an ASF file and instead of using sound or video data I want to create a stream made of custom packets with binary data.
Can someone provide a code example of a couple of things : ...
0
votes
2answers
482 views
Reliable .wmf/wmf to Pixel based image conversion
Good afternoon,
I am having a little trouble with .net's internal (System.Drawing) based MetaFile / Image handling of .wmf files that containt transparent areas. Basically whenever I do a ...
0
votes
1answer
2k views
Print EMF (WMF) from the Command Line using SHIMGVW.DLL
For Windows XP / Windows Server 2003
I'm trying to print an EMF(or WMF) file format to the virtual printer "Microsoft XPS Document Writer" using Windows Picture and Fax Viewer (shimgvw.dll) from the ...