LinearMulticolorGradientBrush
Inheritance: java.lang.Object, com.aspose.psd.DisposableObject, com.aspose.psd.Brush, com.aspose.psd.brushes.TransformBrush, com.aspose.psd.brushes.LinearGradientBrushBase
public final class LinearMulticolorGradientBrush extends LinearGradientBrushBase
Represents a Brush with linear gradient defined by multiple colors and appropriate positions. This class cannot be inherited.
Constructors
Constructor | Description |
---|---|
LinearMulticolorGradientBrush() | Initializes a new instance of the LinearMulticolorGradientBrush class with default parameters. |
LinearMulticolorGradientBrush(Point point1, Point point2) | Initializes a new instance of the LinearMulticolorGradientBrush class with the specified points. |
LinearMulticolorGradientBrush(PointF point1, PointF point2) | Initializes a new instance of the LinearMulticolorGradientBrush class with the specified points. |
LinearMulticolorGradientBrush(Rectangle rect, float angle) | Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle. |
LinearMulticolorGradientBrush(RectangleF rect, float angle) | Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle. |
LinearMulticolorGradientBrush(Rectangle rect, float angle, boolean isAngleScalable) | Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle. |
LinearMulticolorGradientBrush(RectangleF rect, float angle, boolean isAngleScalable) | Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle. |
Methods
Method | Description |
---|---|
close() | Implements the Closable interface and can be used in the try-with-resources statement since JDK 1.7. |
deepClone() | Creates a new deep clone of the current Brush . |
dispose() | Disposes the current instance. |
equals(Object arg0) | |
getAngle() | Gets the gradient angle. |
getClass() | |
getDisposed() | Gets a value indicating whether this instance is disposed. |
getGammaCorrection() | Gets a value indicating whether gamma correction is enabled for this LinearGradientBrushBase . |
getInterpolationColors() | Gets a com.aspose.psd.ColorBlend that defines a multicolor linear gradient. |
getOpacity() | Gets the brush opacity. |
getRectangle() | Gets a rectangular region that defines the starting and ending points of the gradient. |
getTransform() | Gets or sets a copy Aspose.Imaging.Matrix that defines a local geometric transform for this TransformBrush . |
getWrapMode() | Gets or sets a Aspose.Imaging.WrapMode enumeration that indicates the wrap mode for this TransformBrush . |
hashCode() | |
isAngleScalable() | Gets a value indicating whether LinearGradientBrushBase.Angle is changed during trasnformations with this LinearGradientBrushBase . |
isTransformChanged() | Gets a value indicating whether transformations were changed in some way. |
multiplyTransform(Matrix matrix) | Multiplies the Aspose.Imaging.Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Aspose.Imaging.Matrix by prepending the specified Aspose.Imaging.Matrix . |
multiplyTransform(Matrix matrix, int order) | Multiplies the Aspose.Imaging.Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Aspose.Imaging.Matrix in the specified order. |
notify() | |
notifyAll() | |
resetTransform() | Resets the TransformBrush.Transform property to identity. |
rotateTransform(float angle) | Rotates the local geometric transform by the specified amount. |
rotateTransform(float angle, int order) | Rotates the local geometric transform by the specified amount in the specified order. |
scaleTransform(float sx, float sy) | Scales the local geometric transform by the specified amounts. |
scaleTransform(float sx, float sy, int order) | Scales the local geometric transform by the specified amounts in the specified order. |
setAngle(float value) | Sets the gradient angle. |
setAngleScalable(boolean value) | Sets a value indicating whether LinearGradientBrushBase.Angle is changed during trasnformations with this LinearGradientBrushBase . |
setGammaCorrection(boolean value) | Sets a value indicating whether gamma correction is enabled for this LinearGradientBrushBase . |
setInterpolationColors(ColorBlend value) | Sets a com.aspose.psd.ColorBlend that defines a multicolor linear gradient. |
setOpacity(float value) | Sets the brush opacity. |
setRectangle(RectangleF value) | Sets a rectangular region that defines the starting and ending points of the gradient. |
setTransform(Matrix value) | Gets or sets a copy Aspose.Imaging.Matrix that defines a local geometric transform for this TransformBrush . |
setWrapMode(int value) | Gets or sets a Aspose.Imaging.WrapMode enumeration that indicates the wrap mode for this TransformBrush . |
toString() | |
translateTransform(float dx, float dy) | Translates the local geometric transform by the specified dimensions. |
translateTransform(float dx, float dy, int order) | Translates the local geometric transform by the specified dimensions in the specified order. |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
LinearMulticolorGradientBrush()
public LinearMulticolorGradientBrush()
Initializes a new instance of the LinearMulticolorGradientBrush class with default parameters. The starting color is black, the ending color is white, the angle is 45 degrees and the rectangle is located in (0,0) with size (1,1).
LinearMulticolorGradientBrush(Point point1, Point point2)
public LinearMulticolorGradientBrush(Point point1, Point point2)
Initializes a new instance of the LinearMulticolorGradientBrush class with the specified points.
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | Point | A Aspose.Imaging.Point structure that represents the starting point of the linear gradient. |
point2 | Point | A Aspose.Imaging.Point structure that represents the endpoint of the linear gradient. |
LinearMulticolorGradientBrush(PointF point1, PointF point2)
public LinearMulticolorGradientBrush(PointF point1, PointF point2)
Initializes a new instance of the LinearMulticolorGradientBrush class with the specified points.
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | PointF | A Aspose.Imaging.PointF structure that represents the starting point of the linear gradient. |
point2 | PointF | A Aspose.Imaging.PointF structure that represents the endpoint of the linear gradient. |
LinearMulticolorGradientBrush(Rectangle rect, float angle)
public LinearMulticolorGradientBrush(Rectangle rect, float angle)
Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | Rectangle | A Aspose.Imaging.RectangleF structure that specifies the bounds of the linear gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
LinearMulticolorGradientBrush(RectangleF rect, float angle)
public LinearMulticolorGradientBrush(RectangleF rect, float angle)
Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | RectangleF | A Aspose.Imaging.RectangleF structure that specifies the bounds of the linear gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
LinearMulticolorGradientBrush(Rectangle rect, float angle, boolean isAngleScalable)
public LinearMulticolorGradientBrush(Rectangle rect, float angle, boolean isAngleScalable)
Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | Rectangle | A Aspose.Imaging.RectangleF structure that specifies the bounds of the linear gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
isAngleScalable | boolean | if set to true the angle is changed during transformations with this LinearMulticolorGradientBrush . |
LinearMulticolorGradientBrush(RectangleF rect, float angle, boolean isAngleScalable)
public LinearMulticolorGradientBrush(RectangleF rect, float angle, boolean isAngleScalable)
Initializes a new instance of the LinearMulticolorGradientBrush class based on a rectangle and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | RectangleF | A Aspose.Imaging.RectangleF structure that specifies the bounds of the linear gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
isAngleScalable | boolean | if set to true the angle is changed during transformations with this LinearMulticolorGradientBrush . |
close()
public void close()
Implements the Closable interface and can be used in the try-with-resources statement since JDK 1.7. This method simply call dispose method.
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.
dispose()
public final void dispose()
Disposes the current instance.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getAngle()
public float getAngle()
Gets the gradient angle.
Returns: float - The gradient angle.
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getDisposed()
public final boolean getDisposed()
Gets a value indicating whether this instance is disposed.
Returns: boolean - true if disposed; otherwise, false .
getGammaCorrection()
public boolean getGammaCorrection()
Gets a value indicating whether gamma correction is enabled for this LinearGradientBrushBase .
Returns: boolean - The value is true if gamma correction is enabled for this LinearGradientBrushBase ; otherwise, false.
getInterpolationColors()
public ColorBlend getInterpolationColors()
Gets a com.aspose.psd.ColorBlend that defines a multicolor linear gradient.
Returns: ColorBlend - A com.aspose.psd.ColorBlend that defines a multicolor linear gradient.
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.
getRectangle()
public RectangleF getRectangle()
Gets a rectangular region that defines the starting and ending points of the gradient.
Returns: RectangleF - A com.aspose.psd.RectangleF structure that specifies the starting and ending points of the gradient.
getTransform()
public Matrix getTransform()
Gets or sets a copy Aspose.Imaging.Matrix that defines a local geometric transform for this TransformBrush .
Returns: Matrix - A copy of the Aspose.Imaging.Matrix that defines a geometric transform that applies only to fills drawn with this TransformBrush .
getWrapMode()
public int getWrapMode()
Gets or sets a Aspose.Imaging.WrapMode enumeration that indicates the wrap mode for this TransformBrush .
Returns: int - A Aspose.Imaging.WrapMode that specifies how fills drawn with this TransformBrush are tiled.
hashCode()
public native int hashCode()
Returns: int
isAngleScalable()
public boolean isAngleScalable()
Gets a value indicating whether LinearGradientBrushBase.Angle is changed during trasnformations with this LinearGradientBrushBase .
Returns: boolean - true if LinearGradientBrushBase.Angle is changed during transformations with this LinearGradientBrushBase ; otherwise, false .
isTransformChanged()
public boolean isTransformChanged()
Gets a value indicating whether transformations were changed in some way. For example setting the transformation matrix or calling any of the methods altering the transformation matrix. The property is introduced for backward compatibility with GDI+.
Value: True if transformation was changed; otherwise, false .
Returns: boolean
multiplyTransform(Matrix matrix)
public void multiplyTransform(Matrix matrix)
Multiplies the Aspose.Imaging.Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Aspose.Imaging.Matrix by prepending the specified Aspose.Imaging.Matrix .
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Aspose.Imaging.Matrix by which to multiply the geometric transform. |
multiplyTransform(Matrix matrix, int order)
public void multiplyTransform(Matrix matrix, int order)
Multiplies the Aspose.Imaging.Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Aspose.Imaging.Matrix in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Aspose.Imaging.Matrix by which to multiply the geometric transform. |
order | int | A Aspose.Imaging.MatrixOrder that specifies in which order to multiply the two matrices. |
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
resetTransform()
public void resetTransform()
Resets the TransformBrush.Transform property to identity.
rotateTransform(float angle)
public void rotateTransform(float angle)
Rotates the local geometric transform by the specified amount. This method prepends the rotation to the transform.
Parameters:
Parameter | Type | Description |
---|---|---|
angle | float | The angle of rotation. |
rotateTransform(float angle, int order)
public void rotateTransform(float angle, int order)
Rotates the local geometric transform by the specified amount in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
angle | float | The angle of rotation. |
order | int | A Aspose.Imaging.MatrixOrder that specifies whether to append or prepend the rotation matrix. |
scaleTransform(float sx, float sy)
public void scaleTransform(float sx, float sy)
Scales the local geometric transform by the specified amounts. This method prepends the scaling matrix to the transform.
Parameters:
Parameter | Type | Description |
---|---|---|
sx | float | The amount by which to scale the transform in the x-axis direction. |
sy | float | The amount by which to scale the transform in the y-axis direction. |
scaleTransform(float sx, float sy, int order)
public void scaleTransform(float sx, float sy, int order)
Scales the local geometric transform by the specified amounts in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
sx | float | The amount by which to scale the transform in the x-axis direction. |
sy | float | The amount by which to scale the transform in the y-axis direction. |
order | int | A Aspose.Imaging.MatrixOrder that specifies whether to append or prepend the scaling matrix. |
setAngle(float value)
public void setAngle(float value)
Sets the gradient angle.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The gradient angle. |
setAngleScalable(boolean value)
public void setAngleScalable(boolean value)
Sets a value indicating whether LinearGradientBrushBase.Angle is changed during trasnformations with this LinearGradientBrushBase .
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | true if LinearGradientBrushBase.Angle is changed during transformations with this LinearGradientBrushBase ; otherwise, false . |
setGammaCorrection(boolean value)
public void setGammaCorrection(boolean value)
Sets a value indicating whether gamma correction is enabled for this LinearGradientBrushBase .
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value is true if gamma correction is enabled for this LinearGradientBrushBase ; otherwise, false. |
setInterpolationColors(ColorBlend value)
public void setInterpolationColors(ColorBlend value)
Sets a com.aspose.psd.ColorBlend that defines a multicolor linear gradient.
Parameters:
Parameter | Type | Description |
---|---|---|
value | ColorBlend | A com.aspose.psd.ColorBlend that defines a multicolor linear gradient. |
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. |
setRectangle(RectangleF value)
public void setRectangle(RectangleF value)
Sets a rectangular region that defines the starting and ending points of the gradient.
Parameters:
Parameter | Type | Description |
---|---|---|
value | RectangleF | A com.aspose.psd.RectangleF structure that specifies the starting and ending points of the gradient. |
setTransform(Matrix value)
public void setTransform(Matrix value)
Gets or sets a copy Aspose.Imaging.Matrix that defines a local geometric transform for this TransformBrush .
Parameters:
Parameter | Type | Description |
---|---|---|
value | Matrix |
setWrapMode(int value)
public void setWrapMode(int value)
Gets or sets a Aspose.Imaging.WrapMode enumeration that indicates the wrap mode for this TransformBrush .
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
toString()
public String toString()
Returns: java.lang.String
translateTransform(float dx, float dy)
public void translateTransform(float dx, float dy)
Translates the local geometric transform by the specified dimensions. This method prepends the translation to the transform.
Parameters:
Parameter | Type | Description |
---|---|---|
dx | float | The value of the translation in x. |
dy | float | The value of the translation in y. |
translateTransform(float dx, float dy, int order)
public void translateTransform(float dx, float dy, int order)
Translates the local geometric transform by the specified dimensions in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
dx | float | The value of the translation in x. |
dy | float | The value of the translation in y. |
order | int | The order (prepend or append) in which to apply the translation. |
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |