If set, causes the text to be drawn over a box of the specified color.
Color to use when filling drawn objects. The default is "black".
Pattern to use when filling drawn objects.
Color to use when drawing object outlines.
Pattern to use when filling drawn objects.
Transforms the coordinate system by a 3x3 transformation matrix.
Specify if the text and stroke should be antialiased.
Draws an arc within a rectangle.
Draw a cubic Bezier curve.
Set the image border color. The default is "#dfdfdf".
Draw a circle.
Defines a clip-path. Within the delegate, call other drawing primitive methods (rectangle, polygon, text, etc.) to define the clip-path. The union of all the primitives (excluding the effects of rendering methods such as stroke_width, etc.) is the clip-path.
Specify how to determine if a point on the image is inside clipping region.
Defines the coordinate space within the clipping region.
Set color in image according to the specified PaintMethod constant. If you use the PaintMethod.FillToBorderMethod, assign the border color with the DrawingContext.borderColor property.
Composite filename/image with the receiver image.
Specify text decoration.
Apply the drawing context to the image.
Draw an ellipse.
Specify the font encoding. Note: This specifies the character repertory (i.e., charset), and not the text encoding method (e.g., UTF-8, UTF-16, etc.).
Color to use when filling drawn objects. The default is "black".
Pattern to use when filling drawn objects.
The gradient to use when filling drawn objects.
Specify the fill opacity.
Specify how to determine if a point on the image is inside a shape.
The font name or filename. You can tag a font to specify whether it is a Postscript, Truetype, or OPTION1 font. For example, Arial.ttf is a Truetype font, ps:helvetica is Postscript, and x:fixed is OPTION1.
Specify the font family, such as "arial" or "helvetica".
Text rendering font point size
Specify the spacing between text characters.
Specify the font style, i.e. italic, oblique, or normal.
Specify the font weight.
Specify how the text is positioned. The default is NorthWestGravity.
Modify the spacing between lines when text has multiple lines.
Modify the spacing between words in text.
Modify the spacing between letters in text.
Draw a line from start to end.
Make the image transparent according to the specified PaintMethod constant.
Specify the fill and stroke opacities.
Draw using SVG-compatible path drawing commands.
Set the pixel at x,y to the fill color.
Draw a polygon.
Draw a polyline. Unlike a polygon, a polyline is not automatically closed.
Restore the graphics context to the state it was in when push was called last.
Save the current state of the graphics context, including the attribute settings and the current set of primitives. Use the pop primitive to restore the state.
Draw a rectangle.
Specify a rotation transformation to the coordinate space.
Draw a rectangle with rounded corners.
Define a scale transformation to the coordinate space.
Define a skew transformation along the x-axis.
Define a skew transformation along the y-axis.
Color to use when drawing object outlines.
Pattern to use when filling drawn objects.
The gradient to use when filling drawn objects.
Specify if the stroke should be antialiased.
Describe a pattern of dashes to be used when stroking paths. The arguments are a list of pixel widths of alternating dashes and gaps.
Specify the initial distance into the dash pattern.
Specify how the line ends should be drawn.
Specify how corners are drawn.
Specify a constraint on the length of the "miter" formed by two lines meeting at an angle. If the angle if very sharp, the miter could be very long relative to the line thickness. The miter _limit is a _limit on the ratio of the miter length to the line width. The default is 4.
Specify the stroke opacity.
Specify the stroke width in pixels. The default is 1.
Draw text at the location specified by (x,y). Use gravity to position text relative to (x, y). Specify the font appearance with the font, fontFamily, fontStretch, fontStyle, and fontWeight properties. Specify the text attributes with the textAlign, textAnchor, textAntialias, and textUndercolor properties.
Align text relative to the starting point.
Specify if the text should be antialiased.
If set, causes the text to be drawn over a box of the specified color.
Specify a translation operation on the coordinate space.
Drawable provides a convenient interface for preparing vector, image, or text arguments.