Catatan Rilis Aspose.PSD CLI Resize untuk .NET 24.6
Contents
[
Hide
]
Halaman ini berisi catatan rilis untuk Aspose.PSD CLI Resize untuk .NET 24.6
Kunci | Ringkasan | Kategori |
---|---|---|
PSDNET-2110 | Rilis Awal dari Aspose.PSD CLI Apps: Aspose.PSD.CLI.Export dan Aspose.PSD.CLI.NLP.Editor | Peningkatan |
Contoh Penggunaan:
PSDNET-2110. Rilis awal Aspose.PSD CLI Aplikasi Resize
Penggunaan dari baris perintah:
Aspose.PSD.CLI.Resize --input photo1.jpg --output resized.png --width 200 --height 340 --format png --license Aspose.PSD.Product.Family.lic
Penggunaan dari kode:
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);