c# - WMZ files from MSWord when porting to HTML -
When I copy clipboard data to Clipboard.GetData (DataFormats.Html) in C # . Toasting ();
, the ".wmz" files are being stored in the "floating" path. (It exists in the v: imagedata src
section)
The original word file contains symbols of mathematics like Delta, and these are not "Windows Media Player" video files (in which ". Wmz "extension). Then I copied this temp file to a permanent place and updated the src
path and cleared the clipboard. But my new HTML content does not display the actual image (stored in the format ".wmz").
But regular ".png" or ".jpg" files in HTML, this approach works fine. I am facing problems with these ".wmz" files as well.
Can someone help in converting these ".wmz" files correctly into an acceptable format in a browser?
This is a format. I think you can work with System.Drawing
to convert it directly to a .jpg or .png, like WMF (which is a PNG format automatically saved in System.Drawing
).
Comments
Post a Comment