Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

Aspose.Imaging Image Resize Micro Application

It allows resize of the input image to the desired size.


Product Page | Docs | Demos | Blog | Free Support | Temporary License | EULA

Competitive features

  • Various input and output image formats are supported as per Aspose.Imaging supported file formats list;

  • Image size can be changed using relative resize factor or absolute image dimensions on resize.

  • Various resize algorithms are supported;

  • You may keep the aspect ratio on resize, preserving the proportions of the input image;

  • Aspose.Imaging Image resize micro application may be used via the command line or consumed by your C# code via.NET7 compatible API.

Licensing

Although Aspose.Imaging Image Resize Micro Application is free, Aspose.Imaging .NET is licensed as usual, so you may reuse your license via application or evaluate the application using Aspose.Imaging .NET in trial mode or request Temporary license.

System Requirements

  • .NET7 on Windows, Linux, MacOs;

  • Aspose.Imaging Image Resize application installed.

Installation

Please issue the command :


Usage

Use from command line:


Use from code:

Please install Aspose.Imaging.Image-Resize Micro App first.

To add required references to your project please issue command


setting YourProjectFolder to the real value or simply run


from the project folder.

var options = new ImagingResizeOptions()
{
	InputImage = "photo_1.jpg",
	ToFormat = "png",
	ResizeFactor = 150,
	KeepAspectRatio = true,
	OutputImagePath = "photo_with_increased_size.png"
};

// You may set path to your Aspose.Imaging .NET license file via parameters			
if (isLicensed)
{
	options.LicenseFile = "Aspose.Total.Product.Family.lic";
}

await ResizeTasks.Create(options).Execute();