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))
{
// Создание нового VibranceLayer
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