Pen
Inheritance: java.lang.Object, com.aspose.imaging.TransparencySupporter
public class Pen extends TransparencySupporter
Defines an object used to draw lines, curves and figures.
Constructors
Constructor | Description |
---|---|
Pen(Color color) | Initializes a new instance of the Pen class with the specified color. |
Pen(Color color, float width) | Initializes a new instance of the Pen class with the specified Color and Pen.Width properties. |
Pen(Brush brush) | Initializes a new instance of the Pen class with the specified Brush . |
Pen(Brush brush, float width) | Initializes a new instance of the Pen class with the specified Brush and Pen.Width . |
Methods
Method | Description |
---|---|
getWidth() | Gets the width of this Pen , in units of the Graphics object used for drawing. |
setWidth(float value) | Sets the width of this Pen , in units of the Graphics object used for drawing. |
getStartCap() | Gets the cap style used at the beginning of lines drawn with this Pen . |
setStartCap(int value) | Sets the cap style used at the beginning of lines drawn with this Pen . |
getEndCap() | Gets the cap style used at the end of lines drawn with this Pen . |
setEndCap(int value) | Sets the cap style used at the end of lines drawn with this Pen . |
getDashCap() | Gets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen . |
setDashCap(int value) | Sets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen . |
getLineJoin() | Gets the join style for the ends of two consecutive lines drawn with this Pen . |
setLineJoin(int value) | Sets the join style for the ends of two consecutive lines drawn with this Pen . |
getCustomStartCap() | Gets a custom cap to use at the beginning of lines drawn with this Pen . |
setCustomStartCap(CustomLineCap value) | Sets a custom cap to use at the beginning of lines drawn with this Pen . |
getCustomEndCap() | Gets a custom cap to use at the end of lines drawn with this Pen . |
setCustomEndCap(CustomLineCap value) | Sets a custom cap to use at the end of lines drawn with this Pen . |
getMiterLimit() | Gets the limit of the thickness of the join on a mitered corner. |
setMiterLimit(float value) | Sets the limit of the thickness of the join on a mitered corner. |
getAlignment() | Gets the alignment for this Pen . |
setAlignment(int value) | Sets the alignment for this Pen . |
getTransform() | Gets a copy of the geometric transformation for this Pen . |
setTransform(Matrix value) | Sets a copy of the geometric transformation for this Pen . |
getPenType() | Gets the style of lines drawn with this Pen . |
getColor() | Gets the color of this Pen . |
setColor(Color value) | Sets the color of this Pen . |
getBrush() | Gets the Brush that determines attributes of this Pen . |
setBrush(Brush value) | Sets the Brush that determines attributes of this Pen . |
getDashStyle() | Gets the style used for dashed lines drawn with this Pen . |
setDashStyle(int value) | Sets the style used for dashed lines drawn with this Pen . |
getDashOffset() | Gets the distance from the start of a line to the beginning of a dash pattern. |
setDashOffset(float value) | Sets the distance from the start of a line to the beginning of a dash pattern. |
getDashPattern() | Gets an array of custom dashes and spaces. |
setDashPattern(float[] value) | Sets an array of custom dashes and spaces. |
getCompoundArray() | Gets an array of values that specifies a compound pen. |
setCompoundArray(float[] value) | Sets an array of values that specifies a compound pen. |
setLineCap(int startCap, int endCap, int dashCap) | Sets the values that determine the style of cap used to end lines drawn by this Pen . |
resetTransform() | Resets the geometric transformation matrix for this Pen to identity. |
multiplyTransform(Matrix matrix) | Multiplies the transformation matrix for this Pen by the specified Matrix . |
multiplyTransform(Matrix matrix, int order) | Multiplies the transformation matrix for this Pen by the specified Matrix in the specified order. |
translateTransform(float dx, float dy) | Translates the local geometric transformation by the specified dimensions. |
translateTransform(float dx, float dy, int order) | Translates the local geometric transformation by the specified dimensions in the specified order. |
scaleTransform(float sx, float sy) | Scales the local geometric transformation by the specified factors. |
scaleTransform(float sx, float sy, int order) | Scales the local geometric transformation by the specified factors in the specified order. |
rotateTransform(float angle) | Rotates the local geometric transformation by the specified angle. |
rotateTransform(float angle, int order) | Rotates the local geometric transformation by the specified angle in the specified order. |
equals(Object o) | Check if objects are equal. |
hashCode() |
Example: This example shows the creation and usage Pen objects.
This example shows the creation and usage Pen objects. The example creates a new Image and draw Rectangles on Image surface.
// Create an instance of BmpOptions and set its various properties
com.aspose.imaging.imageoptions.BmpOptions bmpOptions = new com.aspose.imaging.imageoptions.BmpOptions();
bmpOptions.setBitsPerPixel(24);
// Create an instance of FileCreateSource and assign it as Source for the instance of BmpOptions
// Second Boolean parameter determines if the file to be created IsTemporal or not
bmpOptions.setSource(new com.aspose.imaging.sources.FileCreateSource("C:\\temp\\sample.bmp", false));
// Create an instance of Image at specified Path
com.aspose.imaging.Image image = com.aspose.imaging.Image.create(bmpOptions, 500, 500);
try {
// Create an instance of Graphics and initialize it with Image object
com.aspose.imaging.Graphics graphics = new com.aspose.imaging.Graphics(image);
// Clear the Graphics sutface with White Color
graphics.clear(com.aspose.imaging.Color.getWhite());
// Create an instance of Pen with color Red and width 5
com.aspose.imaging.Pen pen = new com.aspose.imaging.Pen(com.aspose.imaging.Color.getRed(), 5);
// Create an instance of HatchBrush and set its properties
com.aspose.imaging.brushes.HatchBrush brush = new com.aspose.imaging.brushes.HatchBrush();
brush.setBackgroundColor(com.aspose.imaging.Color.getWheat());
brush.setForegroundColor(com.aspose.imaging.Color.getRed());
// Create an instance of Pen and initialize it with HatchBrush object and width
com.aspose.imaging.Pen brushedpen = new com.aspose.imaging.Pen(brush, 5);
// Draw Rectangles by specifying Pen object
graphics.drawRectangles(pen, new com.aspose.imaging.Rectangle[]
{
new com.aspose.imaging.Rectangle(new com.aspose.imaging.Point(210, 210), new com.aspose.imaging.Size(100, 100)),
new com.aspose.imaging.Rectangle(new com.aspose.imaging.Point(110, 110), new com.aspose.imaging.Size(100, 100)),
new com.aspose.imaging.Rectangle(new com.aspose.imaging.Point(310, 310), new com.aspose.imaging.Size(100, 100))
});
// Draw Rectangles by specifying Pen object
graphics.drawRectangles(
brushedpen,
new com.aspose.imaging.Rectangle[]
{
new com.aspose.imaging.Rectangle(new com.aspose.imaging.Point(310, 110), new com.aspose.imaging.Size(100, 100)),
new com.aspose.imaging.Rectangle(new com.aspose.imaging.Point(110, 310), new com.aspose.imaging.Size(100, 100))
});
// Save all changes.
image.save();
} finally {
image.dispose();
}
Pen(Color color)
public Pen(Color color)
Initializes a new instance of the Pen
class with the specified color.
Parameters:
Parameter | Type | Description |
---|---|---|
color | Color | A Color structure that indicates the color of this Pen . |
Pen(Color color, float width)
public Pen(Color color, float width)
Initializes a new instance of the Pen
class with the specified Color
and Pen.Width
properties.
Parameters:
Parameter | Type | Description |
---|---|---|
color | Color | A Color structure that indicates the color of this Pen . |
width | float | A value indicating the width of this Pen . |
Pen(Brush brush)
public Pen(Brush brush)
Initializes a new instance of the Pen
class with the specified Brush
.
Parameters:
Parameter | Type | Description |
---|---|---|
brush | Brush | A Brush that determines the fill properties of this Pen . |
Pen(Brush brush, float width)
public Pen(Brush brush, float width)
Initializes a new instance of the Pen
class with the specified Brush
and Pen.Width
.
Parameters:
Parameter | Type | Description |
---|---|---|
brush | Brush | A Brush that determines the characteristics of this Pen . |
width | float | The width of the new Pen . |
getWidth()
public float getWidth()
Gets the width of this Pen
, in units of the Graphics object used for drawing.
Returns:
float - The width of this Pen
.
setWidth(float value)
public void setWidth(float value)
Sets the width of this Pen
, in units of the Graphics object used for drawing.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The width of this Pen . |
getStartCap()
public int getStartCap()
Gets the cap style used at the beginning of lines drawn with this Pen
.
Returns:
int - One of the LineCap
values that represents the cap style used at the beginning of lines drawn with this Pen
.
setStartCap(int value)
public void setStartCap(int value)
Sets the cap style used at the beginning of lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | One of the LineCap values that represents the cap style used at the beginning of lines drawn with this Pen . |
getEndCap()
public int getEndCap()
Gets the cap style used at the end of lines drawn with this Pen
.
Returns:
int - One of the LineCap
values that represents the cap style used at the end of lines drawn with this Pen
.
setEndCap(int value)
public void setEndCap(int value)
Sets the cap style used at the end of lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | One of the LineCap values that represents the cap style used at the end of lines drawn with this Pen . |
getDashCap()
public int getDashCap()
Gets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen
.
Returns:
int - One of the DashCap
values that represents the cap style used at the beginning and end of the dashes that make up dashed lines drawn with this Pen
.
setDashCap(int value)
public void setDashCap(int value)
Sets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | One of the DashCap values that represents the cap style used at the beginning and end of the dashes that make up dashed lines drawn with this Pen . |
getLineJoin()
public int getLineJoin()
Gets the join style for the ends of two consecutive lines drawn with this Pen
.
Returns:
int - A LineJoin
that represents the join style for the ends of two consecutive lines drawn with this Pen
.
setLineJoin(int value)
public void setLineJoin(int value)
Sets the join style for the ends of two consecutive lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | A LineJoin that represents the join style for the ends of two consecutive lines drawn with this Pen . |
getCustomStartCap()
public CustomLineCap getCustomStartCap()
Gets a custom cap to use at the beginning of lines drawn with this Pen
.
Returns:
CustomLineCap - A CustomLineCap
that represents the cap used at the beginning of lines drawn with this Pen
.
setCustomStartCap(CustomLineCap value)
public void setCustomStartCap(CustomLineCap value)
Sets a custom cap to use at the beginning of lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | CustomLineCap | A CustomLineCap that represents the cap used at the beginning of lines drawn with this Pen . |
getCustomEndCap()
public CustomLineCap getCustomEndCap()
Gets a custom cap to use at the end of lines drawn with this Pen
.
Returns:
CustomLineCap - A CustomLineCap
that represents the cap used at the end of lines drawn with this Pen
.
setCustomEndCap(CustomLineCap value)
public void setCustomEndCap(CustomLineCap value)
Sets a custom cap to use at the end of lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | CustomLineCap | A CustomLineCap that represents the cap used at the end of lines drawn with this Pen . |
getMiterLimit()
public float getMiterLimit()
Gets the limit of the thickness of the join on a mitered corner.
Returns: float - The limit of the thickness of the join on a mitered corner.
setMiterLimit(float value)
public void setMiterLimit(float value)
Sets the limit of the thickness of the join on a mitered corner.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The limit of the thickness of the join on a mitered corner. |
getAlignment()
public int getAlignment()
Gets the alignment for this Pen
.
Returns:
int - A PenAlignment
that represents the alignment for this Pen
.
setAlignment(int value)
public void setAlignment(int value)
Sets the alignment for this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | A PenAlignment that represents the alignment for this Pen . |
getTransform()
public Matrix getTransform()
Gets a copy of the geometric transformation for this Pen
.
Returns:
Matrix - A copy of the Matrix
that represents the geometric transformation for this Pen
.
setTransform(Matrix value)
public void setTransform(Matrix value)
Sets a copy of the geometric transformation for this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | Matrix | A copy of the Matrix that represents the geometric transformation for this Pen . |
getPenType()
public int getPenType()
Gets the style of lines drawn with this Pen
.
Returns:
int - A PenType
enumeration that specifies the style of lines drawn with this Pen
.
getColor()
public Color getColor()
Gets the color of this Pen
.
Returns:
Color - A Color
structure that represents the color of this Pen
.
setColor(Color value)
public void setColor(Color value)
Sets the color of this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | Color | A Color structure that represents the color of this Pen . |
getBrush()
public Brush getBrush()
Gets the Brush
that determines attributes of this Pen
.
Returns:
Brush - A Brush
that determines attributes of this Pen
.
setBrush(Brush value)
public void setBrush(Brush value)
Sets the Brush
that determines attributes of this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | Brush | A Brush that determines attributes of this Pen . |
getDashStyle()
public int getDashStyle()
Gets the style used for dashed lines drawn with this Pen
.
Returns:
int - A DashStyle
that represents the style used for dashed lines drawn with this Pen
.
setDashStyle(int value)
public void setDashStyle(int value)
Sets the style used for dashed lines drawn with this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | A DashStyle that represents the style used for dashed lines drawn with this Pen . |
getDashOffset()
public float getDashOffset()
Gets the distance from the start of a line to the beginning of a dash pattern.
Returns: float - The distance from the start of a line to the beginning of a dash pattern.
setDashOffset(float value)
public void setDashOffset(float value)
Sets the distance from the start of a line to the beginning of a dash pattern.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The distance from the start of a line to the beginning of a dash pattern. |
getDashPattern()
public float[] getDashPattern()
Gets an array of custom dashes and spaces.
Returns: float[] - An array of real numbers that specifies the lengths of alternating dashes and spaces in dashed lines.
setDashPattern(float[] value)
public void setDashPattern(float[] value)
Sets an array of custom dashes and spaces.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float[] | An array of real numbers that specifies the lengths of alternating dashes and spaces in dashed lines. |
getCompoundArray()
public float[] getCompoundArray()
Gets an array of values that specifies a compound pen. A compound pen draws a compound line made up of parallel lines and spaces.
Returns: float[] - An array of real numbers that specifies the compound array. The elements in the array must be in increasing order, not less than 0, and not greater than 1.
setCompoundArray(float[] value)
public void setCompoundArray(float[] value)
Sets an array of values that specifies a compound pen. A compound pen draws a compound line made up of parallel lines and spaces.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float[] | An array of real numbers that specifies the compound array. The elements in the array must be in increasing order, not less than 0, and not greater than 1. |
setLineCap(int startCap, int endCap, int dashCap)
public void setLineCap(int startCap, int endCap, int dashCap)
Sets the values that determine the style of cap used to end lines drawn by this Pen
.
Parameters:
Parameter | Type | Description |
---|---|---|
startCap | int | A LineCap that represents the cap style to use at the beginning of lines drawn with this Pen . |
endCap | int | A LineCap that represents the cap style to use at the end of lines drawn with this Pen . |
dashCap | int | A LineCap that represents the cap style to use at the beginning or end of dashed lines drawn with this Pen . |
resetTransform()
public void resetTransform()
Resets the geometric transformation matrix for this Pen
to identity.
multiplyTransform(Matrix matrix)
public void multiplyTransform(Matrix matrix)
Multiplies the transformation matrix for this Pen
by the specified Matrix
.
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Matrix object by which to multiply the transformation matrix. |
multiplyTransform(Matrix matrix, int order)
public void multiplyTransform(Matrix matrix, int order)
Multiplies the transformation matrix for this Pen
by the specified Matrix
in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
matrix | Matrix | The Matrix by which to multiply the transformation matrix. |
order | int | The order in which to perform the multiplication operation. |
translateTransform(float dx, float dy)
public void translateTransform(float dx, float dy)
Translates the local geometric transformation by the specified dimensions. This method prepends the translation to the transformation.
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 transformation 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. |
scaleTransform(float sx, float sy)
public void scaleTransform(float sx, float sy)
Scales the local geometric transformation by the specified factors. This method prepends the scaling matrix to the transformation.
Parameters:
Parameter | Type | Description |
---|---|---|
sx | float | The factor by which to scale the transformation in the x-axis direction. |
sy | float | The factor by which to scale the transformation 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 transformation by the specified factors in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
sx | float | The factor by which to scale the transformation in the x-axis direction. |
sy | float | The factor by which to scale the transformation in the y-axis direction. |
order | int | A MatrixOrder that specifies whether to append or prepend the scaling matrix. |
rotateTransform(float angle)
public void rotateTransform(float angle)
Rotates the local geometric transformation by the specified angle. This method prepends the rotation to the transformation.
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 transformation by the specified angle in the specified order.
Parameters:
Parameter | Type | Description |
---|---|---|
angle | float | The angle of rotation. |
order | int | A MatrixOrder that specifies whether to append or prepend the rotation matrix. |
equals(Object o)
public boolean equals(Object o)
Check if objects are equal.
Parameters:
Parameter | Type | Description |
---|---|---|
o | java.lang.Object | The other object. |
Returns: boolean - The equality comparison result.
hashCode()
public int hashCode()
Get hash code of the current object.
Returns: int