Aspose.PSD CLI Resize cho .NET 24.4 - Ghi chú phát hành

Khóa Tóm tắt Danh mục
PSDNET-2026 Phát hành ban đầu của Ứng dụng Resize Aspose.PSD CLI Cải tiến

Ví dụ sử dụng:

PSDNET-2026. Phát hành ban đầu của Ứng dụng Resize Aspose.PSD CLI

Sử dụng từ dòng lệnh:

Aspose.PSD.CLI.Resize --input photo1.jpg --output resized.png --width 200 --height 340 --format png --license Aspose.PSD.Product.Family.lic

Sử dụng từ 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);