
We are pleased to announce the release of Aspose.Imaging for .NET 4.0.0. The major development in this release is support for converting EMF to WMF metafile image.
Convert EMF to WMF Metafile Image using C#
Aspose.Imaging for .Net now supports converting EMF metafile image to WMF format. Below provided sample code demonstrates how simple it is to convert EMF metafile to WMF format.
string inputFileName = @"TestEmfPlusFigures.emf";
string outputFileName = inputFileName + ".wmf";
// Load an existing EMF file as Image.
using (Image image = Image.Load(inputFileName))
{
// Call the Save method of Image class.
// Pass instance of WmfOptions class to Save method.
image.Save(outputFileName,new WmfOptions());
}
Enhancements
The following enhancements have been introduced in this release.
- Process to get Height & Width of WMF image has been improved.
- Process to extract file format using GetFileFormat property of Image class has been improved.
- Process of extracting layer/nested layers name in PSD file has been improved.
- Process of manipulating large TIFF files (e.g. size 500MB) has been improved.
Please refer to the release notes of Aspose.Imaging for .NET 4.0.0 for a full view of improvements along with sample code snippets for newly added features. If you are planning to upgrade the API to the latest revision, we strongly suggest you to check the Public API Change section to know what has been changed in the public API since your current version.
Aspose.Imaging for .Net Resources
The resources, you may need to accomplish your tasks:
- Home page for Aspose.Imaging for .Net API.
- Download Aspose.Imaging for .NET.
- Aspose.Imaging for .NET online documentation – help documentation and API reference documents.
- Aspose.Imaging Product Family Forum – post your technical questions and queries, or any other problem you are facing while working with Aspose.Imaging APIs.
- Enable blog Subscription – Do not limit yourself, you can keep yourself updated with the latest news on Aspose.Imaging APIs, new features, fixes and other API related topics by subscribing to Aspose.Imaging blog.
- Aspose.Imaging for .NET Examples – We have published our code examples on the social coding website GitHub.com. Anyone could explore the code examples for learning purposes.
As always we appreciate your feedback so if you ever have anything to tell us about this release or anything else, please head to the Aspose.Imaging forum for a chat.