WMF is a Windows MetaFile that can contain both vector and bitmap image information. We added support of WMF file format along-with few others in GroupDocs.Conversion for .NET 19.5. You can now convert any supported file format to WMF. Along-with WMF, convert supported documents to EMF.
Convert to EMF
//For complete examples and data files, please go to https://github.com/groupdocs-conversion/GroupDocs.Conversion-for-.NET | |
var saveOptions = new ImageSaveOptions | |
{ | |
ConvertFileType = ImageSaveOptions.ImageFileType.Emf | |
}; |
Convert to WMF
//For complete examples and data files, please go to https://github.com/groupdocs-conversion/GroupDocs.Conversion-for-.NET | |
var saveOptions = new ImageSaveOptions | |
{ | |
ConvertFileType = ImageSaveOptions.ImageFileType.Wmf | |
}; |
Moreover, you can now pay royalties for the use of the API. Yes, metered licensing is now enabled.
// For complete examples and data files, please go to https://github.com/groupdocs-conversion/GroupDocs.Conversion-for-.NET | |
string PublicKey = ""; // Your public license key | |
string PrivateKey = ""; // Your private license key | |
Metered metered = new Metered(); | |
metered.SetMeteredKey(PublicKey, PrivateKey); |
New file formats you can convert from:
- DIB
- XLT
- POT
In this release, we also removed obsolete property JpegQuality from ImageSaveOptions.
We’d recommend you to download latest version of the API and share your feedback.