ColorBalanceAdjustmentLayer.HighlightsYellowBlueBalance

ColorBalanceAdjustmentLayer.HighlightsYellowBlueBalance property

Gets or sets the Highlights Yellow Blue Balance.

public short HighlightsYellowBlueBalance { get; set; }

Property Value

The Highlights Yellow Blue Balance.

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionHighlights Yellow Blue Balance must be in range from -100 to +100.

Examples

The following code demonstrates support for the ColorBalanceAdjustmentLayer.

[C#]

var filePath = "ColorBalance.psd";
var outputPath = "ColorBalance_out.psd";
using (var im = (PsdImage)Image.Load(filePath))
{
    foreach (var layer in im.Layers)
    {
        var cbLayer = layer as ColorBalanceAdjustmentLayer;
        if (cbLayer != null)
        {
            cbLayer.ShadowsCyanRedBalance = 30;
            cbLayer.ShadowsMagentaGreenBalance = -15;
            cbLayer.ShadowsYellowBlueBalance = 40;
            cbLayer.MidtonesCyanRedBalance = -90;
            cbLayer.MidtonesMagentaGreenBalance = -25;
            cbLayer.MidtonesYellowBlueBalance = 20;
            cbLayer.HighlightsCyanRedBalance = -30;
            cbLayer.HighlightsMagentaGreenBalance = 67;
            cbLayer.HighlightsYellowBlueBalance = -95;
            cbLayer.PreserveLuminosity = true;
        }
    }

    im.Save(outputPath);
}

See Also