Catatan Rilis Aspose.PSD CLI Resize untuk .NET 24.4
Contents
[
Hide
]
Halaman ini berisi catatan rilis untuk Aspose.PSD CLI Resize untuk .NET 24.4
Kunci | Ringkasan | Kategori |
---|---|---|
PSDNET-2026 | Rilis awal Aplikasi Resize Aspose.PSD CLI | Peningkatan |
Contoh Penggunaan:
PSDNET-2026. Rilis awal Aplikasi Resize Aspose.PSD CLI
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);