Aspose.PSD CLI Convert for .NET 24.4 - Release Notes
Contents
[
Hide
]
This page contains release notes forĀ Aspose.PSD CLI Convert for .NET 24.4
Key | Summary | Category |
---|---|---|
PSDNET-2023 | Initial release of Aspose.PSD CLI Convert Application | Enhancement |
Usage examples:
PSDNET-2023. Initial release of Aspose.PSD CLI Convert Application
Usage from command line:
Aspose.PSD.CLI.Convert --input photo_1.jpg --output result.zip --format png --license Aspose.PSD.Product.Family.lic
Usage from command code:
var options = new Aspose.PSD.CLI.Convert.CommandLineOptions.ConversionOptions
{
InputFiles = new List<string> { "photo_1.jpg", "photo_2.jpg", "photo_3.jpg", "photo_4.jpg", "photo_5.jpg", "photo_6.jpg" },
OutputPath = "result.zip",
OutputFormat = "png"
};
if (isLicensed)
{
options.LicensePath = "Aspose.PSD.Product.Family.lic";
}
Aspose.PSD.CLI.Convert.Apply(options);