Aspose.PSD CLI Größenänderung für .NET 24.4 - Versionshinweise

Schlüssel Zusammenfassung Kategorie
PSDNET-2026 Erstveröffentlichung der Anwendung zur Größenänderung von Aspose.PSD CLI Verbesserung

Verwendungsbeispiele:

PSDNET-2026. Erstveröffentlichung der Anwendung zur Größenänderung von Aspose.PSD CLI

Verwendung von der Befehlszeile:

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

Verwendung im Code:

var optionen = new Aspose.PSD.CLI.CommandLineOptions.ResizeOptions
{
    PfadZumEingabebild = "photo1.jpg",
    PfadZurAusgabebild = "resized.png",
    Skalierung = 200,
    Ausgabeformat = "png"
};


if (istLizenziert)
{
    optionen.Lizenzpfad = "Aspose.PSD.Product.Family.lic";
}

Aspose.PSD.CLI.Resize.Anwenden(optionen);