Canvas
public
class
Canvas
extends Object
| java.lang.Object | |
| ↳ | android.graphics.Canvas |
The Canvas class holds the "draw" calls. To draw something, you need 4 basic components: A Bitmap to hold the pixels, a Canvas to host the draw calls (writing into the bitmap), a drawing primitive (e.g. Rect, Path, text, Bitmap), and a paint (to describe the colors and styles for the drawing).
Developer Guides
For more information about how to use Canvas, read the Canvas and Drawables developer guide.
Summary
Nested classes | |
|---|---|
enum |
Canvas.EdgeType
Constant values used as parameters to |
enum |
Canvas.VertexMode
|
Constants | |
|---|---|
int |
ALL_SAVE_FLAG
Restore everything when restore() is called (standard save flags). |
int |
CLIP_SAVE_FLAG
This constant was deprecated
in API level O.
Use the flagless version of |
int |
CLIP_TO_LAYER_SAVE_FLAG
This constant was deprecated in API level O. This flag results in poor performance and the same effect can be achieved with a single layer or multiple draw commands with different clips. |
int |
FULL_COLOR_LAYER_SAVE_FLAG
This constant was deprecated
in API level O.
This flag is ignored. Use the flagless version of |
int |
HAS_ALPHA_LAYER_SAVE_FLAG
This constant was deprecated
in API level O.
This flag is ignored. Use the flagless version of |
int |
MATRIX_SAVE_FLAG
This constant was deprecated
in API level O.
Use the flagless version of |
Fields | |
|---|---|
protected
int |
mDensity
|
protected
long |
mNativeCanvasWrapper
Should only be assigned in constructors (or setBitmap if software canvas), freed by NativeAllocation. |
protected
int |
mScreenDensity
Used to determine when compatibility scaling is in effect. |
Public constructors | |
|---|---|
Canvas()
Construct an empty raster canvas. |
|
Canvas(Bitmap bitmap)
Construct a canvas with the specified bitmap to draw into. |
|
Public methods | |
|---|---|
boolean
|
clipOutPath(Path path)
Set the clip to the difference of the current clip and the specified path. |
boolean
|
clipOutRect(int left, int top, int right, int bottom)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipOutRect(Rect rect)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipOutRect(float left, float top, float right, float bottom)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipOutRect(RectF rect)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipPath(Path path, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than |
boolean
|
clipPath(Path path)
Intersect the current clip with the specified path. |
boolean
|
clipRect(float left, float top, float right, float bottom, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than |
boolean
|
clipRect(RectF rect)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipRect(Rect rect)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipRect(Rect rect, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than |
boolean
|
clipRect(int left, int top, int right, int bottom)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipRect(float left, float top, float right, float bottom)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates. |
boolean
|
clipRect(RectF rect, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than |
void
|
concat(Matrix matrix)
Preconcat the current matrix with the specified matrix. |
void
|
drawARGB(int a, int r, int g, int b)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified ARGB color, using srcover porterduff mode. |
void
|
drawArc(float left, float top, float right, float bottom, float startAngle, float sweepAngle, boolean useCenter, Paint paint)
Draw the specified arc, which will be scaled to fit inside the specified oval. |
void
|
drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter, Paint paint)
Draw the specified arc, which will be scaled to fit inside the specified oval. |
void
|
drawBitmap(Bitmap bitmap, Matrix matrix, Paint paint)
Draw the bitmap using the specified matrix. |
void
|
drawBitmap(int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, Paint paint)
This method was deprecated
in API level 21.
Usage with a |
void
|
drawBitmap(int[] colors, int offset, int stride, int x, int y, int width, int height, boolean hasAlpha, Paint paint)
This method was deprecated
in API level 21.
Usage with a |
void
|
drawBitmap(Bitmap bitmap, Rect src, Rect dst, Paint paint)
Draw the specified bitmap, scaling/translating automatically to fill the destination rectangle. |
void
|
drawBitmap(Bitmap bitmap, Rect src, RectF dst, Paint paint)
Draw the specified bitmap, scaling/translating automatically to fill the destination rectangle. |
void
|
drawBitmap(Bitmap bitmap, float left, float top, Paint paint)
Draw the specified bitmap, with its top/left corner at (x,y), using the specified paint, transformed by the current matrix. |
void
|
drawBitmapMesh(Bitmap bitmap, int meshWidth, int meshHeight, float[] verts, int vertOffset, int[] colors, int colorOffset, Paint paint)
Draw the bitmap through the mesh, where mesh vertices are evenly distributed across the bitmap. |
void
|
drawCircle(float cx, float cy, float radius, Paint paint)
Draw the specified circle using the specified paint. |
void
|
drawColor(int color)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color, using srcover porterduff mode. |
void
|
drawColor(int color, PorterDuff.Mode mode)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color and porter-duff xfermode. |
void
|
drawLine(float startX, float startY, float stopX, float stopY, Paint paint)
Draw a line segment with the specified start and stop x,y coordinates, using the specified paint. |
void
|
drawLines(float[] pts, int offset, int count, Paint paint)
Draw a series of lines. |
void
|
drawLines(float[] pts, Paint paint)
|
void
|
drawOval(float left, float top, float right, float bottom, Paint paint)
Draw the specified oval using the specified paint. |
void
|
drawOval(RectF oval, Paint paint)
Draw the specified oval using the specified paint. |
void
|
drawPaint(Paint paint)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified paint. |
void
|
drawPatch(NinePatch patch, RectF dst, Paint paint)
|
void
|
drawPatch(NinePatch patch, Rect dst, Paint paint)
|
void
|
drawPath(Path path, Paint paint)
Draw the specified path using the specified paint. |
void
|
drawPicture(Picture picture, RectF dst)
Draw the picture, stretched to fit into the dst rectangle. |
void
|
drawPicture(Picture picture)
Save the canvas state, draw the picture, and restore the canvas state. |
void
|
drawPicture(Picture picture, Rect dst)
Draw the picture, stretched to fit into the dst rectangle. |
void
|
drawPoint(float x, float y, Paint paint)
Helper for drawPoints() for drawing a single point. |
void
|
drawPoints(float[] pts, Paint paint)
Helper for drawPoints() that assumes you want to draw the entire array |
void
|
drawPoints(float[] pts, int offset, int count, Paint paint)
Draw a series of points. |
void
|
drawPosText(String text, float[] pos, Paint paint)
This method was deprecated in API level 16. This method does not support glyph composition and decomposition and should therefore not be used to render complex scripts. It also doesn't handle supplementary characters (eg emoji). |
void
|
drawPosText(char[] text, int index, int count, float[] pos, Paint paint)
This method was deprecated in API level 16. This method does not support glyph composition and decomposition and should therefore not be used to render complex scripts. It also doesn't handle supplementary characters (eg emoji). |
void
|
drawRGB(int r, int g, int b)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified RGB color, using srcover porterduff mode. |
void
|
drawRect(float left, float top, float right, float bottom, Paint paint)
Draw the specified Rect using the specified paint. |
void
|
drawRect(Rect r, Paint paint)
Draw the specified Rect using the specified Paint. |
void
|
drawRect(RectF rect, Paint paint)
Draw the specified Rect using the specified paint. |
void
|
drawRoundRect(RectF rect, float rx, float ry, Paint paint)
Draw the specified round-rect using the specified paint. |
void
|
drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, Paint paint)
Draw the specified round-rect using the specified paint. |
void
|
drawText(CharSequence text, int start, int end, float x, float y, Paint paint)
Draw the specified range of text, specified by start/end, with its origin at (x,y), in the specified Paint. |
void
|
drawText(String text, float x, float y, Paint paint)
Draw the text, with origin at (x,y), using the specified paint. |
void
|
drawText(char[] text, int index, int count, float x, float y, Paint paint)
Draw the text, with origin at (x,y), using the specified paint. |
void
|
drawText(String text, int start, int end, float x, float y, Paint paint)
Draw the text, with origin at (x,y), using the specified paint. |
void
|
drawTextOnPath(String text, Path path, float hOffset, float vOffset, Paint paint)
Draw the text, with origin at (x,y), using the specified paint, along the specified path. |
void
|
drawTextOnPath(char[] text, int index, int count, Path path, float hOffset, float vOffset, Paint paint)
Draw the text, with origin at (x,y), using the specified paint, along the specified path. |
void
|
drawTextRun(char[] text, int index, int count, int contextIndex, int contextCount, float x, float y, boolean isRtl, Paint paint)
Draw a run of text, all in a single direction, with optional context for complex text shaping. |
void
|
drawTextRun(CharSequence text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, Paint paint)
Draw a run of text, all in a single direction, with optional context for complex text shaping. |
void
|
drawVertices(Canvas.VertexMode mode, int vertexCount, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, Paint paint)
Draw the array of vertices, interpreted as triangles (based on mode). |
boolean
|
getClipBounds(Rect bounds)
Return the bounds of the current clip (in local coordinates) in the bounds parameter, and return true if it is non-empty. |
final
Rect
|
getClipBounds()
Retrieve the bounds of the current clip (in local coordinates). |
int
|
getDensity()
Returns the target density of the canvas. |
DrawFilter
|
getDrawFilter()
|
int
|
getHeight()
Returns the height of the current drawing layer |
void
|
getMatrix(Matrix ctm)
This method was deprecated
in API level 16.
|
final
Matrix
|
getMatrix()
This method was deprecated
in API level 16.
|
int
|
getMaximumBitmapHeight()
Returns the maximum allowed height for bitmaps drawn with this canvas. |
int
|
getMaximumBitmapWidth()
Returns the maximum allowed width for bitmaps drawn with this canvas. |
int
|
getSaveCount()
Returns the number of matrix/clip states on the Canvas' private stack. |
int
|
getWidth()
Returns the width of the current drawing layer |
boolean
|
isHardwareAccelerated()
Indicates whether this Canvas uses hardware acceleration. |
boolean
|
isOpaque()
Return true if the device that the current layer draws into is opaque (i.e. |
boolean
|
quickReject(float left, float top, float right, float bottom, Canvas.EdgeType type)
Return true if the specified rectangle, after being transformed by the current matrix, would lie completely outside of the current clip. |
boolean
|
quickReject(RectF rect, Canvas.EdgeType type)
Return true if the specified rectangle, after being transformed by the current matrix, would lie completely outside of the current clip. |
boolean
|
quickReject(Path path, Canvas.EdgeType type)
Return true if the specified path, after being transformed by the current matrix, would lie completely outside of the current clip. |
void
|
restore()
This call balances a previous call to save(), and is used to remove all modifications to the matrix/clip state since the last save call. |
void
|
restoreToCount(int saveCount)
Efficient way to pop any calls to save() that happened after the save count reached saveCount. |
void
|
rotate(float degrees)
Preconcat the current matrix with the specified rotation. |
final
void
|
rotate(float degrees, float px, float py)
Preconcat the current matrix with the specified rotation. |
int
|
save(int saveFlags)
This method was deprecated
in API level O.
Use |
int
|
save()
Saves the current matrix and clip onto a private stack. |
int
|
saveLayer(RectF bounds, Paint paint, int saveFlags)
This method was deprecated
in API level O.
Use |
int
|
saveLayer(RectF bounds, Paint paint)
This behaves the same as save(), but in addition it allocates and redirects drawing to an offscreen rendering target. |
int
|
saveLayer(float left, float top, float right, float bottom, Paint paint)
Convenience for |
int
|
saveLayer(float left, float top, float right, float bottom, Paint paint, int saveFlags)
This method was deprecated
in API level O.
Use |
int
|
saveLayerAlpha(float left, float top, float right, float bottom, int alpha, int saveFlags)
This method was deprecated
in API level O.
Use |
int
|
saveLayerAlpha(RectF bounds, int alpha)
Convenience for |
int
|
saveLayerAlpha(RectF bounds, int alpha, int saveFlags)
This method was deprecated
in API level O.
Use |
int
|
saveLayerAlpha(float left, float top, float right, float bottom, int alpha)
Convenience for |
final
void
|
scale(float sx, float sy, float px, float py)
Preconcat the current matrix with the specified scale. |
void
|
scale(float sx, float sy)
Preconcat the current matrix with the specified scale. |
void
|
setBitmap(Bitmap bitmap)
Specify a bitmap for the canvas to draw into. |
void
|
setDensity(int density)
Specifies the density for this Canvas' backing bitmap. |
void
|
setDrawFilter(DrawFilter filter)
|
void
|
setMatrix(Matrix matrix)
Completely replace the current matrix with the specified matrix. |
void
|
skew(float sx, float sy)
Preconcat the current matrix with the specified skew. |
void
|
translate(float dx, float dy)
Preconcat the current matrix with the specified translation |
Protected methods | |
|---|---|
static
final
void
|
checkRange(int length, int offset, int count)
|
void
|
throwIfCannotDraw(Bitmap bitmap)
|
Inherited methods | |
|---|---|
java.lang.Object
| |
Constants
ALL_SAVE_FLAG
int ALL_SAVE_FLAG
Restore everything when restore() is called (standard save flags).
Note: for performance reasons, it is
strongly recommended to pass this - the complete set of flags - to any
call to saveLayer() and saveLayerAlpha()
variants.
Note: all methods that accept this flag have flagless versions that are equivalent to passing this flag.
Constant Value: 31 (0x0000001f)
CLIP_SAVE_FLAG
int CLIP_SAVE_FLAG
This constant was deprecated
in API level O.
Use the flagless version of save(), saveLayer(RectF, Paint) or
saveLayerAlpha(RectF, int). For saveLayer() calls the clip
was always restored for Hardware accelerated
canvases and as of API level Build.VERSION_CODES.O that is the default
behavior for all canvas types.
Restore the current clip when restore() is called.
Constant Value: 2 (0x00000002)
CLIP_TO_LAYER_SAVE_FLAG
int CLIP_TO_LAYER_SAVE_FLAG
This constant was deprecated
in API level O.
This flag results in poor performance and the same effect can be achieved with
a single layer or multiple draw commands with different clips.
Clip drawing to the bounds of the offscreen layer, omit at your own peril.
Note: it is strongly recommended to not
omit this flag for any call to saveLayer() and
saveLayerAlpha() variants. Not passing this flag generally
triggers extremely poor performance with hardware accelerated rendering.
Constant Value: 16 (0x00000010)
FULL_COLOR_LAYER_SAVE_FLAG
int FULL_COLOR_LAYER_SAVE_FLAG
This constant was deprecated
in API level O.
This flag is ignored. Use the flagless version of saveLayer(RectF, Paint)
saveLayerAlpha(RectF, int).
The layer requires full 8-bit precision for each color channel.
Constant Value: 8 (0x00000008)
HAS_ALPHA_LAYER_SAVE_FLAG
int HAS_ALPHA_LAYER_SAVE_FLAG
This constant was deprecated
in API level O.
This flag is ignored. Use the flagless version of saveLayer(RectF, Paint)
saveLayerAlpha(RectF, int).
The layer requires a per-pixel alpha channel.
Constant Value: 4 (0x00000004)
MATRIX_SAVE_FLAG
int MATRIX_SAVE_FLAG
This constant was deprecated
in API level O.
Use the flagless version of save(), saveLayer(RectF, Paint) or
saveLayerAlpha(RectF, int). For saveLayer() calls the matrix
was always restored for Hardware accelerated
canvases and as of API level Build.VERSION_CODES.O that is the default
behavior for all canvas types.
Restore the current matrix when restore() is called.
Constant Value: 1 (0x00000001)
Fields
mDensity
int mDensity
mNativeCanvasWrapper
long mNativeCanvasWrapper
Should only be assigned in constructors (or setBitmap if software canvas), freed by NativeAllocation.
mScreenDensity
int mScreenDensity
Used to determine when compatibility scaling is in effect.
Public constructors
Canvas
Canvas ()
Construct an empty raster canvas. Use setBitmap() to specify a bitmap to
draw into. The initial target density is DENSITY_NONE;
this will typically be replaced when a target bitmap is set for the
canvas.
Canvas
Canvas (Bitmap bitmap)
Construct a canvas with the specified bitmap to draw into. The bitmap must be mutable.
The initial target density of the canvas is the same as the given bitmap's density.
| Parameters | |
|---|---|
bitmap |
Bitmap: Specifies a mutable bitmap for the canvas to draw into.
This value must never be |
Public methods
clipOutPath
boolean clipOutPath (Path path)
Set the clip to the difference of the current clip and the specified path.
| Parameters | |
|---|---|
path |
Path: The path used in the difference operationThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipOutRect
boolean clipOutRect (int left,
int top,
int right,
int bottom)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
left |
int: The left side of the rectangle used in the difference operation |
top |
int: The top of the rectangle used in the difference operation |
right |
int: The right side of the rectangle used in the difference operation |
bottom |
int: The bottom of the rectangle used in the difference operation |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipOutRect
boolean clipOutRect (Rect rect)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
rect |
Rect: The rectangle to perform a difference op with the current clip.This value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipOutRect
boolean clipOutRect (float left,
float top,
float right,
float bottom)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
left |
float: The left side of the rectangle used in the difference operation |
top |
float: The top of the rectangle used in the difference operation |
right |
float: The right side of the rectangle used in the difference operation |
bottom |
float: The bottom of the rectangle used in the difference operation |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipOutRect
boolean clipOutRect (RectF rect)
Set the clip to the difference of the current clip and the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
rect |
RectF: The rectangle to perform a difference op with the current clip.This value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipPath
boolean clipPath (Path path, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than INTERSECT and
DIFFERENCE have the ability to expand the clip. The canvas clipping APIs
are intended to only expand the clip as a result of a restore operation. This enables a view
parent to clip a canvas to clearly define the maximal drawing area of its children. The
recommended alternative calls are clipPath(Path) and
clipOutPath(Path);
Modify the current clip with the specified path.
| Parameters | |
|---|---|
path |
Path: The path to operate on the current clipThis value must never be |
op |
Region.Op: How the clip is modifiedThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting is non-empty |
clipPath
boolean clipPath (Path path)
Intersect the current clip with the specified path.
| Parameters | |
|---|---|
path |
Path: The path to intersect with the current clipThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (float left,
float top,
float right,
float bottom,
Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than INTERSECT and
DIFFERENCE have the ability to expand the clip. The canvas clipping APIs
are intended to only expand the clip as a result of a restore operation. This enables a view
parent to clip a canvas to clearly define the maximal drawing area of its children. The
recommended alternative calls are clipRect(float, float, float, float) and
clipOutRect(float, float, float, float);
Modify the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
left |
float: The left side of the rectangle to intersect with the
current clip |
top |
float: The top of the rectangle to intersect with the current
clip |
right |
float: The right side of the rectangle to intersect with the
current clip |
bottom |
float: The bottom of the rectangle to intersect with the current
clip |
op |
Region.Op: How the clip is modifiedThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (RectF rect)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
rect |
RectF: The rectangle to intersect with the current clip.This value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (Rect rect)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
rect |
Rect: The rectangle to intersect with the current clip.This value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (Rect rect, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than INTERSECT and
DIFFERENCE have the ability to expand the clip. The canvas clipping APIs
are intended to only expand the clip as a result of a restore operation. This enables a view
parent to clip a canvas to clearly define the maximal drawing area of its children. The
recommended alternative calls are clipRect(Rect) and clipOutRect(Rect);
Modify the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
rect |
Rect: The rectangle to intersect with the current clip.This value must never be |
op |
Region.Op: How the clip is modifiedThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (int left,
int top,
int right,
int bottom)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
left |
int: The left side of the rectangle to intersect with the
current clip |
top |
int: The top of the rectangle to intersect with the current clip |
right |
int: The right side of the rectangle to intersect with the
current clip |
bottom |
int: The bottom of the rectangle to intersect with the current
clip |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (float left,
float top,
float right,
float bottom)
Intersect the current clip with the specified rectangle, which is expressed in local coordinates.
| Parameters | |
|---|---|
left |
float: The left side of the rectangle to intersect with the
current clip |
top |
float: The top of the rectangle to intersect with the current clip |
right |
float: The right side of the rectangle to intersect with the
current clip |
bottom |
float: The bottom of the rectangle to intersect with the current
clip |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
clipRect
boolean clipRect (RectF rect, Region.Op op)
This method was deprecated
in API level O.
Region.Op values other than INTERSECT and
DIFFERENCE have the ability to expand the clip. The canvas clipping APIs
are intended to only expand the clip as a result of a restore operation. This enables a view
parent to clip a canvas to clearly define the maximal drawing area of its children. The
recommended alternative calls are clipRect(RectF) and clipOutRect(RectF);
Modify the current clip with the specified rectangle.
| Parameters | |
|---|---|
rect |
RectF: The rect to intersect with the current clipThis value must never be |
op |
Region.Op: How the clip is modifiedThis value must never be |
| Returns | |
|---|---|
boolean |
true if the resulting clip is non-empty |
concat
void concat (Matrix matrix)
Preconcat the current matrix with the specified matrix. If the specified matrix is null, this method does nothing.
| Parameters | |
|---|---|
matrix |
Matrix: The matrix to preconcatenate with the current matrix
This value may be |
drawARGB
void drawARGB (int a,
int r,
int g,
int b)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified ARGB color, using srcover porterduff mode.
| Parameters | |
|---|---|
a |
int: alpha component (0..255) of the color to draw onto the canvas |
r |
int: red component (0..255) of the color to draw onto the canvas |
g |
int: green component (0..255) of the color to draw onto the canvas |
b |
int: blue component (0..255) of the color to draw onto the canvas
|
drawArc
void drawArc (float left,
float top,
float right,
float bottom,
float startAngle,
float sweepAngle,
boolean useCenter,
Paint paint)
Draw the specified arc, which will be scaled to fit inside the specified oval.
If the start angle is negative or >= 360, the start angle is treated as start angle modulo 360.
If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs slightly from SkPath::arcTo, which treats the sweep angle modulo 360. If the sweep angle is negative, the sweep angle is treated as sweep angle modulo 360
The arc is drawn clockwise. An angle of 0 degrees correspond to the geometric angle of 0 degrees (3 o'clock on a watch.)
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
startAngle |
float: Starting angle (in degrees) where the arc begins |
sweepAngle |
float: Sweep angle (in degrees) measured clockwise |
useCenter |
boolean: If true, include the center of the oval in the arc, and close it if it is
being stroked. This will draw a wedge |
paint |
Paint: The paint used to draw the arc
This value must never be |
drawArc
void drawArc (RectF oval, float startAngle, float sweepAngle, boolean useCenter, Paint paint)
Draw the specified arc, which will be scaled to fit inside the specified oval.
If the start angle is negative or >= 360, the start angle is treated as start angle modulo 360.
If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs slightly from SkPath::arcTo, which treats the sweep angle modulo 360. If the sweep angle is negative, the sweep angle is treated as sweep angle modulo 360
The arc is drawn clockwise. An angle of 0 degrees correspond to the geometric angle of 0 degrees (3 o'clock on a watch.)
| Parameters | |
|---|---|
oval |
RectF: The bounds of oval used to define the shape and size of the arcThis value must never be |
startAngle |
float: Starting angle (in degrees) where the arc begins |
sweepAngle |
float: Sweep angle (in degrees) measured clockwise |
useCenter |
boolean: If true, include the center of the oval in the arc, and close it if it is
being stroked. This will draw a wedge |
paint |
Paint: The paint used to draw the arc
This value must never be |
drawBitmap
void drawBitmap (Bitmap bitmap, Matrix matrix, Paint paint)
Draw the bitmap using the specified matrix.
| Parameters | |
|---|---|
bitmap |
Bitmap: The bitmap to drawThis value must never be |
matrix |
Matrix: The matrix used to transform the bitmap when it is drawnThis value must never be |
paint |
Paint: May be null. The paint used to draw the bitmap
This value may be |
drawBitmap
void drawBitmap (int[] colors,
int offset,
int stride,
float x,
float y,
int width,
int height,
boolean hasAlpha,
Paint paint)
This method was deprecated
in API level 21.
Usage with a hardware accelerated canvas
requires an internal copy of color buffer contents every time this method is
called. Using a Bitmap avoids this copy, and allows the application to more
explicitly control the lifetime and copies of pixel data.
Treat the specified array of colors as a bitmap, and draw it. This gives the same result as first creating a bitmap from the array, and then drawing it, but this method avoids explicitly creating a bitmap object which can be more efficient if the colors are changing often.
| Parameters | |
|---|---|
colors |
int: Array of colors representing the pixels of the bitmapThis value must never be |
offset |
int: Offset into the array of colors for the first pixel |
stride |
int: The number of colors in the array between rows (must be >= width or <= -width). |
x |
float: The X coordinate for where to draw the bitmap |
y |
float: The Y coordinate for where to draw the bitmap |
width |
int: The width of the bitmap |
height |
int: The height of the bitmap |
hasAlpha |
boolean: True if the alpha channel of the colors contains valid values. If false, the
alpha byte is ignored (assumed to be 0xFF for every pixel). |
paint |
Paint: May be null. The paint used to draw the bitmapThis value may be |
drawBitmap
void drawBitmap (int[] colors,
int offset,
int stride,
int x,
int y,
int width,
int height,
boolean hasAlpha,
Paint paint)
This method was deprecated
in API level 21.
Usage with a hardware accelerated canvas
requires an internal copy of color buffer contents every time this method is
called. Using a Bitmap avoids this copy, and allows the application to more
explicitly control the lifetime and copies of pixel data.
Legacy version of drawBitmap(int[] colors, ...) that took ints for x,y
| Parameters | |
|---|---|
colors |
int This value must never be |
offset |
int |
stride |
int |
x |
int |
y |
int |
width |
int |
height |
int |
hasAlpha |
boolean |
paint |
Paint This value may be |
drawBitmap
void drawBitmap (Bitmap bitmap, Rect src, Rect dst, Paint paint)
Draw the specified bitmap, scaling/translating automatically to fill the destination rectangle. If the source rectangle is not null, it specifies the subset of the bitmap to draw.
Note: if the paint contains a maskfilter that generates a mask which extends beyond the bitmap's original width/height (e.g. BlurMaskFilter), then the bitmap will be drawn as if it were in a Shader with CLAMP mode. Thus the color outside of the original width/height will be the edge color replicated.
This function ignores the density associated with the bitmap. This is because the source and destination rectangle coordinate spaces are in their respective densities, so must already have the appropriate scaling factor applied.
| Parameters | |
|---|---|
bitmap |
Bitmap: The bitmap to be drawnThis value must never be |
src |
Rect: May be null. The subset of the bitmap to be drawnThis value may be |
dst |
Rect: The rectangle that the bitmap will be scaled/translated to fit intoThis value must never be |
paint |
Paint: May be null. The paint used to draw the bitmap
This value may be |
drawBitmap
void drawBitmap (Bitmap bitmap, Rect src, RectF dst, Paint paint)
Draw the specified bitmap, scaling/translating automatically to fill the destination rectangle. If the source rectangle is not null, it specifies the subset of the bitmap to draw.
Note: if the paint contains a maskfilter that generates a mask which extends beyond the bitmap's original width/height (e.g. BlurMaskFilter), then the bitmap will be drawn as if it were in a Shader with CLAMP mode. Thus the color outside of the original width/height will be the edge color replicated.
This function ignores the density associated with the bitmap. This is because the source and destination rectangle coordinate spaces are in their respective densities, so must already have the appropriate scaling factor applied.
| Parameters | |
|---|---|
bitmap |
Bitmap: The bitmap to be drawnThis value must never be |
src |
Rect: May be null. The subset of the bitmap to be drawnThis value may be |
dst |
RectF: The rectangle that the bitmap will be scaled/translated to fit intoThis value must never be |
paint |
Paint: May be null. The paint used to draw the bitmap
This value may be |
drawBitmap
void drawBitmap (Bitmap bitmap, float left, float top, Paint paint)
Draw the specified bitmap, with its top/left corner at (x,y), using the specified paint, transformed by the current matrix.
Note: if the paint contains a maskfilter that generates a mask which extends beyond the bitmap's original width/height (e.g. BlurMaskFilter), then the bitmap will be drawn as if it were in a Shader with CLAMP mode. Thus the color outside of the original width/height will be the edge color replicated.
If the bitmap and canvas have different densities, this function will take care of automatically scaling the bitmap to draw at the same density as the canvas.
| Parameters | |
|---|---|
bitmap |
Bitmap: The bitmap to be drawnThis value must never be |
left |
float: The position of the left side of the bitmap being drawn |
top |
float: The position of the top side of the bitmap being drawn |
paint |
Paint: The paint used to draw the bitmap (may be null)
This value may be |
drawBitmapMesh
void drawBitmapMesh (Bitmap bitmap, int meshWidth, int meshHeight, float[] verts, int vertOffset, int[] colors, int colorOffset, Paint paint)
Draw the bitmap through the mesh, where mesh vertices are evenly distributed across the bitmap. There are meshWidth+1 vertices across, and meshHeight+1 vertices down. The verts array is accessed in row-major order, so that the first meshWidth+1 vertices are distributed across the top of the bitmap from left to right. A more general version of this method is drawVertices().
| Parameters | |
|---|---|
bitmap |
Bitmap: The bitmap to draw using the meshThis value must never be |
meshWidth |
int: The number of columns in the mesh. Nothing is drawn if this is 0 |
meshHeight |
int: The number of rows in the mesh. Nothing is drawn if this is 0 |
verts |
float: Array of x,y pairs, specifying where the mesh should be drawn. There must be at
least (meshWidth+1) * (meshHeight+1) * 2 + vertOffset values in the arrayThis value must never be |
vertOffset |
int: Number of verts elements to skip before drawing |
colors |
int: May be null. Specifies a color at each vertex, which is interpolated across the
cell, and whose values are multiplied by the corresponding bitmap colors. If not
null, there must be at least (meshWidth+1) * (meshHeight+1) + colorOffset values
in the array.This value may be |
colorOffset |
int: Number of color elements to skip before drawing |
paint |
Paint: May be null. The paint used to draw the bitmap
This value may be |
drawCircle
void drawCircle (float cx,
float cy,
float radius,
Paint paint)
Draw the specified circle using the specified paint. If radius is <= 0, then nothing will be drawn. The circle will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
cx |
float: The x-coordinate of the center of the cirle to be drawn |
cy |
float: The y-coordinate of the center of the cirle to be drawn |
radius |
float: The radius of the cirle to be drawn |
paint |
Paint: The paint used to draw the circle
This value must never be |
drawColor
void drawColor (int color)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color, using srcover porterduff mode.
| Parameters | |
|---|---|
color |
int: the color to draw onto the canvas
|
drawColor
void drawColor (int color,
PorterDuff.Mode mode)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color and porter-duff xfermode.
| Parameters | |
|---|---|
color |
int: the color to draw with |
mode |
PorterDuff.Mode: the porter-duff mode to apply to the color
This value must never be |
drawLine
void drawLine (float startX,
float startY,
float stopX,
float stopY,
Paint paint)
Draw a line segment with the specified start and stop x,y coordinates, using the specified paint.
Note that since a line is always "framed", the Style is ignored in the paint.
Degenerate lines (length is 0) will not be drawn.
| Parameters | |
|---|---|
startX |
float: The x-coordinate of the start point of the line |
startY |
float: The y-coordinate of the start point of the line |
stopX |
float |
stopY |
float |
paint |
Paint: The paint used to draw the line
This value must never be |
drawLines
void drawLines (float[] pts,
int offset,
int count,
Paint paint)
Draw a series of lines. Each line is taken from 4 consecutive values in the pts array. Thus to draw 1 line, the array must contain at least 4 values. This is logically the same as drawing the array as follows: drawLine(pts[0], pts[1], pts[2], pts[3]) followed by drawLine(pts[4], pts[5], pts[6], pts[7]) and so on.
| Parameters | |
|---|---|
pts |
float: Array of points to draw [x0 y0 x1 y1 x2 y2 ...]This value must never be |
offset |
int: Number of values in the array to skip before drawing. |
count |
int: The number of values in the array to process, after skipping "offset" of them.
Since each line uses 4 values, the number of "lines" that are drawn is really
(count >> 2). |
paint |
Paint: The paint used to draw the points
This value must never be |
drawLines
void drawLines (float[] pts,
Paint paint)
| Parameters | |
|---|---|
pts |
float This value must never be |
paint |
Paint This value must never be |
drawOval
void drawOval (float left,
float top,
float right,
float bottom,
Paint paint)
Draw the specified oval using the specified paint. The oval will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
paint |
Paint This value must never be |
drawOval
void drawOval (RectF oval, Paint paint)
Draw the specified oval using the specified paint. The oval will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
oval |
RectF: The rectangle bounds of the oval to be drawn
This value must never be |
paint |
Paint This value must never be |
drawPaint
void drawPaint (Paint paint)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified paint. This is equivalent (but faster) to drawing an infinitely large rectangle with the specified paint.
| Parameters | |
|---|---|
paint |
Paint: The paint used to draw onto the canvas
This value must never be |
drawPatch
void drawPatch (NinePatch patch, RectF dst, Paint paint)
| Parameters | |
|---|---|
patch |
NinePatch This value must never be |
dst |
RectF This value must never be |
paint |
Paint This value may be |
drawPatch
void drawPatch (NinePatch patch, Rect dst, Paint paint)
| Parameters | |
|---|---|
patch |
NinePatch This value must never be |
dst |
Rect This value must never be |
paint |
Paint This value may be |
drawPath
void drawPath (Path path, Paint paint)
Draw the specified path using the specified paint. The path will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
path |
Path: The path to be drawnThis value must never be |
paint |
Paint: The paint used to draw the path
This value must never be |
drawPicture
void drawPicture (Picture picture, RectF dst)
Draw the picture, stretched to fit into the dst rectangle.
| Parameters | |
|---|---|
picture |
Picture This value must never be |
dst |
RectF This value must never be |
drawPicture
void drawPicture (Picture picture)
Save the canvas state, draw the picture, and restore the canvas state. This differs from picture.draw(canvas), which does not perform any save/restore.
Note: This forces the picture to internally call
endRecording() in order to prepare for playback.
| Parameters | |
|---|---|
picture |
Picture: The picture to be drawn
This value must never be |
drawPicture
void drawPicture (Picture picture, Rect dst)
Draw the picture, stretched to fit into the dst rectangle.
| Parameters | |
|---|---|
picture |
Picture This value must never be |
dst |
Rect This value must never be |
drawPoint
void drawPoint (float x,
float y,
Paint paint)
Helper for drawPoints() for drawing a single point.
| Parameters | |
|---|---|
x |
float |
y |
float |
paint |
Paint This value must never be |
drawPoints
void drawPoints (float[] pts,
Paint paint)
Helper for drawPoints() that assumes you want to draw the entire array
| Parameters | |
|---|---|
pts |
float This value must never be |
paint |
Paint This value must never be |
drawPoints
void drawPoints (float[] pts,
int offset,
int count,
Paint paint)
Draw a series of points. Each point is centered at the coordinate specified by pts[], and its diameter is specified by the paint's stroke width (as transformed by the canvas' CTM), with special treatment for a stroke width of 0, which always draws exactly 1 pixel (or at most 4 if antialiasing is enabled). The shape of the point is controlled by the paint's Cap type. The shape is a square, unless the cap type is Round, in which case the shape is a circle.
| Parameters | |
|---|---|
pts |
float: Array of points to draw [x0 y0 x1 y1 x2 y2 ...] |
offset |
int: Number of values to skip before starting to draw. |
count |
int: The number of values to process, after skipping offset of them. Since one point
uses two values, the number of "points" that are drawn is really (count >> 1). |
paint |
Paint: The paint used to draw the points
This value must never be |
drawPosText
void drawPosText (String text, float[] pos, Paint paint)
This method was deprecated
in API level 16.
This method does not support glyph composition and decomposition and should
therefore not be used to render complex scripts. It also doesn't handle
supplementary characters (eg emoji).
Draw the text in the array, with each character's origin specified by the pos array.
| Parameters | |
|---|---|
text |
String: The text to be drawnThis value must never be |
pos |
float: Array of [x,y] positions, used to position each characterThis value must never be |
paint |
Paint: The paint used for the text (e.g. color, size, style)This value must never be |
drawPosText
void drawPosText (char[] text,
int index,
int count,
float[] pos,
Paint paint)
This method was deprecated
in API level 16.
This method does not support glyph composition and decomposition and should
therefore not be used to render complex scripts. It also doesn't handle
supplementary characters (eg emoji).
Draw the text in the array, with each character's origin specified by the pos array.
| Parameters | |
|---|---|
text |
char: The text to be drawnThis value must never be |
index |
int: The index of the first character to draw |
count |
int: The number of characters to draw, starting from index. |
pos |
float: Array of [x,y] positions, used to position each characterThis value must never be |
paint |
Paint: The paint used for the text (e.g. color, size, style)This value must never be |
drawRGB
void drawRGB (int r,
int g,
int b)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified RGB color, using srcover porterduff mode.
| Parameters | |
|---|---|
r |
int: red component (0..255) of the color to draw onto the canvas |
g |
int: green component (0..255) of the color to draw onto the canvas |
b |
int: blue component (0..255) of the color to draw onto the canvas
|
drawRect
void drawRect (float left,
float top,
float right,
float bottom,
Paint paint)
Draw the specified Rect using the specified paint. The rectangle will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
left |
float: The left side of the rectangle to be drawn |
top |
float: The top side of the rectangle to be drawn |
right |
float: The right side of the rectangle to be drawn |
bottom |
float: The bottom side of the rectangle to be drawn |
paint |
Paint: The paint used to draw the rect
This value must never be |
drawRect
void drawRect (Rect r, Paint paint)
Draw the specified Rect using the specified Paint. The rectangle will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
r |
Rect: The rectangle to be drawn.This value must never be |
paint |
Paint: The paint used to draw the rectangle
This value must never be |
drawRect
void drawRect (RectF rect, Paint paint)
Draw the specified Rect using the specified paint. The rectangle will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
rect |
RectF: The rect to be drawnThis value must never be |
paint |
Paint: The paint used to draw the rect
This value must never be |
drawRoundRect
void drawRoundRect (RectF rect, float rx, float ry, Paint paint)
Draw the specified round-rect using the specified paint. The roundrect will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
rect |
RectF: The rectangular bounds of the roundRect to be drawnThis value must never be |
rx |
float: The x-radius of the oval used to round the corners |
ry |
float: The y-radius of the oval used to round the corners |
paint |
Paint: The paint used to draw the roundRect
This value must never be |
drawRoundRect
void drawRoundRect (float left,
float top,
float right,
float bottom,
float rx,
float ry,
Paint paint)
Draw the specified round-rect using the specified paint. The roundrect will be filled or framed based on the Style in the paint.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
rx |
float: The x-radius of the oval used to round the corners |
ry |
float: The y-radius of the oval used to round the corners |
paint |
Paint: The paint used to draw the roundRect
This value must never be |
drawText
void drawText (CharSequence text, int start, int end, float x, float y, Paint paint)
Draw the specified range of text, specified by start/end, with its origin at (x,y), in the specified Paint. The origin is interpreted based on the Align setting in the Paint.
| Parameters | |
|---|---|
text |
CharSequence: The text to be drawnThis value must never be |
start |
int: The index of the first character in text to draw |
end |
int: (end - 1) is the index of the last character in text to draw |
x |
float: The x-coordinate of origin for where to draw the text |
y |
float: The y-coordinate of origin for where to draw the text |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawText
void drawText (String text, float x, float y, Paint paint)
Draw the text, with origin at (x,y), using the specified paint. The origin is interpreted based on the Align setting in the paint.
| Parameters | |
|---|---|
text |
String: The text to be drawnThis value must never be |
x |
float: The x-coordinate of the origin of the text being drawn |
y |
float: The y-coordinate of the baseline of the text being drawn |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawText
void drawText (char[] text,
int index,
int count,
float x,
float y,
Paint paint)
Draw the text, with origin at (x,y), using the specified paint. The origin is interpreted based on the Align setting in the paint.
| Parameters | |
|---|---|
text |
char: The text to be drawnThis value must never be |
index |
int |
count |
int |
x |
float: The x-coordinate of the origin of the text being drawn |
y |
float: The y-coordinate of the baseline of the text being drawn |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawText
void drawText (String text, int start, int end, float x, float y, Paint paint)
Draw the text, with origin at (x,y), using the specified paint. The origin is interpreted based on the Align setting in the paint.
| Parameters | |
|---|---|
text |
String: The text to be drawnThis value must never be |
start |
int: The index of the first character in text to draw |
end |
int: (end - 1) is the index of the last character in text to draw |
x |
float: The x-coordinate of the origin of the text being drawn |
y |
float: The y-coordinate of the baseline of the text being drawn |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawTextOnPath
void drawTextOnPath (String text, Path path, float hOffset, float vOffset, Paint paint)
Draw the text, with origin at (x,y), using the specified paint, along the specified path. The paint's Align setting determins where along the path to start the text.
| Parameters | |
|---|---|
text |
String: The text to be drawnThis value must never be |
path |
Path: The path the text should follow for its baselineThis value must never be |
hOffset |
float: The distance along the path to add to the text's starting position |
vOffset |
float: The distance above(-) or below(+) the path to position the text |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawTextOnPath
void drawTextOnPath (char[] text,
int index,
int count,
Path path,
float hOffset,
float vOffset,
Paint paint)
Draw the text, with origin at (x,y), using the specified paint, along the specified path. The paint's Align setting determins where along the path to start the text.
| Parameters | |
|---|---|
text |
char: The text to be drawnThis value must never be |
index |
int |
count |
int |
path |
Path: The path the text should follow for its baselineThis value must never be |
hOffset |
float: The distance along the path to add to the text's starting position |
vOffset |
float: The distance above(-) or below(+) the path to position the text |
paint |
Paint: The paint used for the text (e.g. color, size, style)
This value must never be |
drawTextRun
void drawTextRun (char[] text,
int index,
int count,
int contextIndex,
int contextCount,
float x,
float y,
boolean isRtl,
Paint paint)
Draw a run of text, all in a single direction, with optional context for complex text shaping.
See drawTextRun(CharSequence, int, int, int, int, float, float, boolean, Paint) for
more details. This method uses a character array rather than CharSequence to represent the
string. Also, to be consistent with the pattern established in drawText(char[], int, int, float, float, Paint), in this
method count and contextCount are used rather than offsets of the end
position; count = end - start, contextCount = contextEnd -
contextStart.
| Parameters | |
|---|---|
text |
char: the text to renderThis value must never be |
index |
int: the start of the text to render |
count |
int: the count of chars to render |
contextIndex |
int: the start of the context for shaping. Must be no greater than index. |
contextCount |
int: the number of characters in the context for shaping. contexIndex +
contextCount must be no less than index + count. |
x |
float: the x position at which to draw the text |
y |
float: the y position at which to draw the text |
isRtl |
boolean: whether the run is in RTL direction |
paint |
Paint: the paint
This value must never be |
drawTextRun
void drawTextRun (CharSequence text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, Paint paint)
Draw a run of text, all in a single direction, with optional context for complex text shaping.
The run of text includes the characters from start to end in the text. In
addition, the range contextStart to contextEnd is used as context for the
purpose of complex text shaping, such as Arabic text potentially shaped differently based on
the text next to it.
All text outside the range contextStart..contextEnd is ignored. The text between
start and end will be laid out and drawn.
The direction of the run is explicitly specified by isRtl. Thus, this method is
suitable only for runs of a single direction. Alignment of the text is as determined by the
Paint's TextAlign value. Further, 0 <= contextStart <= start <= end <= contextEnd
<= text.length must hold on entry.
Also see getRunAdvance(char[], int, int, int, int, boolean, int) for a corresponding method to measure
the text; the advance width of the text drawn matches the value obtained from that method.
| Parameters | |
|---|---|
text |
CharSequence: the text to renderThis value must never be |
start |
int: the start of the text to render. Data before this position can be used for
shaping context. |
end |
int: the end of the text to render. Data at or after this position can be used for
shaping context. |
contextStart |
int: the index of the start of the shaping context |
contextEnd |
int: the index of the end of the shaping context |
x |
float: the x position at which to draw the text |
y |
float: the y position at which to draw the text |
isRtl |
boolean: whether the run is in RTL direction |
paint |
Paint: the paintThis value must never be |
drawVertices
void drawVertices (Canvas.VertexMode mode, int vertexCount, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, Paint paint)
Draw the array of vertices, interpreted as triangles (based on mode). The verts array is required, and specifies the x,y pairs for each vertex. If texs is non-null, then it is used to specify the coordinate in shader coordinates to use at each vertex (the paint must have a shader in this case). If there is no texs array, but there is a color array, then each color is interpolated across its corresponding triangle in a gradient. If both texs and colors arrays are present, then they behave as before, but the resulting color at each pixels is the result of multiplying the colors from the shader and the color-gradient together. The indices array is optional, but if it is present, then it is used to specify the index of each triangle, rather than just walking through the arrays in order.
| Parameters | |
|---|---|
mode |
Canvas.VertexMode: How to interpret the array of verticesThis value must never be |
vertexCount |
int: The number of values in the vertices array (and corresponding texs and
colors arrays if non-null). Each logical vertex is two values (x, y), vertexCount
must be a multiple of 2. |
verts |
float: Array of vertices for the meshThis value must never be |
vertOffset |
int: Number of values in the verts to skip before drawing. |
texs |
float: May be null. If not null, specifies the coordinates to sample into the current
shader (e.g. bitmap tile or gradient)This value may be |
texOffset |
int: Number of values in texs to skip before drawing. |
colors |
int: May be null. If not null, specifies a color for each vertex, to be interpolated
across the triangle.This value may be |
colorOffset |
int: Number of values in colors to skip before drawing. |
indices |
short: If not null, array of indices to reference into the vertex (texs, colors)
array.This value may be |
indexOffset |
int |
indexCount |
int: number of entries in the indices array (if not null). |
paint |
Paint: Specifies the shader to use if the texs array is non-null.
This value must never be |
getClipBounds
boolean getClipBounds (Rect bounds)
Return the bounds of the current clip (in local coordinates) in the bounds parameter, and return true if it is non-empty. This can be useful in a way similar to quickReject, in that it tells you that drawing outside of these bounds will be clipped out.
| Parameters | |
|---|---|
bounds |
Rect: Return the clip bounds here. If it is null, ignore it but
still return true if the current clip is non-empty.This value may be |
| Returns | |
|---|---|
boolean |
true if the current clip is non-empty. |
getClipBounds
Rect getClipBounds ()
Retrieve the bounds of the current clip (in local coordinates).
| Returns | |
|---|---|
Rect |
the clip bounds, or [0, 0, 0, 0] if the clip is empty.
This value will never be |
getDensity
int getDensity ()
Returns the target density of the canvas. The default density is
derived from the density of its backing bitmap, or
DENSITY_NONE if there is not one.
| Returns | |
|---|---|
int |
Returns the current target density of the canvas, which is used to determine the scaling factor when drawing a bitmap into it. |
See also:
getDrawFilter
DrawFilter getDrawFilter ()
| Returns | |
|---|---|
DrawFilter |
This value may be |
getHeight
int getHeight ()
Returns the height of the current drawing layer
| Returns | |
|---|---|
int |
the height of the current drawing layer |
getMatrix
void getMatrix (Matrix ctm)
This method was deprecated
in API level 16.
Hardware accelerated canvases may have any
matrix when passed to a View or Drawable, as it is implementation defined where in the
hierarchy such canvases are created. It is recommended in such cases to either draw contents
irrespective of the current matrix, or to track relevant transform state outside of the
canvas.
Return, in ctm, the current transformation matrix. This does not alter the matrix in the canvas, but just returns a copy of it.
| Parameters | |
|---|---|
ctm |
Matrix This value must never be |
getMatrix
Matrix getMatrix ()
This method was deprecated
in API level 16.
Hardware accelerated canvases may have any
matrix when passed to a View or Drawable, as it is implementation defined where in the
hierarchy such canvases are created. It is recommended in such cases to either draw contents
irrespective of the current matrix, or to track relevant transform state outside of the
canvas.
Return a new matrix with a copy of the canvas' current transformation matrix.
| Returns | |
|---|---|
Matrix |
This value will never be |
getMaximumBitmapHeight
int getMaximumBitmapHeight ()
Returns the maximum allowed height for bitmaps drawn with this canvas. Attempting to draw with a bitmap taller than this value will result in an error.
| Returns | |
|---|---|
int |
|
See also:
getMaximumBitmapWidth
int getMaximumBitmapWidth ()
Returns the maximum allowed width for bitmaps drawn with this canvas. Attempting to draw with a bitmap wider than this value will result in an error.
| Returns | |
|---|---|
int |
|
See also:
getSaveCount
int getSaveCount ()
Returns the number of matrix/clip states on the Canvas' private stack. This will equal # save() calls - # restore() calls.
| Returns | |
|---|---|
int |
|
getWidth
int getWidth ()
Returns the width of the current drawing layer
| Returns | |
|---|---|
int |
the width of the current drawing layer |
isHardwareAccelerated
boolean isHardwareAccelerated ()
Indicates whether this Canvas uses hardware acceleration. Note that this method does not define what type of hardware acceleration may or may not be used.
| Returns | |
|---|---|
boolean |
True if drawing operations are hardware accelerated, false otherwise. |
isOpaque
boolean isOpaque ()
Return true if the device that the current layer draws into is opaque (i.e. does not support per-pixel alpha).
| Returns | |
|---|---|
boolean |
true if the device that the current layer draws into is opaque |
quickReject
boolean quickReject (float left,
float top,
float right,
float bottom,
Canvas.EdgeType type)
Return true if the specified rectangle, after being transformed by the current matrix, would lie completely outside of the current clip. Call this to check if an area you intend to draw into is clipped out (and therefore you can skip making the draw calls).
| Parameters | |
|---|---|
left |
float: The left side of the rectangle to compare with the
current clip |
top |
float: The top of the rectangle to compare with the current
clip |
right |
float: The right side of the rectangle to compare with the
current clip |
bottom |
float: The bottom of the rectangle to compare with the
current clip |
type |
Canvas.EdgeType: AA if the path should be considered antialiased,
since that means it may affect a larger area (more pixels) than
non-antialiased (BW).This value must never be |
| Returns | |
|---|---|
boolean |
true if the rect (transformed by the canvas' matrix) does not intersect with the canvas' clip |
quickReject
boolean quickReject (RectF rect, Canvas.EdgeType type)
Return true if the specified rectangle, after being transformed by the current matrix, would lie completely outside of the current clip. Call this to check if an area you intend to draw into is clipped out (and therefore you can skip making the draw calls).
| Parameters | |
|---|---|
rect |
RectF: the rect to compare with the current clipThis value must never be |
type |
Canvas.EdgeType: AA if the path should be considered antialiased,
since that means it may affect a larger area (more pixels) than
non-antialiased (BW).This value must never be |
| Returns | |
|---|---|
boolean |
true if the rect (transformed by the canvas' matrix) does not intersect with the canvas' clip |
quickReject
boolean quickReject (Path path, Canvas.EdgeType type)
Return true if the specified path, after being transformed by the current matrix, would lie completely outside of the current clip. Call this to check if an area you intend to draw into is clipped out (and therefore you can skip making the draw calls). Note: for speed it may return false even if the path itself might not intersect the clip (i.e. the bounds of the path intersects, but the path does not).
| Parameters | |
|---|---|
path |
Path: The path to compare with the current clipThis value must never be |
type |
Canvas.EdgeType: AA if the path should be considered antialiased,
since that means it may affect a larger area (more pixels) than
non-antialiased (BW).This value must never be |
| Returns | |
|---|---|
boolean |
true if the path (transformed by the canvas' matrix) does not intersect with the canvas' clip |
restore
void restore ()
This call balances a previous call to save(), and is used to remove all modifications to the matrix/clip state since the last save call. It is an error to call restore() more times than save() was called.
restoreToCount
void restoreToCount (int saveCount)
Efficient way to pop any calls to save() that happened after the save count reached saveCount. It is an error for saveCount to be less than 1. Example: int count = canvas.save(); ... // more calls potentially to save() canvas.restoreToCount(count); // now the canvas is back in the same state it was before the initial // call to save().
| Parameters | |
|---|---|
saveCount |
int: The save level to restore to.
|
rotate
void rotate (float degrees)
Preconcat the current matrix with the specified rotation.
| Parameters | |
|---|---|
degrees |
float: The amount to rotate, in degrees
|
rotate
void rotate (float degrees,
float px,
float py)
Preconcat the current matrix with the specified rotation.
| Parameters | |
|---|---|
degrees |
float: The amount to rotate, in degrees |
px |
float: The x-coord for the pivot point (unchanged by the rotation) |
py |
float: The y-coord for the pivot point (unchanged by the rotation)
|
save
int save (int saveFlags)
This method was deprecated
in API level O.
Use save() instead.
Based on saveFlags, can save the current matrix and clip onto a private stack.
Note: if possible, use the parameter-less save(). It is simpler and faster than individually disabling the saving of matrix or clip with this method.
Subsequent calls to translate,scale,rotate,skew,concat or clipRect, clipPath will all operate as usual, but when the balancing call to restore() is made, those calls will be forgotten, and the settings that existed before the save() will be reinstated.
| Parameters | |
|---|---|
saveFlags |
int: flag bits that specify which parts of the Canvas state
to save/restore |
| Returns | |
|---|---|
int |
The value to pass to restoreToCount() to balance this save() |
save
int save ()
Saves the current matrix and clip onto a private stack.
Subsequent calls to translate,scale,rotate,skew,concat or clipRect, clipPath will all operate as usual, but when the balancing call to restore() is made, those calls will be forgotten, and the settings that existed before the save() will be reinstated.
| Returns | |
|---|---|
int |
The value to pass to restoreToCount() to balance this save() |
saveLayer
int saveLayer (RectF bounds, Paint paint, int saveFlags)
This method was deprecated
in API level O.
Use saveLayer(RectF, Paint) instead.
This behaves the same as save(), but in addition it allocates and redirects drawing to an offscreen bitmap.
Note: this method is very expensive,
incurring more than double rendering cost for contained content. Avoid
using this method, especially if the bounds provided are large, or if
the CLIP_TO_LAYER_SAVE_FLAG is omitted from the
saveFlags parameter. It is recommended to use a
hardware layer on a View
to apply an xfermode, color filter, or alpha, as it will perform much
better than this method.
All drawing calls are directed to a newly allocated offscreen bitmap. Only when the balancing call to restore() is made, is that offscreen buffer drawn back to the current target of the Canvas (either the screen, it's target Bitmap, or the previous layer).
Attributes of the Paint - alpha,
Xfermode, and
ColorFilter are applied when the
offscreen bitmap is drawn back when restore() is called.
| Parameters | |
|---|---|
bounds |
RectF: May be null. The maximum size the offscreen bitmap
needs to be (in local coordinates)This value may be |
paint |
Paint: This is copied, and is applied to the offscreen when
restore() is called.This value may be |
saveFlags |
int: see _SAVE_FLAG constants, generally ALL_SAVE_FLAG is recommended
for performance reasons. |
| Returns | |
|---|---|
int |
value to pass to restoreToCount() to balance this save() |
saveLayer
int saveLayer (RectF bounds, Paint paint)
This behaves the same as save(), but in addition it allocates and redirects drawing to an offscreen rendering target.
Note: this method is very expensive,
incurring more than double rendering cost for contained content. Avoid
using this method when possible and instead use a
hardware layer on a View
to apply an xfermode, color filter, or alpha, as it will perform much
better than this method.
All drawing calls are directed to a newly allocated offscreen rendering target. Only when the balancing call to restore() is made, is that offscreen buffer drawn back to the current target of the Canvas (which can potentially be a previous layer if these calls are nested).
Attributes of the Paint - alpha,
Xfermode, and
ColorFilter are applied when the
offscreen rendering target is drawn back when restore() is called.
| Parameters | |
|---|---|
bounds |
RectF: May be null. The maximum size the offscreen render target
needs to be (in local coordinates)This value may be |
paint |
Paint: This is copied, and is applied to the offscreen when
restore() is called.This value may be |
| Returns | |
|---|---|
int |
value to pass to restoreToCount() to balance this save() |
saveLayer
int saveLayer (float left,
float top,
float right,
float bottom,
Paint paint)
Convenience for saveLayer(RectF, Paint) that takes the four float coordinates of the
bounds rectangle.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
paint |
Paint This value may be |
| Returns | |
|---|---|
int |
|
saveLayer
int saveLayer (float left,
float top,
float right,
float bottom,
Paint paint,
int saveFlags)
This method was deprecated
in API level O.
Use saveLayer(float, float, float, float, Paint) instead.
Helper version of saveLayer() that takes 4 values rather than a RectF.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
paint |
Paint This value may be |
saveFlags |
int |
| Returns | |
|---|---|
int |
|
saveLayerAlpha
int saveLayerAlpha (float left,
float top,
float right,
float bottom,
int alpha,
int saveFlags)
This method was deprecated
in API level O.
Use saveLayerAlpha(float, float, float, float, int) instead.
Helper for saveLayerAlpha() that takes 4 values instead of a RectF.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
alpha |
int |
saveFlags |
int |
| Returns | |
|---|---|
int |
|
saveLayerAlpha
int saveLayerAlpha (RectF bounds, int alpha)
Convenience for saveLayer(RectF, Paint) but instead of taking a entire Paint object
it takes only the alpha parameter.
| Parameters | |
|---|---|
bounds |
RectF: The maximum size the offscreen bitmap needs to be
(in local coordinates)This value may be |
alpha |
int: The alpha to apply to the offscreen when it is
drawn during restore()
|
| Returns | |
|---|---|
int |
|
saveLayerAlpha
int saveLayerAlpha (RectF bounds, int alpha, int saveFlags)
This method was deprecated
in API level O.
Use saveLayerAlpha(RectF, int) instead.
This behaves the same as save(), but in addition it allocates and redirects drawing to an offscreen bitmap.
Note: this method is very expensive,
incurring more than double rendering cost for contained content. Avoid
using this method, especially if the bounds provided are large, or if
the CLIP_TO_LAYER_SAVE_FLAG is omitted from the
saveFlags parameter. It is recommended to use a
hardware layer on a View
to apply an xfermode, color filter, or alpha, as it will perform much
better than this method.
All drawing calls are directed to a newly allocated offscreen bitmap. Only when the balancing call to restore() is made, is that offscreen buffer drawn back to the current target of the Canvas (either the screen, it's target Bitmap, or the previous layer).
The alpha parameter is applied when the offscreen bitmap is
drawn back when restore() is called.
| Parameters | |
|---|---|
bounds |
RectF: The maximum size the offscreen bitmap needs to be
(in local coordinates)This value may be |
alpha |
int: The alpha to apply to the offscreen when it is
drawn during restore() |
saveFlags |
int: see _SAVE_FLAG constants, generally ALL_SAVE_FLAG is recommended
for performance reasons. |
| Returns | |
|---|---|
int |
value to pass to restoreToCount() to balance this call |
saveLayerAlpha
int saveLayerAlpha (float left,
float top,
float right,
float bottom,
int alpha)
Convenience for saveLayerAlpha(RectF, int) that takes the four float coordinates of
the bounds rectangle.
| Parameters | |
|---|---|
left |
float |
top |
float |
right |
float |
bottom |
float |
alpha |
int |
| Returns | |
|---|---|
int |
|
scale
void scale (float sx,
float sy,
float px,
float py)
Preconcat the current matrix with the specified scale.
| Parameters | |
|---|---|
sx |
float: The amount to scale in X |
sy |
float: The amount to scale in Y |
px |
float: The x-coord for the pivot point (unchanged by the scale) |
py |
float: The y-coord for the pivot point (unchanged by the scale)
|
scale
void scale (float sx,
float sy)
Preconcat the current matrix with the specified scale.
| Parameters | |
|---|---|
sx |
float: The amount to scale in X |
sy |
float: The amount to scale in Y
|
setBitmap
void setBitmap (Bitmap bitmap)
Specify a bitmap for the canvas to draw into. All canvas state such as
layers, filters, and the save/restore stack are reset. Additionally,
the canvas' target density is updated to match that of the bitmap.
Prior to API level Build.VERSION_CODES.O the current matrix and
clip stack were preserved.
| Parameters | |
|---|---|
bitmap |
Bitmap: Specifies a mutable bitmap for the canvas to draw into.This value may be |
See also:
setDensity
void setDensity (int density)
Specifies the density for this Canvas' backing bitmap. This modifies
the target density of the canvas itself, as well as the density of its
backing bitmap via Bitmap.setDensity(int).
| Parameters | |
|---|---|
density |
int: The new target density of the canvas, which is used
to determine the scaling factor when drawing a bitmap into it. Use
DENSITY_NONE to disable bitmap scaling. |
See also:
setDrawFilter
void setDrawFilter (DrawFilter filter)
| Parameters | |
|---|---|
filter |
DrawFilter This value may be |
setMatrix
void setMatrix (Matrix matrix)
Completely replace the current matrix with the specified matrix. If the
matrix parameter is null, then the current matrix is reset to identity.
Note: it is recommended to use concat(Matrix),
scale(float, float), translate(float, float) and
rotate(float) instead of this method.
| Parameters | |
|---|---|
matrix |
Matrix: The matrix to replace the current matrix with. If it is
null, set the current matrix to identity.This value may be |
See also:
skew
void skew (float sx,
float sy)
Preconcat the current matrix with the specified skew.
| Parameters | |
|---|---|
sx |
float: The amount to skew in X |
sy |
float: The amount to skew in Y
|
translate
void translate (float dx,
float dy)
Preconcat the current matrix with the specified translation
| Parameters | |
|---|---|
dx |
float: The distance to translate in X |
dy |
float: The distance to translate in Y
|
Protected methods
checkRange
void checkRange (int length,
int offset,
int count)
| Parameters | |
|---|---|
length |
int |
offset |
int |
count |
int |
Interfaces
Classes
- Bitmap
- BitmapFactory
- BitmapFactory.Options
- BitmapRegionDecoder
- BitmapShader
- BlurMaskFilter
- Camera
- Canvas
- Color
- ColorFilter
- ColorMatrix
- ColorMatrixColorFilter
- ColorSpace
- ColorSpace.Connector
- ColorSpace.Rgb
- ColorSpace.Rgb.TransferParameters
- ComposePathEffect
- ComposeShader
- CornerPathEffect
- DashPathEffect
- DiscretePathEffect
- DrawFilter
- EmbossMaskFilter
- ImageFormat
- Interpolator
- LightingColorFilter
- LinearGradient
- MaskFilter
- Matrix
- Movie
- NinePatch
- Outline
- Paint
- Paint.FontMetrics
- Paint.FontMetricsInt
- PaintFlagsDrawFilter
- Path
- PathDashPathEffect
- PathEffect
- PathMeasure
- Picture
- PixelFormat
- Point
- PointF
- PorterDuff
- PorterDuffColorFilter
- PorterDuffXfermode
- RadialGradient
- Rect
- RectF
- Region
- RegionIterator
- Shader
- SumPathEffect
- SurfaceTexture
- SweepGradient
- Typeface
- Typeface.Builder
- Xfermode
- YuvImage
Enums
- Bitmap.CompressFormat
- Bitmap.Config
- BlurMaskFilter.Blur
- Canvas.EdgeType
- Canvas.VertexMode
- ColorSpace.Adaptation
- ColorSpace.Model
- ColorSpace.Named
- ColorSpace.RenderIntent
- Interpolator.Result
- Matrix.ScaleToFit
- Paint.Align
- Paint.Cap
- Paint.Join
- Paint.Style
- Path.Direction
- Path.FillType
- Path.Op
- PathDashPathEffect.Style
- PorterDuff.Mode
- Region.Op
- Shader.TileMode
Exceptions