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:

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.