Brush

Inheritance: java.lang.Object, com.aspose.imaging.DisposableObject

public abstract class Brush extends DisposableObject

The base brush class.

Constructors

Constructor Description
Brush()

Methods

Method Description
getOpacity() Gets the brush opacity.
setOpacity(float value) Sets the brush opacity.
deepClone() Creates a new deep clone of the current Brush.

Brush()

public Brush()

getOpacity()

public float getOpacity()

Gets the brush opacity. The value should be between 0 and 1. Value of 0 means that brush is fully visible, value of 1 means the brush is fully opaque.

Returns: float - The brush opacity value.

setOpacity(float value)

public void setOpacity(float value)

Sets the brush opacity. The value should be between 0 and 1. Value of 0 means that brush is fully visible, value of 1 means the brush is fully opaque.

Parameters:

Parameter Type Description
value float The brush opacity value.

deepClone()

public Brush deepClone()

Creates a new deep clone of the current Brush.

Returns: Brush - A new Brush which is the deep clone of this Brush instance.