บันทึกการออกอากาศ Aspose.PSD CLI Crop for .NET 24.4
Contents
[
Hide
]
หน้านี้มีบันทึกการออกอากาศสำหรับ Aspose.PSD CLI Crop for .NET 24.4
Key | สรุป | หมวดหมู่ |
---|---|---|
PSDNET-2025 | การเปิดตัว Aspose.PSD CLI Crop Application | ปรับปรุง |
ตัวอย่างการใช้:
PSDNET-2023. การเปิดตัว Aspose.PSD CLI Crop Application
การใช้จาก command line:
Aspose.PSD.CLI.Crop --input photo1.jpg --output cropped_photo.png --format png --left 10 --top 35 --width 250 --height 300 --cropType rect --license Aspose.PSD.Product.Family.lic
การใช้จากโค้ด command:
var options = new Aspose.PSD.CLI.CommandLineOptions.CropOptions
{
InputPath = "photo1.jpg",
CropType = CropType.Rect,
Left = 10,
Top = 35,
Width = 250,
Height = 300,
OutputPath = "cropped_photo.png",
OutputFormat = "png"
};
if (isLicensed)
{
options.LicensePath = "Aspose.PSD.Product.Family.lic";
}
Aspose.PSD.CLI.Crop.Apply(options);