SoFunction
Updated on 2025-04-03

Summary of methods of Paint class and Canvas class in Android

Common methods of Paint class

Method, used to set the color of the brush,

public void setColor(int color)//The parameter color is the color value, and the color defined by the Color class can also be used.

:black

:blue

:Cyan green

:Gray-black

:yellow

:grey

:green

: Light green

:Red and purple

:Transparent color

Method, to set the transparency of the brush

public void setAlpha(int a)// Parameter a is transparency, its value range is 0~255, the smaller the value, the more transparent it is, the smaller the value

Method, used to set the style of the brush, you can specify whether it is a circle center or a solid. This method has obvious effects on rectangles and circles.

public void setStyle( style)//The parameter style is the style of the brush

:solid

Style.FILL_AND_STROKE: Show both solid and hollow

:Hollow

Method, used to set the hollow line width of the brush, this method has obvious effects on rectangles, circles, etc.

public void setStrokeWidth(float width)//The parameter width is line width, floating point data

Method, used to set the font size of the brush, mainly used to draw strings

public void setTextSize(float textSize)//

Method is used to set the font style of the brush. You can use the fields that come with the system or use custom fonts.

public void Typeface(Typeface typeface)//typeface is a font style

:Default font

Typeface.DEFAULT_BOLD:Bold font

:monospace font

Typeface.SANS_SERIF:sans font

:serif font

Method. Used to set the scale factor of the brush font, the default is 1. When it is greater than 1, it means horizontal stretching, and when it is less than 1, it means horizontal compression

public void setTextScaleX(float scaleX)

Method, to set the color and transparency of the brush

public void setARGB(int a,int r,int g,int b);

Parameter a is transparency, range 0~255

Parameter r is the color value of red, with a range of 0~255

Parameter g is the color value of green, with a range of 0~255

Parameter b is the color value of blue, with a range of 0~255

Method, to set the underline of the brush

public void setUnderlineText(Boolean underlintext)

When the value is true, it means that the underline is displayed

Method, to set the tilt factor of the brush

public void setTextSkewX(float skewX)

The parameter skewX is the tilt factor, the positive number indicates the tilt to the left, and the negative number indicates the tilt to the right

Canvas class method

void drawColor(int color)

Used to set the background color of the canvas

void drawLine(float starX,float startY,float stopX,float stopY,Paint paint);

Used to draw straight lines on canvas

The parameters are the X coordinate, Y coordinate, the X coordinate, Y coordinate of the end point of the line, and the brush used

void drawLines(float[] pts,Paint paint)

Used to draw multiple straight lines on canvas

The parameter pts is an array of endpoints to draw a straight line, each straight line occupies 4 data.

void drawPoint(float x,float y,Paint paint)

Used to draw points on canvas

Parameters are the X, Y coordinates of the point, and the brush used

void drawPoints(float[] pts,Paint paint)

public void drawPoints(float[] pts,int offset,int count,Paint paint)

The parameter pts is an array of plot points, each point occupies 2 data.

The parameter offset is the number of skipped data

The parameter count is the number of data actually participated in the drawing.

void drawRect(Rect rect,Paint paint)

public void drawRect(RectF rect,Paint paint)

public void drawRect(float left,float float top,float right,float below,Paint paint)

Used to draw rectangles

void drawRoundRect(RectF rect,float rx,float ry,Paint paint)

Used to draw rounded rectangles

rx is the rounded corner radius in the X direction

ry is the rounded corner radius in the Y direction

void drawCircla(float cx,float cy,float radius, Paint paint)

Used to draw circles on canvas

cx is the x-coordinate of the circle

cy is the y-coordinate of the circle

rad is the radius of the circle

void drawOval(RectF paint)

Used to draw ellipses

Implemented by specifying the tangent rectangle of the ellipse

void drawPath(Path path,Paint paint)

Implemented for drawing any polygon on canvas

void drawArc(RectF oval,float startAngle,float sweepAngle,`Boolean usecenter,Paint p)

The parameter oval is the ellipse object where the arc is located

startAngle is the starting angle of the arc.

sweepAngle is the angle of the arc,

useCenter indicates whether to display radius lines. When the value is true, the radius lines between the arc and the center of the circle are displayed.

12,public void drawText(String text,float x,float y, Paint paint)

public void drawText(char[] text,int index,int count,float x,float y,Paint paint)
public void drawText(CharSequence text,int start,int end,float x,float y,Paint paint)
public void drawText(String text,int start,int end,float x,float y,Paint paint)

The parameter text is the content of the string.

x is the X coordinate

y is Y coordinate

index is the starting character position of the displayed

count is the number of characters displayed

start is the position of the displayed starting character

end is the position of the terminated character displayed

13,public void drawBitmap(Bitmap bitmap,float left,float top,Paint paint)

The parameter bitmap is a Bitmap object, representing image resources.

left is the left position on the left of the image display

right is the right position of the image display

14,public int save()

Used to lock one or several objects in the canvas, and used to lock object operations

After using the sava method to lock the canvas and complete the operation, you need to use the restore method to unlock it.

15,public Boolean clipRect(Rect rect)

public Boolean clipRect(float left,float top,float right,float bottom)

public Boolean clipRect(int left,int top,int right,int boottom)

This method is used to crop the canvas and set the display area of ​​the canvas

16,public void rotate(float degrees)

public void rotate(float degrees,float px,float py)

Used to rotate the canvas, by rotating the canvas, you can rotate the objects drawn on the canvas

The parameter degrees is the rotation angle, the positive number is clockwise, and the negative number is counterclockwise.

px is the x coordinate of the rotation point

py is the y coordinate of the rotation point

The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!