Resize images using Image Processor in asp.net c# Chintan Prajapati October 1, 2016 2 min read What is it Image Processor?Image Processor contains many libraries that are written in Asp.Net C#. it is also known as a media processor. in which you can easily manipulate images using Asp.Net 4.5+ in C#. It has multiple methods to manipulate images, it uses the Image Factory class.Problems with Resigning Images:I have developed a project in Umbraco cms and I want to display only one image on multiple pages with various sizes. In the image folder, I saved an image with a different size. For example,TestImage_200x200.jpg, TestImage_400x400.jpgbut this is not a proper way.The solution with Image Processor Library:I have found a solution to resize only a single image in different sizes. I have installed ImageProcessor in my application.You can download ImageProcessor libraries via Nuget because its simplest and fastest way to install it.Image Processor ( https://www.nuget.org/packages/ImageProcessor/)ImageProcessor generally uses an extension called ImageProcessor.web that allows you to manipulate images via Url API of query string parameters. And ImageProcessor.The Web uses an ImageProcessingModule class that provides various methods to perform some functions using a query string.Resize image:You can resize images in a different dimension with excellent quality to size ratio there are six different types of methods available as follows. Pad (default) BoxPad Crop Min Max StretchYou have to pass the following parameters to resize the image as follows:- <img src="~/Images/banner.jpg?width=300&height=300" alt="Banner Image" /> <img src="~/Images/banner.jpg?width=300&height=300&mode=crop" alt="Banner Image" />Provided Methods: Resize, Rotate, Rounded Corners, Flip Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency.Example:Original Image:Resize Crop:Conclusion:Using Parameters like width, height, mode, and anchor we can resize images easily using ImageProcessor in Asp.Net C#.