Crop, Rotate and Resize PSD Files

Resizing PSD File

This article demonstrates the usage of Aspose.PSD for .NET to perform Resize operation on PSD files. Aspose.PSD APIs have exposed efficient and easy to use methods to achieve this goal. Aspose.PSD for .NET has exposed the Resize method for the Image class that can be used to re-size existing images on the fly.

The steps to perform Resize are as simple as below:

  1. Load in image using the factory method Load exposed by Image class.
  2. Call the Image.Resize method while specifying new Height and Width.
  3. Save the results.

The following code example demonstrates how to Resize an PSD file.