Aspose Imaging .NET Image resize Plugin Licensing

Overview

Aspose.Imaging for .NET Image resize Plugin allows users to resize images using different resampling algorithms.

Examples of such conversions are available here.

What platforms are supported for Image resize Plugin usage

NETStandard2.0 and higher .NET platforms are suitable for Image resize plugin licensing.

Is there any demo application to review Aspose.Imaging for .NET Image resize Plugin usage

Yes, you can try Aspose.Imaging Image resize Application

What will happen, If I will use API entries, that are not licensed by Image resize Plugin License

Aspose.Imaging will work in trial mode.

Can I use other Plugin licenses with Image resize Plugin License?

Yes, you can use as many as you need other available plugin licenses:

How can I buy and use Image resize plugin only?

Example of usage of Image resize Plugin

using Aspose.Imaging;
using Aspose.Imaging.FileFormats.Emf;
using Aspose.Imaging.FileFormats.Png;
using Aspose.Imaging.FileFormats.Tiff;
using Aspose.Imaging.FileFormats.Tiff.Enums;
using Aspose.Imaging.ImageOptions;
using Aspose.Imaging.Sources;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
string templatesFolder = @"c:\Users\USER\Downloads\templates\";
string dataDir = templatesFolder;
Run3();
//------------------------------------------------------------------------------
// Resize plug-in license use examples
//------------------------------------------------------------------------------
void Run3()
{
// Valid resize license use example
Metered license = new Metered();
// Only metered plug-in license is supported
license.SetMeteredKey("<your public key>", "<your private key>");
string OutputDirectory = templatesFolder;
if (!Directory.Exists(OutputDirectory))
{
Directory.CreateDirectory(OutputDirectory);
}
using (Image image = Image.Load(Path.Combine(templatesFolder, "template.png")))
{
var filePath = Path.Combine(OutputDirectory, "licensed_tiger0.jpg");
image.Resize(image.Width << 1, image.Height << 1);
image.Save(filePath, new JpegOptions());
File.Delete(filePath);
}
// Unlicensed use of flip rotate with resize license
using (Image image = Image.Load(Path.Combine(templatesFolder, "template.png")))
{
var filePath = Path.Combine(OutputDirectory, "trial_tiger0.jpg");
image.RotateFlip(RotateFlipType.Rotate180FlipXY);
image.Save(filePath, new JpegOptions());
File.Delete(filePath);
}
}

Can other Aspose products be used in same way?

Yes, you can check https://aspose.market for available plugin licenses.