PsdImage.AddVibranceAdjustmentLayer
PsdImage.AddVibranceAdjustmentLayer method
يضيف طبقة ضبط Vibrance .
public VibranceLayer AddVibranceAdjustmentLayer()
قيمة الإرجاع
طبقة Vibrance تم إنشاؤها حديثًا.
أمثلة
يوضح مثال الكود التالي دعم طبقة VibranceLayer والقدرة على تحرير هذا الضبط.
[C#]
string sourceFileName = "WithoutVibrance.psd";
string outputFileNamePsd = "out_VibranceLayer.psd";
string outputFileNamePng = "out_VibranceLayer.png";
using (PsdImage image = (PsdImage) Image.Load(sourceFileName))
{
// إنشاء طبقة Vibrance جديدة
VibranceLayer vibranceLayer = image.AddVibranceAdjustmentLayer();
vibranceLayer.Vibrance = 50;
vibranceLayer.Saturation = 100;
image.Save(outputFileNamePsd);
image.Save(outputFileNamePng, new PngOptions());
}
أنظر أيضا
- class VibranceLayer
- class PsdImage
- مساحة الاسم Aspose.PSD.FileFormats.Psd
- المجسم Aspose.PSD