IBlur

Overview

IBlur is a interface in Aspose.Slides FOSS for Java. Inherits from: IImageTransformOperation.

Represents a Blur effect that is applied to the entire shape, including its fill.

This interface provides 5 methods for working with IBlur objects in Java programs. Available methods include: asIImageTransformOperation, getRadius, isGrow, setGrow, setRadius. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: grow, radius.

Properties

NameTypeAccessDescription
radiusdoubleReadReturns the blur radius in points.
growbooleanReadReturns whether the blur boundary grows beyond the shape bounds.

Methods

SignatureDescription
getRadius()doubleReturns the blur radius in points.
setRadius(value: double)Sets the blur radius in points.
isGrow()booleanReturns whether the blur boundary grows beyond the shape bounds.
setGrow(value: boolean)Sets whether the blur boundary grows beyond the shape bounds.
asIImageTransformOperation()IImageTransformOperationReturns this instance as {@link IImageTransformOperation}.

See Also