LinearGradientBrush Class
Summary: Encapsulates a Brush with a linear gradient. This class cannot be inherited.
Module: aspose.psd.brushes
Full Name: aspose.psd.brushes.LinearGradientBrush
Inheritance: LinearGradientBrushBase
Aspose.PSD Version: 24.9.0
Constructors
Name | Description |
---|---|
LinearGradientBrush() | Initializes a new instance of the LinearGradientBrush 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). |
LinearGradientBrush(point1, point2, color1, color2) | Initializes a new instance of the LinearGradientBrush class with the specified points and colors. |
LinearGradientBrush(point1, point2, color1, color2) | Initializes a new instance of the LinearGradientBrush class with the specified points and colors. |
LinearGradientBrush(rect, color1, color2, angle) | Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle. |
LinearGradientBrush(rect, color1, color2, angle) | Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle. |
LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable) | Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle. |
LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable) | Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle. |
Properties
Name | Type | Access | Description |
---|---|---|---|
angle | float | r/w | Gets or sets the gradient angle. |
blend | Blend | r/w | Gets or sets a Blend that specifies positions and factors that define a custom falloff for the gradient. |
disposed | bool | r | Gets a value indicating whether this instance is disposed. |
end_color | Color | r/w | Gets or sets the ending gradient color. |
gamma_correction | bool | r/w | Gets or sets a value indicating whether gamma correction is enabled for this LinearGradientBrushBase. |
interpolation_colors | ColorBlend | r/w | Gets or sets a ColorBlend that defines a multicolor linear gradient. |
is_angle_scalable | bool | r/w | Gets or sets a value indicating whether LinearGradientBrushBase.angle is changed during trasnformations with this LinearGradientBrushBase. |
is_transform_changed | bool | r | 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+. |
linear_colors | Color[] | r/w | Gets or sets the starting and ending colors of the gradient. |
opacity | float | r/w | Gets or 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. |
rectangle | RectangleF | r/w | Gets or sets a rectangular region that defines the starting and ending points of the gradient. |
start_color | Color | r/w | Gets or sets the starting gradient color. |
transform | Matrix | r/w | Gets or sets a copy Matrix that defines a local geometric transform for this TransformBrush. |
wrap_mode | WrapMode | r/w | Gets or sets a WrapMode enumeration that indicates the wrap mode for this TransformBrush. |
Methods
Name | Description |
---|---|
deep_clone() | Creates a new deep clone of the current Brush. |
multiply_transform(matrix) | Multiplies the Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Matrix by prepending the specified Matrix. |
multiply_transform(matrix, order) | Multiplies the Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Matrix in the specified order. |
reset_transform() | Resets the TransformBrush.transform property to identity. |
rotate_transform(angle) | Rotates the local geometric transform by the specified amount. This method prepends the rotation to the transform. |
rotate_transform(angle, order) | Rotates the local geometric transform by the specified amount in the specified order. |
scale_transform(sx, sy) | Scales the local geometric transform by the specified amounts. This method prepends the scaling matrix to the transform. |
scale_transform(sx, sy, order) | Scales the local geometric transform by the specified amounts in the specified order. |
set_blend_triangular_shape(focus) | Creates a linear gradient with a center color and a linear falloff to a single color on both ends. |
set_blend_triangular_shape(focus, scale) | Creates a linear gradient with a center color and a linear falloff to a single color on both ends. |
set_sigma_bell_shape(focus) | Creates a gradient falloff based on a bell-shaped curve. |
set_sigma_bell_shape(focus, scale) | Creates a gradient falloff based on a bell-shaped curve. |
translate_transform(dx, dy) | Translates the local geometric transform by the specified dimensions. This method prepends the translation to the transform. |
translate_transform(dx, dy, order) | Translates the local geometric transform by the specified dimensions in the specified order. |
Constructor: LinearGradientBrush()
LinearGradientBrush()
Initializes a new instance of the LinearGradientBrush 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).
Constructor: LinearGradientBrush(point1, point2, color1, color2)
LinearGradientBrush(point1, point2, color1, color2)
Initializes a new instance of the LinearGradientBrush class with the specified points and colors.
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | Point | A Point structure that represents the starting point of the linear gradient. |
point2 | Point | A Point structure that represents the endpoint of the linear gradient. |
color1 | Color | A Color structure that represents the starting color of the linear gradient. |
color2 | Color | A Color structure that represents the ending color of the linear gradient. |
Constructor: LinearGradientBrush(point1, point2, color1, color2)
LinearGradientBrush(point1, point2, color1, color2)
Initializes a new instance of the LinearGradientBrush class with the specified points and colors.
Parameters:
Parameter | Type | Description |
---|---|---|
point1 | PointF | A Point structure that represents the starting point of the linear gradient. |
point2 | PointF | A Point structure that represents the endpoint of the linear gradient. |
color1 | Color | A Color structure that represents the starting color of the linear gradient. |
color2 | Color | A Color structure that represents the ending color of the linear gradient. |
Constructor: LinearGradientBrush(rect, color1, color2, angle)
LinearGradientBrush(rect, color1, color2, angle)
Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | Rectangle | A RectangleF structure that specifies the bounds of the linear gradient. |
color1 | Color | A Color structure that represents the starting color for the gradient. |
color2 | Color | A Color structure that represents the ending color for the gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
Constructor: LinearGradientBrush(rect, color1, color2, angle)
LinearGradientBrush(rect, color1, color2, angle)
Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | RectangleF | A RectangleF structure that specifies the bounds of the linear gradient. |
color1 | Color | A Color structure that represents the starting color for the gradient. |
color2 | Color | A Color structure that represents the ending color for the gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
Constructor: LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable)
LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable)
Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | Rectangle | A RectangleF structure that specifies the bounds of the linear gradient. |
color1 | Color | A Color structure that represents the starting color for the gradient. |
color2 | Color | A Color structure that represents the ending color for the gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
is_angle_scalable | bool | if set to |
Constructor: LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable)
LinearGradientBrush(rect, color1, color2, angle, is_angle_scalable)
Initializes a new instance of the LinearGradientBrush class based on a rectangle, starting and ending colors, and an orientation angle.
Parameters:
Parameter | Type | Description |
---|---|---|
rect | RectangleF | A RectangleF structure that specifies the bounds of the linear gradient. |
color1 | Color | A Color structure that represents the starting color for the gradient. |
color2 | Color | A Color structure that represents the ending color for the gradient. |
angle | float | The angle, measured in degrees clockwise from the x-axis, of the gradient’s orientation line. |
is_angle_scalable | bool | if set to |
Method: deep_clone()
deep_clone()
Creates a new deep clone of the current Brush.
Returns
Type | Description |
---|---|
Brush | A new Brush which is the deep clone of this Brush instance. |
Method: multiply_transform(matrix)
multiply_transform(matrix)
Multiplies the Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Matrix by prepending the specified Matrix.
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Matrix by which to multiply the geometric transform. |
Method: multiply_transform(matrix, order)
multiply_transform(matrix, order)
Multiplies the Matrix that represents the local geometric transform of this LinearGradientBrush by the specified Matrix in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Matrix by which to multiply the geometric transform. |
order | MatrixOrder | A MatrixOrder that specifies in which order to multiply the two matrices. |
Method: rotate_transform(angle)
rotate_transform(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. |
Method: rotate_transform(angle, order)
rotate_transform(angle, 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 | MatrixOrder | A MatrixOrder that specifies whether to append or prepend the rotation matrix. |
Method: scale_transform(sx, sy)
scale_transform(sx, 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. |
Method: scale_transform(sx, sy, order)
scale_transform(sx, sy, 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 | MatrixOrder | A MatrixOrder that specifies whether to append or prepend the scaling matrix. |
Method: set_blend_triangular_shape(focus)
set_blend_triangular_shape(focus)
Creates a linear gradient with a center color and a linear falloff to a single color on both ends.
Parameters:
Parameter | Type | Description |
---|---|---|
focus | float | A value from 0 through 1 that specifies the center of the gradient (the point where the gradient is composed of only the ending color). |
Method: set_blend_triangular_shape(focus, scale)
set_blend_triangular_shape(focus, scale)
Creates a linear gradient with a center color and a linear falloff to a single color on both ends.
Parameters:
Parameter | Type | Description |
---|---|---|
focus | float | A value from 0 through 1 that specifies the center of the gradient (the point where the gradient is composed of only the ending color). |
scale | float | A value from 0 through1 that specifies how fast the colors falloff from the starting color to |
Method: set_sigma_bell_shape(focus)
set_sigma_bell_shape(focus)
Creates a gradient falloff based on a bell-shaped curve.
Parameters:
Parameter | Type | Description |
---|---|---|
focus | float | A value from 0 through 1 that specifies the center of the gradient (the point where the starting color and ending color are blended equally). |
Method: set_sigma_bell_shape(focus, scale)
set_sigma_bell_shape(focus, scale)
Creates a gradient falloff based on a bell-shaped curve.
Parameters:
Parameter | Type | Description |
---|---|---|
focus | float | A value from 0 through 1 that specifies the center of the gradient (the point where the gradient is composed of only the ending color). |
scale | float | A value from 0 through 1 that specifies how fast the colors falloff from the |
Method: translate_transform(dx, dy)
translate_transform(dx, 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. |
Method: translate_transform(dx, dy, order)
translate_transform(dx, dy, 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 | MatrixOrder | The order (prepend or append) in which to apply the translation. |