Known direct subclasses

Summary

Public functions

Unit
clipPath(path: Path, clipOp: ClipOp)

Reduces the clip region to the intersection of the current clip and the given Path.

Cmn
open Unit
clipRect(rect: Rect, clipOp: ClipOp)

Reduces the clip region to the intersection of the current clip and the given rectangle.

Cmn
Unit
clipRect(left: Float, top: Float, right: Float, bottom: Float, clipOp: ClipOp)

Reduces the clip region to the intersection of the current clip and the given bounds.

Cmn
Unit
concat(matrix: Matrix)

Multiply the current transform by the specified 4⨉4 transformation matrix specified as a list of values in column-major order.

Cmn
Unit

Disables Z support, preventing any layers drawn after this point from being visually reordered or having shadows rendered.

Cmn
open Unit
drawArc(
    rect: Rect,
    startAngle: Float,
    sweepAngle: Float,
    useCenter: Boolean,
    paint: Paint
)

Draw an arc scaled to fit inside the given rectangle.

Cmn
Unit
drawArc(
    left: Float,
    top: Float,
    right: Float,
    bottom: Float,
    startAngle: Float,
    sweepAngle: Float,
    useCenter: Boolean,
    paint: Paint
)

Draw an arc scaled to fit inside the given rectangle.

Cmn
open Unit
drawArcRad(
    rect: Rect,
    startAngleRad: Float,
    sweepAngleRad: Float,
    useCenter: Boolean,
    paint: Paint
)

Draw an arc scaled to fit inside the given rectangle.

Cmn
Unit
drawCircle(center: Offset, radius: Float, paint: Paint)

Draws a circle centered at the point given by the first argument and that has the radius given by the second argument, with the Paint given in the third argument.

Cmn
Unit
drawImage(image: ImageBitmap, topLeftOffset: Offset, paint: Paint)

Draws the given ImageBitmap into the canvas with its top-left corner at the given Offset.

Cmn
Unit
drawImageRect(
    image: ImageBitmap,
    srcOffset: IntOffset,
    srcSize: IntSize,
    dstOffset: IntOffset,
    dstSize: IntSize,
    paint: Paint
)

Draws the subset of the given image described by the src argument into the canvas in the axis-aligned rectangle given by the dst argument.

Cmn
Unit
drawLine(p1: Offset, p2: Offset, paint: Paint)

Draws a line between the given points using the given paint.

Cmn
open Unit
drawOval(rect: Rect, paint: Paint)

Draws an axis-aligned oval that fills the given axis-aligned rectangle with the given Paint.

Cmn
Unit
drawOval(left: Float, top: Float, right: Float, bottom: Float, paint: Paint)

Draws an axis-aligned oval that fills the given bounds provided with the given Paint.

Cmn
Unit
drawPath(path: Path, paint: Paint)

Draws the given Path with the given Paint.

Cmn
Unit
drawPoints(pointMode: PointMode, points: List<Offset>, paint: Paint)

Draws a sequence of points according to the given PointMode.

Cmn
Unit
drawRawPoints(pointMode: PointMode, points: FloatArray, paint: Paint)

Draws a sequence of points according to the given PointMode.

Cmn
open Unit
drawRect(rect: Rect, paint: Paint)

Draws a rectangle with the given Paint.

Cmn
Unit
drawRect(left: Float, top: Float, right: Float, bottom: Float, paint: Paint)

Draws a rectangle with the given Paint.

Cmn
Unit
drawRoundRect(
    left: Float,
    top: Float,
    right: Float,
    bottom: Float,
    radiusX: Float,
    radiusY: Float,
    paint: Paint
)

Draws a rounded rectangle with the given Paint.

Cmn
Unit
drawVertices(vertices: Vertices, blendMode: BlendMode, paint: Paint)
Cmn
Unit

Enables Z support which defaults to disabled.

Cmn
Unit

Pops the current save stack, if there is anything to pop.

Cmn
Unit
rotate(degrees: Float)

Add a rotation (in degrees clockwise) to the current transform

Cmn
Unit

Saves a copy of the current transform and clip on the save stack.

Cmn
Unit
saveLayer(bounds: Rect, paint: Paint)

Saves a copy of the current transform and clip on the save stack, and then creates a new group which subsequent calls will become a part of.

Cmn
Unit
scale(sx: Float, sy: Float)

Add an axis-aligned scale to the current transform, scaling by the first argument in the horizontal direction and the second in the vertical direction.

Cmn
Unit
skew(sx: Float, sy: Float)

Add an axis-aligned skew to the current transform, with the first argument being the horizontal skew in degrees clockwise around the origin, and the second argument being the vertical skew in degrees clockwise around the origin.

Cmn
open Unit
skewRad(sxRad: Float, syRad: Float)

Add an axis-aligned skew to the current transform, with the first argument being the horizontal skew in radians clockwise around the origin, and the second argument being the vertical skew in radians clockwise around the origin.

Cmn
Unit
translate(dx: Float, dy: Float)

Add a translation to the current transform, shifting the coordinate space horizontally by the first argument and vertically by the second argument.

Cmn

Extension functions

Unit
Canvas.rotate(degrees: Float, pivotX: Float, pivotY: Float)

Add a rotation (in degrees clockwise) to the current transform at the given pivot point.

Cmn
Unit
Canvas.rotateRad(radians: Float, pivotX: Float, pivotY: Float)

Add a rotation (in radians clockwise) to the current transform at the given pivot point.

Cmn
Unit
Canvas.scale(sx: Float, sy: Float, pivotX: Float, pivotY: Float)

Add an axis-aligned scale to the current transform, scaling by the first argument in the horizontal direction and the second in the vertical direction at the given pivot coordinate.

Cmn
inline Unit
Canvas.withSave(block: () -> Unit)

Saves a copy of the current transform and clip on the save stack and executes the provided lambda with the current transform applied.

Cmn
inline Unit
Canvas.withSaveLayer(bounds: Rect, paint: Paint, block: () -> Unit)

Saves a copy of the current transform and clip on the save stack, and then creates a new group which subsequent calls will become a part of.

Cmn
Unit
Canvas.drawOutline(outline: Outline, paint: Paint)

Draws the Outline on a Canvas.

Cmn

Extension properties

NativeCanvas

Return an instance of the native primitive that implements the Canvas interface

Cmn
android

Public functions

clipPath

fun clipPath(path: Path, clipOp: ClipOp = ClipOp.Intersect): Unit

Reduces the clip region to the intersection of the current clip and the given Path.

clipRect

open fun clipRect(rect: Rect, clipOp: ClipOp = ClipOp.Intersect): Unit

Reduces the clip region to the intersection of the current clip and the given rectangle.

Use ClipOp.Difference to subtract the provided rectangle from the current clip.

clipRect

fun clipRect(
    left: Float,
    top: Float,
    right: Float,
    bottom: Float,
    clipOp: ClipOp = ClipOp.Intersect
): Unit

Reduces the clip region to the intersection of the current clip and the given bounds.

Use ClipOp.Difference to subtract the provided rectangle from the current clip.

Parameters
left: Float

Left bound of the clip region

top: Float

Top bound of the clip region

right: Float

Right bound of the clip region

bottom: Float

Bottom bound of the clip region

clipOp: ClipOp = ClipOp.Intersect

Clipping operation to conduct on the given bounds, defaults to ClipOp.Intersect

concat

fun concat(matrix: Matrix): Unit

Multiply the current transform by the specified 4⨉4 transformation matrix specified as a list of values in column-major order.

disableZ

fun disableZ(): Unit

Disables Z support, preventing any layers drawn after this point from being visually reordered or having shadows rendered. This is not impacted by any save or restore calls as it is not considered part of the matrix or clip.

See also
enableZ

drawArc

open fun drawArc(
    rect: Rect,
    startAngle: Float,
    sweepAngle: Float,
    useCenter: Boolean,
    paint: Paint
): Unit

Draw an arc scaled to fit inside the given rectangle. It starts from startAngle degrees around the oval up to startAngle + sweepAngle degrees around the oval, with zero degrees being the point on the right hand side of the oval that crosses the horizontal line that intersects the center of the rectangle and with positive angles going clockwise around the oval. If useCenter is true, the arc is closed back to the center, forming a circle sector. Otherwise, the arc is not closed, forming a circle segment.

This method is optimized for drawing arcs and should be faster than Path.arcTo.

drawArc

fun drawArc(
    left: Float,
    top: Float,
    right: Float,
    bottom: Float,
    startAngle: Float,
    sweepAngle: Float,
    useCenter: Boolean,
    paint: Paint
): Unit

Draw an arc scaled to fit inside the given rectangle. It starts from startAngle degrees around the oval up to startAngle + sweepAngle degrees around the oval, with zero degrees being the point on the right hand side of the oval that crosses the horizontal line that intersects the center of the rectangle and with positive angles going clockwise around the oval. If useCenter is true, the arc is closed back to the center, forming a circle sector. Otherwise, the arc is not closed, forming a circle segment.

This method is optimized for drawing arcs and should be faster than Path.arcTo.

Parameters
left: Float

Left bound of the arc

top: Float

Top bound of the arc

right: Float

Right bound of the arc

bottom: Float

Bottom bound of the arc

startAngle: Float

Starting angle of the arc relative to 3 o'clock

sweepAngle: Float

Sweep angle in degrees clockwise

useCenter: Boolean

Flag indicating whether or not to include the center of the oval in the

paint: Paint

Paint used to draw the arc. arc, and close it if it is being stroked. This will draw a wedge.

drawArcRad

open fun drawArcRad(
    rect: Rect,
    startAngleRad: Float,
    sweepAngleRad: Float,
    useCenter: Boolean,
    paint: Paint
): Unit

Draw an arc scaled to fit inside the given rectangle. It starts from startAngle radians around the oval up to startAngle + sweepAngle radians around the oval, with zero radians being the point on the right hand side of the oval that crosses the horizontal line that intersects the center of the rectangle and with positive angles going clockwise around the oval. If useCenter is true, the arc is closed back to the center, forming a circle sector. Otherwise, the arc is not closed, forming a circle segment.

This method is optimized for drawing arcs and should be faster than Path.arcTo.

drawCircle

fun drawCircle(center: Offset, radius: Float, paint: Paint): Unit

Draws a circle centered at the point given by the first argument and that has the radius given by the second argument, with the Paint given in the third argument. Whether the circle is filled or stroked (or both) is controlled by Paint.style.

drawImage

fun drawImage(image: ImageBitmap, topLeftOffset: Offset, paint: Paint): Unit

Draws the given ImageBitmap into the canvas with its top-left corner at the given Offset. The image is composited into the canvas using the given Paint.

drawImageRect

fun drawImageRect(
    image: ImageBitmap,
    srcOffset: IntOffset = IntOffset.Zero,
    srcSize: IntSize = IntSize(image.width, image.height),
    dstOffset: IntOffset = IntOffset.Zero,
    dstSize: IntSize = srcSize,
    paint: Paint
): Unit

Draws the subset of the given image described by the src argument into the canvas in the axis-aligned rectangle given by the dst argument.

This might sample from outside the src rect by up to half the width of an applied filter.

Parameters
image: ImageBitmap

ImageBitmap to draw

srcOffset: IntOffset = IntOffset.Zero

: Optional offset representing the top left offset of the source image to draw, this defaults to the origin of image

srcSize: IntSize = IntSize(image.width, image.height)

: Optional dimensions of the source image to draw relative to srcOffset, this defaults the width and height of image

dstOffset: IntOffset = IntOffset.Zero

: Offset representing the top left offset of the destination image to draw

dstSize: IntSize = srcSize

: Dimensions of the destination to draw

paint: Paint

Paint used to composite the ImageBitmap pixels into the canvas

drawLine

fun drawLine(p1: Offset, p2: Offset, paint: Paint): Unit

Draws a line between the given points using the given paint. The line is stroked, the value of the Paint.style is ignored for this call.

The p1 and p2 arguments are interpreted as offsets from the origin.

drawOval

open fun drawOval(rect: Rect, paint: Paint): Unit

Draws an axis-aligned oval that fills the given axis-aligned rectangle with the given Paint. Whether the oval is filled or stroked (or both) is controlled by Paint.style.

drawOval

fun drawOval(left: Float, top: Float, right: Float, bottom: Float, paint: Paint): Unit

Draws an axis-aligned oval that fills the given bounds provided with the given Paint. Whether the rectangle is filled or stroked (or both) is controlled by Paint.style.

Parameters
left: Float

The left bound of the rectangle

top: Float

The top bound of the rectangle

right: Float

The right bound of the rectangle

bottom: Float

The bottom bound of the rectangle

paint: Paint

Paint used to color the rectangle with a fill or stroke

drawPath

fun drawPath(path: Path, paint: Paint): Unit

Draws the given Path with the given Paint. Whether this shape is filled or stroked (or both) is controlled by Paint.style. If the path is filled, then subpaths within it are implicitly closed (see Path.close).

drawPoints

fun drawPoints(pointMode: PointMode, points: List<Offset>, paint: Paint): Unit

Draws a sequence of points according to the given PointMode.

The points argument is interpreted as offsets from the origin.

See also:

drawRawPoints

fun drawRawPoints(pointMode: PointMode, points: FloatArray, paint: Paint): Unit

Draws a sequence of points according to the given PointMode.

The points argument is interpreted as a list of pairs of floating point numbers, where each pair represents an x and y offset from the origin.

See also:

  • drawPoints, which takes points as a List rather than a List.

drawRect

open fun drawRect(rect: Rect, paint: Paint): Unit

Draws a rectangle with the given Paint. Whether the rectangle is filled or stroked (or both) is controlled by Paint.style.

drawRect

fun drawRect(left: Float, top: Float, right: Float, bottom: Float, paint: Paint): Unit

Draws a rectangle with the given Paint. Whether the rectangle is filled or stroked (or both) is controlled by Paint.style.

Parameters
left: Float

The left bound of the rectangle

top: Float

The top bound of the rectangle

right: Float

The right bound of the rectangle

bottom: Float

The bottom bound of the rectangle

paint: Paint

Paint used to color the rectangle with a fill or stroke

drawRoundRect

fun drawRoundRect(
    left: Float,
    top: Float,
    right: Float,
    bottom: Float,
    radiusX: Float,
    radiusY: Float,
    paint: Paint
): Unit

Draws a rounded rectangle with the given Paint. Whether the rectangle is filled or stroked (or both) is controlled by Paint.style.

drawVertices

fun drawVertices(vertices: Vertices, blendMode: BlendMode, paint: Paint): Unit

enableZ

fun enableZ(): Unit

Enables Z support which defaults to disabled. This allows layers drawn with different elevations to be rearranged based on their elevation. It also enables rendering of shadows.

See also
disableZ

restore

fun restore(): Unit

Pops the current save stack, if there is anything to pop. Otherwise, does nothing.

Use save and saveLayer to push state onto the stack.

If the state was pushed with with saveLayer, then this call will also cause the new layer to be composited into the previous layer.

rotate

fun rotate(degrees: Float): Unit

Add a rotation (in degrees clockwise) to the current transform

Parameters
degrees: Float

to rotate clockwise

save

fun save(): Unit

Saves a copy of the current transform and clip on the save stack.

Call restore to pop the save stack.

See also:

  • saveLayer, which does the same thing but additionally also groups the commands done until the matching restore.

saveLayer

fun saveLayer(bounds: Rect, paint: Paint): Unit

Saves a copy of the current transform and clip on the save stack, and then creates a new group which subsequent calls will become a part of. When the save stack is later popped, the group will be flattened into a layer and have the given paint's Paint.colorFilter and Paint.blendMode applied.

This lets you create composite effects, for example making a group of drawing commands semi-transparent. Without using saveLayer, each part of the group would be painted individually, so where they overlap would be darker than where they do not. By using saveLayer to group them together, they can be drawn with an opaque color at first, and then the entire group can be made transparent using the saveLayer's paint.

Call restore to pop the save stack and apply the paint to the group.

Using saveLayer with clips

When a rectangular clip operation (from clipRect) is not axis-aligned with the raster buffer, or when the clip operation is not rectalinear (e.g. because it is a rounded rectangle clip created by clipPath, the edge of the clip needs to be anti-aliased.

If two draw calls overlap at the edge of such a clipped region, without using saveLayer, the first drawing will be anti-aliased with the background first, and then the second will be anti-aliased with the result of blending the first drawing and the background. On the other hand, if saveLayer is used immediately after establishing the clip, the second drawing will cover the first in the layer, and thus the second alone will be anti-aliased with the background when the layer is clipped and composited (when restore is called).

(Incidentally, rather than using clipPath with a rounded rectangle defined in a path to draw rounded rectangles like this, prefer the drawRoundRect method.

Performance considerations

Generally speaking, saveLayer is relatively expensive.

There are a several different hardware architectures for GPUs (graphics processing units, the hardware that handles graphics), but most of them involve batching commands and reordering them for performance. When layers are used, they cause the rendering pipeline to have to switch render target (from one layer to another). Render target switches can flush the GPU's command buffer, which typically means that optimizations that one could get with larger batching are lost. Render target switches also generate a lot of memory churn because the GPU needs to copy out the current frame buffer contents from the part of memory that's optimized for writing, and then needs to copy it back in once the previous render target (layer) is restored.

See also:

scale

fun scale(sx: Float, sy: Float = sx): Unit

Add an axis-aligned scale to the current transform, scaling by the first argument in the horizontal direction and the second in the vertical direction.

If sy is unspecified, sx will be used for the scale in both directions.

Parameters
sx: Float

The amount to scale in X

sy: Float = sx

The amount to scale in Y

skew

fun skew(sx: Float, sy: Float): Unit

Add an axis-aligned skew to the current transform, with the first argument being the horizontal skew in degrees clockwise around the origin, and the second argument being the vertical skew in degrees clockwise around the origin.

skewRad

open fun skewRad(sxRad: Float, syRad: Float): Unit

Add an axis-aligned skew to the current transform, with the first argument being the horizontal skew in radians clockwise around the origin, and the second argument being the vertical skew in radians clockwise around the origin.

translate

fun translate(dx: Float, dy: Float): Unit

Add a translation to the current transform, shifting the coordinate space horizontally by the first argument and vertically by the second argument.

Extension functions

fun Canvas.rotate(degrees: Float, pivotX: Float, pivotY: Float): Unit

Add a rotation (in degrees clockwise) to the current transform at the given pivot point. The pivot coordinate remains unchanged by the rotation transformation

Parameters
degrees: Float

to rotate clockwise

pivotX: Float

The x-coord for the pivot point

pivotY: Float

The y-coord for the pivot point

fun Canvas.rotateRad(radians: Float, pivotX: Float = 0.0f, pivotY: Float = 0.0f): Unit

Add a rotation (in radians clockwise) to the current transform at the given pivot point. The pivot coordinate remains unchanged by the rotation transformation

Parameters
pivotX: Float = 0.0f

The x-coord for the pivot point

pivotY: Float = 0.0f

The y-coord for the pivot point

fun Canvas.scale(sx: Float, sy: Float = sx, pivotX: Float, pivotY: Float): Unit

Add an axis-aligned scale to the current transform, scaling by the first argument in the horizontal direction and the second in the vertical direction at the given pivot coordinate. The pivot coordinate remains unchanged by the scale transformation.

If sy is unspecified, sx will be used for the scale in both directions.

Parameters
sx: Float

The amount to scale in X

sy: Float = sx

The amount to scale in Y

pivotX: Float

The x-coord for the pivot point

pivotY: Float

The y-coord for the pivot point

inline fun Canvas.withSave(block: () -> Unit): Unit

Saves a copy of the current transform and clip on the save stack and executes the provided lambda with the current transform applied. Once the lambda has been executed, the transformation is popped from the stack, undoing the transformation.

See also:

Canvas.saveLayer, which does the same thing but additionally also groups the commands

withSaveLayer

inline fun Canvas.withSaveLayer(bounds: Rect, paint: Paint, block: () -> Unit): Unit

Saves a copy of the current transform and clip on the save stack, and then creates a new group which subsequent calls will become a part of. When the lambda is executed and the save stack is popped, the group will be flattened into a layer and have the given paint's Paint.colorFilter and Paint.blendMode applied.

This lets you create composite effects, for example making a group of drawing commands semi-transparent. Without using Canvas.saveLayer, each part of the group would be painted individually, so where they overlap would be darker than where they do not. By using Canvas.saveLayer to group them together, they can be drawn with an opaque color at first, and then the entire group can be made transparent using the Canvas.saveLayer's paint.

Using saveLayer with clips

When a rectangular clip operation (from Canvas.clipRect) is not axis-aligned with the raster buffer, or when the clip operation is not rectalinear (e.g. because it is a rounded rectangle clip created by Canvas.clipPath), the edge of the clip needs to be anti-aliased.

If two draw calls overlap at the edge of such a clipped region, without using Canvas.saveLayer, the first drawing will be anti-aliased with the background first, and then the second will be anti-aliased with the result of blending the first drawing and the background. On the other hand, if Canvas.saveLayer is used immediately after establishing the clip, the second drawing will cover the first in the layer, and thus the second alone will be anti-aliased with the background when the layer is clipped and composited (when lambda is finished executing).

Performance considerations

Generally speaking, Canvas.saveLayer is relatively expensive.

There are a several different hardware architectures for GPUs (graphics processing units, the hardware that handles graphics), but most of them involve batching commands and reordering them for performance. When layers are used, they cause the rendering pipeline to have to switch render target (from one layer to another). Render target switches can flush the GPU's command buffer, which typically means that optimizations that one could get with larger batching are lost. Render target switches also generate a lot of memory churn because the GPU needs to copy out the current frame buffer contents from the part of memory that's optimized for writing, and then needs to copy it back in once the previous render target (layer) is restored.

See also:

drawOutline

fun Canvas.drawOutline(outline: Outline, paint: Paint): Unit

Draws the Outline on a Canvas.

Parameters
outline: Outline

the outline to draw.

paint: Paint

the paint used for the drawing.

Extension properties

nativeCanvas

val Canvas.nativeCanvasNativeCanvas

Return an instance of the native primitive that implements the Canvas interface