Aspose.PSD CLI Export for .NET 24.6 - Sürüm Notları
Contents
[
Hide
]
Bu sayfa, Aspose.PSD CLI Export for .NET 24.6 için sürüm notlarını içermektedir.
Anahtar | Özet | Kategori |
---|---|---|
PSDNET-2110 | Aspose.PSD CLI Uygulamalarının İlk Sürümü: Aspose.PSD.CLI.Export ve Aspose.PSD.CLI.NLP.Editor | Geliştirme |
Kullanım Örnekleri:
PSDNET-2110. Aspose.PSD CLI Export Uygulamasının İlk Sürümü
Komut satırından kullanım:
Aspose.PSD.CLI.Export --input photo1.jpg --output exported.png --format png --layerName Layer1 --license Aspose.PSD.Product.Family.lic
Koddan kullanım:
var options = new Aspose.PSD.CLI.CommandLineOptions.ExportOptions
{
PathToInputImage = "photo1.jpg",
PathToOutputImage = "exported.png",
OutputFormat = "png",
LayerName = "Layer1"
};
if (isLicensed)
{
options.LicensePath = "Aspose.PSD.Product.Family.lic";
}
Aspose.PSD.CLI.Export.Apply(options);