com.aspose.slides.pptx.effects
Class HSL

java.lang.Object
  extended by com.aspose.slides.pptx.effects.ImageTransformOperationEx
      extended by com.aspose.slides.pptx.effects.HSL
All Implemented Interfaces:
IPresentationComponent, ISlideComponent

public class HSL
extends ImageTransformOperationEx

Hue/Saturation/Luminance effect.

The hue, saturation, and luminance may each be adjusted relative to its current value.


Constructor Summary
HSL(float hue, float saturation, float luminance)
          Hue/Saturation/Luminance effect constructor.
 
Method Summary
 float getHue()
          Returns the Hue value.
 float getLuminance()
          Returns the Luminance value.
 float getSaturation()
          Returns the Saturation value.
 void setHue(float hue)
          Sets the Hue value.
 void setLuminance(float luminance)
          Sets the luminance value.
 void setSaturation(float saturation)
          Sets the Saturation value.
 
Methods inherited from class com.aspose.slides.pptx.effects.ImageTransformOperationEx
getPresentation, getSlide
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HSL

public HSL(float hue,
           float saturation,
           float luminance)
Hue/Saturation/Luminance effect constructor.

Parameters:
hue - The number of degrees by which the hue is adjusted.
saturation - The percentage by which the saturation is adjusted.
luminance - The percentage by which the luminance is adjusted.
Method Detail

getHue

public float getHue()
Returns the Hue value.


setHue

public void setHue(float hue)
Sets the Hue value.


getSaturation

public float getSaturation()
Returns the Saturation value.


setSaturation

public void setSaturation(float saturation)
Sets the Saturation value.


getLuminance

public float getLuminance()
Returns the Luminance value.


setLuminance

public void setLuminance(float luminance)
Sets the luminance value.