We are pleased to announce the release of Aspose.Imaging for .NET 1.9.0.

This month’s release includes some new features along with bug fixes. We have added some new overload methods to Graphics.DrawImage with parallelogram mode and ImageAttribute object parameters. In this version we have introduce a simplified and optimized approach for creating images. Now you can pass any raster image to TiffFrame(). Please check the following code snippet for details:

 string pathTiff = @"TiffImage.TIF";
string pathJpg = @"JpegImage.jpg";
using (TiffImage output = (TiffImage)Image.Load(pathTiff))
{
    output.InsertFrame(1, new TiffFrame(pathJpg));
    output.Save("C:\\output.tif");
}

We have dropped support for .NET 1.1 Framework.

To see a complete list of features, fixes and to download Aspose.Imaging for .NET 1.9.0, please visit the download page.