PsdImage.AddBlackWhiteAdjustmentLayer
PsdImage.AddBlackWhiteAdjustmentLayer method
Добавляет черно-белый корректирующий слой.
public BlackWhiteAdjustmentLayer AddBlackWhiteAdjustmentLayer()
Возвращаемое значение
Созданный черно-белый корректирующий слой.
Примеры
В следующем примере показано, как добавить черно-белый корректирующий слой во время выполнения в Aspose.PSD.
[C#]
string sourceFileName = "Stripes.psd";
string outputFileName = "OutputStripes.psd";
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
BlackWhiteAdjustmentLayer newLayer = image.AddBlackWhiteAdjustmentLayer();
newLayer.Name = "BlackWhiteAdjustmentLayer";
newLayer.Reds = 22;
newLayer.Yellows = 92;
newLayer.Greens = 70;
newLayer.Cyans = 79;
newLayer.Blues = 7;
newLayer.Magentas = 28;
image.Save(outputFileName, new PsdOptions());
}
Смотрите также
- class BlackWhiteAdjustmentLayer
- class PsdImage
- пространство имен Aspose.PSD.FileFormats.Psd
- сборка Aspose.PSD