com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IImageTransformOperationCollection

    • Method Detail

      • 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.