com.aspose.slides
Interface IImageTransformOperationCollection

All Superinterfaces:
com.aspose.ms.System.Collections.IEnumerable<IImageTransformOperation>, com.aspose.ms.System.Collections.Generic.IGenericCollection<IImageTransformOperation>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IImageTransformOperation>, java.lang.Iterable<IImageTransformOperation>
All Known Implementing Classes:
ImageTransformOperationCollection

public interface IImageTransformOperationCollection
extends com.aspose.ms.System.Collections.Generic.IGenericCollection<IImageTransformOperation>


Method Summary
 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.
 
Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericCollection
addItem, clear, containsItem, copyToTArray, isReadOnly, removeItem, size
 
Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable
iterator
 

Method Detail

get_Item

IImageTransformOperation get_Item(int index)

Returns an IImageTransformOperation from the collection by it's index.

Parameters:
index -
Returns:

removeAt

void removeAt(int index)

Removes an image effect from a collection at the specified index.

Parameters:
index - Index of an image effect that should be deleted.

addAlphaBiLevelEffect

IAlphaBiLevel addAlphaBiLevelEffect(float threshold)

Adds the new Alpha Bi-Level effect to the end of a collection.

Parameters:
threshold - The threshold value for the alpha bi-level effect.
Returns:
Index of the new image effect in a collection.

addAlphaCeilingEffect

IAlphaCeiling addAlphaCeilingEffect()

Adds the new Alpha Ceiling effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addAlphaFloorEffect

IAlphaFloor addAlphaFloorEffect()

Adds the new Alpha Floor effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addAlphaInverseEffect

IAlphaInverse addAlphaInverseEffect()

Adds the new Alpha Inverse effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addAlphaModulateEffect

IAlphaModulate addAlphaModulateEffect()

Adds the new Alpha Modulate effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addAlphaModulateFixedEffect

IAlphaModulateFixed addAlphaModulateFixedEffect(float amount)

Adds the new Alpha Modulate Fixed effect to the end of a collection.

Parameters:
amount - The percentage amount to scale the alpha.
Returns:
Index of the new image effect in a collection.

addAlphaReplaceEffect

IAlphaReplace addAlphaReplaceEffect(float alpha)

Adds the new Alpha Replace effect to the end of a collection.

Parameters:
alpha - The new opacity value.
Returns:
Index of the new image effect in a collection.

addBiLevelEffect

IBiLevel addBiLevelEffect(float threshold)

Adds the new Bi-Level (black/white) effect to the end of a collection.

Parameters:
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.
Returns:
Index of the new image effect in a collection.

addBlurEffect

IBlur addBlurEffect(double radius,
                    boolean grow)

Adds the new Blur effect to the end of a collection.

Parameters:
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.
Returns:
Index of the new image effect in a collection.

addColorChangeEffect

IColorChange addColorChangeEffect()

Adds the new Color Change effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addColorReplaceEffect

IColorReplace addColorReplaceEffect()

Adds the new Color Replacement effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addDuotoneEffect

IDuotone addDuotoneEffect()

Adds the new Duotone effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addFillOverlayEffect

IFillOverlay addFillOverlayEffect()

Adds the new Fill Overlay effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addGrayScaleEffect

IGrayScale addGrayScaleEffect()

Adds the new Gray Scale effect to the end of a collection.

Returns:
Index of the new image effect in a collection.

addHSLEffect

IHSL addHSLEffect(float hue,
                  float saturation,
                  float luminance)

Adds the new Hue/Saturation/Luminance effect to the end of a collection.

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.
Returns:
Index of the new image effect in a collection.

addLuminanceEffect

ILuminance addLuminanceEffect(float brightness,
                              float contrast)

Adds the new Luminance effect to the end of a collection.

Parameters:
brightness - The percent to change the brightness.
contrast - The percent to change the contrast.
Returns:
Index of the new image effect in a collection.

addTintEffect

ITint addTintEffect(float hue,
                    float amount)

Adds the new Tint effect to the end of a collection.

Parameters:
hue - The hue towards which to tint.
amount - Specifies by how much the color value is shifted.
Returns:
Index of the new image effect in a collection.


Copyright © Copyright 2004-2016 Aspose Pty Ltd. All Rights Reserved.