Class EmfPlusColorBalanceEffect

Class EmfPlusColorBalanceEffect

Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Objects
Assembly: Aspose.Imaging.dll (25.2.0)

The ColorBalanceEffect object specifies adjustments to the relative amounts of red, green, and blue in an image.

public sealed class EmfPlusColorBalanceEffect : EmfPlusImageEffectsObjectType

Inheritance

objectMetaObjectEmfPlusObjectEmfPlusImageEffectsObjectTypeEmfPlusColorBalanceEffect

Inherited Members

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

EmfPlusColorBalanceEffect()

public EmfPlusColorBalanceEffect()

Properties

CyanRed

Gets or sets a 32-bit signed integer that specifies a change in the amount of red in the image. This value MUST be in the range -100 through 100, with effects as follows: -100 ≤ value < 0 As the value decreases, the amount of red in the image SHOULD decrease and the amount of cyan SHOULD increase. 0 A value of 0 specifies that the amounts of red and cyan MUST NOT change. 0 < value ≤ 100 As the value increases, the amount of red in the image SHOULD increase and the amount of cyan SHOULD decrease.

public int CyanRed { get; set; }

Property Value

int

MagentaGreen

Gets or sets a 32-bit signed integer that specifies a change in the amount of green in the image. This value MUST be in the range -100 through 100, with effects as follows: -100 ≤ value < 0 As the value decreases, the amount of green in the image SHOULD decrease and the amount of magenta SHOULD increase. 0 A value of 0 specifies that the amounts of green and magenta MUST NOT change. 0 < value ≤ 100 As the value increases, the amount of green in the image SHOULD increase and the amount of magenta SHOULD decrease.

public int MagentaGreen { get; set; }

Property Value

int

YellowBlue

Gets or sets a 32-bit signed integer that specifies a change in the amount of blue in the image. This value MUST be in the range -100 through 100, with effects as follows: -100 ≤ value < 0 As the value decreases, the amount of blue in the image SHOULD decrease and the amount of yellow SHOULD increase. 0 A value of 0 specifies that the amounts of blue and yellow MUST NOT change. 0 < value ≤ 100 As the value increases, the amount of blue in the image SHOULD increase and the amount of yellow SHOULD decrease.

public int YellowBlue { get; set; }

Property Value

int