Notes de publication de Aspose.PSD CLI Resize pour .NET 24.6

Clé Résumé Catégorie
PSDNET-2110 Version initiale des applications Aspose.PSD CLI : Aspose.PSD.CLI.Export et Aspose.PSD.CLI.NLP.Editor Amélioration

Exemples d’utilisation :

PSDNET-2110. Version initiale de l’application Aspose.PSD CLI Resize

Utilisation en ligne de commande :

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

Utilisation depuis le 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);