VibranceLayer.Vibrance

VibranceLayer.Vibrance property

Får eller ställer in pulsen.

public int Vibrance { get; set; }

Fastighetsvärde

Vibransen.

Undantag

undantagskick
ArgumentOutOfRangeExceptionVibransen måste ligga inom området -180 till +180

Exempel

Följande kodexempel visar stöd för lagret VibranceLayer och möjligheten att redigera denna justering.

[C#]

string sourceFileName = "WithoutVibrance.psd";
string outputFileNamePsd = "out_VibranceLayer.psd";
string outputFileNamePng = "out_VibranceLayer.png";

using (PsdImage image = (PsdImage) Image.Load(sourceFileName))
{
    // Skapa ett nytt VibranceLayer
    VibranceLayer vibranceLayer = image.AddVibranceAdjustmentLayer();
    vibranceLayer.Vibrance = 50;
    vibranceLayer.Saturation = 100;

    image.Save(outputFileNamePsd);
    image.Save(outputFileNamePng, new PngOptions());
}

Se även