Aspose.PSD CLI Resize for .NET 24.4 - Release Notes
Contents
[
Hide
]
This page contains release notes forĀ Aspose.PSD CLI Resize for .NET 24.4
Key | Summary | Category |
---|---|---|
PSDNET-2026 | Initial release of Aspose.PSD CLI Resize Application | Enhancement |
Usage examples:
PSDNET-2026. Initial release of Aspose.PSD CLI Resize Application
Usage from command line:
Aspose.PSD.CLI.Resize --input photo1.jpg --output resized.png --width 200 --height 340 --format png --license Aspose.PSD.Product.Family.lic
Usage from code:
var options = new Aspose.PSD.CLI.CommandLineOptions.ResizeOptions
{
PathToInputImage = "photo1.jpg",
PathToOutputImage = "resized.png",
Scale = 200,
OutputFormat = "png"
};
if (isLicensed)
{
options.LicensePath = "Aspose.PSD.Product.Family.lic";
}
Aspose.PSD.CLI.Resize.Apply(options);