public interface IImageTransformOperationCollection extends com.aspose.ms.System.Collections.Generic.IGenericCollection<IImageTransformOperation>
Modifier and Type | Method and Description |
---|---|
IAlphaBiLevel |
addAlphaBiLevelEffect(float threshold)
Adds the new Alpha Bi-Level effect to the end of a collection.
|
IAlphaCeiling |
addAlphaCeilingEffect()
Adds the new Alpha Ceiling effect to the end of a collection.
|
IAlphaFloor |
addAlphaFloorEffect()
Adds the new Alpha Floor effect to the end of a collection.
|
IAlphaInverse |
addAlphaInverseEffect()
Adds the new Alpha Inverse effect to the end of a collection.
|
IAlphaModulate |
addAlphaModulateEffect()
Adds the new Alpha Modulate effect to the end of a collection.
|
IAlphaModulateFixed |
addAlphaModulateFixedEffect(float amount)
Adds the new Alpha Modulate Fixed effect to the end of a collection.
|
IAlphaReplace |
addAlphaReplaceEffect(float alpha)
Adds the new Alpha Replace effect to the end of a collection.
|
IBiLevel |
addBiLevelEffect(float threshold)
Adds the new Bi-Level (black/white) effect to the end of a collection.
|
IBlur |
addBlurEffect(double radius,
boolean grow)
Adds the new Blur effect to the end of a collection.
|
IColorChange |
addColorChangeEffect()
Adds the new Color Change effect to the end of a collection.
|
IColorReplace |
addColorReplaceEffect()
Adds the new Color Replacement effect to the end of a collection.
|
IDuotone |
addDuotoneEffect()
Adds the new Duotone effect to the end of a collection.
|
IFillOverlay |
addFillOverlayEffect()
Adds the new Fill Overlay effect to the end of a collection.
|
IGrayScale |
addGrayScaleEffect()
Adds the new Gray Scale effect to the end of a collection.
|
IHSL |
addHSLEffect(float hue,
float saturation,
float luminance)
Adds the new Hue/Saturation/Luminance effect to the end of a collection.
|
ILuminance |
addLuminanceEffect(float brightness,
float contrast)
Adds the new Luminance effect to the end of a collection.
|
ITint |
addTintEffect(float hue,
float amount)
Adds the new Tint effect to the end of a collection.
|
IImageTransformOperation |
get_Item(int index)
Returns an
IImageTransformOperation from the collection by it's index. |
void |
removeAt(int index)
Removes an image effect from a collection at the specified index.
|
addItem, clear, containsItem, copyToTArray, isReadOnly, removeItem, size
IImageTransformOperation get_Item(int index)
Returns an IImageTransformOperation
from the collection by it's index.
index
- Index of item.IImageTransformOperation
object.void removeAt(int index)
Removes an image effect from a collection at the specified index.
index
- Index of an image effect that should be deleted.IAlphaBiLevel addAlphaBiLevelEffect(float threshold)
Adds the new Alpha Bi-Level effect to the end of a collection.
threshold
- The threshold value for the alpha bi-level effect.IAlphaCeiling addAlphaCeilingEffect()
Adds the new Alpha Ceiling effect to the end of a collection.
IAlphaFloor addAlphaFloorEffect()
Adds the new Alpha Floor effect to the end of a collection.
IAlphaInverse addAlphaInverseEffect()
Adds the new Alpha Inverse effect to the end of a collection.
IAlphaModulate addAlphaModulateEffect()
Adds the new Alpha Modulate effect to the end of a collection.
IAlphaModulateFixed addAlphaModulateFixedEffect(float amount)
Adds the new Alpha Modulate Fixed effect to the end of a collection.
amount
- The percentage amount to scale the alpha.IAlphaReplace addAlphaReplaceEffect(float alpha)
Adds the new Alpha Replace effect to the end of a collection.
alpha
- The new opacity value.IBiLevel addBiLevelEffect(float threshold)
Adds the new Bi-Level (black/white) effect to the end of a collection.
threshold
- the luminance threshold for the Bi-Level effect.
Values greater than or equal to the threshold are set to white.
Values lesser than the threshold are set to black.IBlur addBlurEffect(double radius, boolean grow)
Adds the new Blur effect to the end of a collection.
radius
- The radius of blur.grow
- Specifies whether the bounds of the object should be grown as a result of the blurring.
True indicates the bounds are grown while false indicates that they are not.IColorChange addColorChangeEffect()
Adds the new Color Change effect to the end of a collection.
IColorReplace addColorReplaceEffect()
Adds the new Color Replacement effect to the end of a collection.
IDuotone addDuotoneEffect()
Adds the new Duotone effect to the end of a collection.
IFillOverlay addFillOverlayEffect()
Adds the new Fill Overlay effect to the end of a collection.
IGrayScale addGrayScaleEffect()
Adds the new Gray Scale effect to the end of a collection.
IHSL addHSLEffect(float hue, float saturation, float luminance)
Adds the new Hue/Saturation/Luminance effect to the end of a collection.
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.ILuminance addLuminanceEffect(float brightness, float contrast)
Adds the new Luminance effect to the end of a collection.
brightness
- The percent to change the brightness.contrast
- The percent to change the contrast.ITint addTintEffect(float hue, float amount)
Adds the new Tint effect to the end of a collection.
hue
- The hue towards which to tint.amount
- Specifies by how much the color value is shifted.