The AutoBitmap class is a display object that represents bitmap images or graphics. It encapsulates the handling of position, width, height, and nine-patch for UI components.

AutoBitmap 类是用于表示位图图像或绘制图形的显示对象。 封装了位置,宽高及九宫格的处理,供UI组件使用。

层级 (查看层级一览)

属性

_sp: Sprite = null
uv: number[] = null

访问器

  • get sizeGrid(): number[]

    返回 number[]

    The size grid of the texture. The size grid is a 3x3 division of the texture, allowing it to be scaled without distorting the corners and edges. The array contains five values representing the top, right, bottom, and left margins, and whether to repeat the fill (0: no repeat, 1: repeat). The values are separated by commas. For example: "6,6,6,6,1".

    纹理的九宫格数据。 九宫格是一种将纹理分成3x3格的方式,使得纹理缩放时保持角和边缘不失真。 数组包含五个值,分别代表上边距、右边距、下边距、左边距以及是否重复填充(0:不重复填充,1:重复填充)。 值以逗号分隔。例如:"6,6,6,6,1"。

  • set sizeGrid(value: number[]): void

    参数

    • value: number[]

    返回 void

方法

  • 参数

    • cmd: any

      Add the command to the command stream.

    • 可选index: number

      (Optional) The index to be inserted.

    返回 any

    Save to the command stream.

    添加到命令流。

  • 参数

    • recoverCmds: boolean = true

      Whether to recycle the drawing instruction array. If set to true, the instruction array will be recycled to save memory. It is recommended to set it to true for recycling, but if you manually reference the array, recycling is not recommended.

    返回 void

    Clear drawing commands.

    清空绘制命令。

  • 参数

    • x: number

      X-axis offset

    • y: number

      Y-axis offset

    • width: number

      Width of the clipping area

    • height: number

      Height of the clipping area

    返回 ClipRectCmd

    Set the clipping area. Coordinates outside the clipping area will not be displayed.

    设置剪裁区域,超出剪裁区域的坐标不显示。

  • 参数

    • texture: Texture

      The texture to draw

    • x: number = 0

      (Optional) X-axis position. Default is 0.

    • y: number = 0

      (Optional) Y-axis position. Default is 0.

    • width: number = 0

      (Optional) Width of the image. Default is 0.

    • height: number = 0

      (Optional) Height of the image. Default is 0.

    • sizeGrid: any[]

      Nine-grid information

    • 可选color: string

      (Optional) Color to tint the image

    返回 void

    Draw an image with nine-grid

    绘制带九宫格的图片

  • 参数

    • x: number

      X-axis position of the circle center

    • y: number

      Y-axis position of the circle center

    • radius: number

      Radius of the circle

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any = null

      (Optional) Border color, or gradient object for filling the drawing. Default is null.

    • lineWidth: number = 1

      (Optional) Border width. Default is 1.

    返回 DrawCircleCmd

    Draw a circle.

    绘制圆形。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • points: any[]

      Collection of points for curves. Format: [controlX, controlY, anchorX, anchorY...]

    • lineColor: any

      Color of the curves, or gradient object for filling the drawing

    • lineWidth: number = 1

      (Optional) Width of the curves. Default is 1.

    返回 DrawCurvesCmd

    Draw a series of curves.

    绘制一系列曲线。

  • 参数

    • x: number

      X-axis position of the ellipse center

    • y: number

      Y-axis position of the ellipse center

    • width: number

      Horizontal radius

    • height: number

      Vertical radius

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any

      (Optional) Border color, or gradient object for filling the drawing

    • lineWidth: number

      (Optional) Border width

    • 可选percent: boolean

      (Optional) Whether the position and size are percentage values

    返回 DrawEllipseCmd

    Draw an ellipse.

    绘制椭圆形。

  • 参数

    • texture: Texture

      The texture to draw

    • x: number = 0

      (Optional) X-axis offset. Default is 0.

    • y: number = 0

      (Optional) Y-axis offset. Default is 0.

    • width: number = null

      (Optional) Width of the image. Default is null.

    • height: number = null

      (Optional) Height of the image. Default is null.

    • color: string = null

      (Optional) Color of the image. Default is null.

    返回 DrawImageCmd

    Draw a single image

    绘制单独图片

  • 参数

    • fromX: number

      X-axis starting position

    • fromY: number

      Y-axis starting position

    • toX: number

      X-axis ending position

    • toY: number

      Y-axis ending position

    • lineColor: string

      Color of the line

    • lineWidth: number = 1

      (Optional) Width of the line. Default is 1.

    返回 DrawLineCmd

    Draw a line.

    绘制一条线。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • points: any[]

      Collection of points for line segments. Format: [x1,y1,x2,y2,x3,y3...]

    • lineColor: any

      Color of the line segments, or gradient object for filling the drawing

    • lineWidth: number = 1

      (Optional) Width of the line segments. Default is 1.

    返回 DrawLinesCmd

    Draw a series of line segments.

    绘制一系列线段。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • paths: any[]

      Collection of paths. Paths support the following format: [["moveTo",x,y],["lineTo",x,y],["arcTo",x1,y1,x2,y2,r],["closePath"]]

    • brush: any = null

      (Optional) Brush definition, supports the following settings: {fillStyle:"#FF0000"}

    • pen: any = null

      (Optional) Pen definition, supports the following settings: {strokeStyle,lineWidth,lineJoin:"bevel|round|miter",lineCap:"butt|round|square",miterLimit}

    返回 DrawPathCmd

    Draw a path.

    绘制路径。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • radius: number

      Radius of the pie

    • startAngle: number

      Start angle

    • endAngle: number

      End angle

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any = null

      (Optional) Border color, or gradient object for filling the drawing. Default is null.

    • lineWidth: number = 1

      (Optional) Border width. Default is 1.

    返回 DrawPieCmd

    Draw a pie.

    绘制扇形。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • points: any[]

      Collection of points for the polygon

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any = null

      (Optional) Border color, or gradient object for filling the drawing. Default is null.

    • lineWidth: number = 1

      (Optional) Border width. Default is 1.

    返回 DrawPolyCmd

    Draw a polygon.

    绘制多边形。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • width: number

      Width of the rectangle

    • height: number

      Height of the rectangle

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any = null

      (Optional) Border color, or gradient object for filling the drawing. Default is null.

    • lineWidth: number = 1

      (Optional) Border width. Default is 1.

    • 可选percent: boolean

      Whether the position and size are percentage values

    返回 DrawRectCmd

    DrawRectCmd object

    Draw a rectangle.

    绘制矩形。

  • 参数

    • x: number

      X-axis position to start drawing

    • y: number

      Y-axis position to start drawing

    • width: number

      Width of the rounded rectangle

    • height: number

      Height of the rounded rectangle

    • lt: number

      Left-top corner radius

    • rt: number

      Right-top corner radius

    • lb: number

      Left-bottom corner radius

    • rb: number

      Right-bottom corner radius

    • fillColor: any

      Fill color, or gradient object for filling the drawing

    • lineColor: any = null

      (Optional) Border color, or gradient object for filling the drawing. Default is null.

    • lineWidth: number = 1

      (Optional) Border width. Default is 1.

    • 可选percent: boolean

      (Optional) Whether the position and size are percentage values

    返回 any

    Draw a rounded rectangle.

    绘制圆角矩形。

  • 参数

    • texture: Texture

      The texture to draw

    • x: number = 0

      (Optional) X-axis offset. Default is 0.

    • y: number = 0

      (Optional) Y-axis offset. Default is 0.

    • width: number = null

      (Optional) Width of the texture. Default is null.

    • height: number = null

      (Optional) Height of the texture. Default is null.

    • matrix: Matrix = null

      (Optional) Matrix information. Default is null.

    • alpha: number = 1

      (Optional) Transparency. Default is 1.

    • color: string = null

      (Optional) Color filter. Default is null.

    • blendMode: string = null

      (Optional) Blend mode. Default is null.

    • 可选uv: number[]

      (Optional) UV coordinates. Default is undefined.

    返回 DrawTextureCmd

    Draw a texture. More powerful than drawImage but less performant.

    绘制纹理,相比drawImage功能更强大,性能会差一些

  • 参数

    • texture: Texture

      The texture to use

    • x: number

      X-axis offset

    • y: number

      Y-axis offset

    • vertices: Float32Array

      Vertex array

    • uvs: Float32Array

      UV data. Note that the UV coordinates are used directly. If the texture is from an atlas, these UVs are also from the atlas and don't need conversion.

    • indices: Uint16Array

      Vertex indices

    • matrix: Matrix = null

      (Optional) Scale matrix. Default is null.

    • alpha: number = 1

      (Optional) Alpha value. Default is 1.

    • color: string | number = null

      (Optional) Color transformation. Default is null.

    • blendMode: string = null

      (Optional) Blend mode. Default is null.

    返回 DrawTrianglesCmd

    Draw a group of triangles

    绘制一组三角形

  • 参数

    • text: string | WordText

      The text to output on the canvas

    • x: number

      The x-coordinate where to start drawing the text (relative to the canvas)

    • y: number

      The y-coordinate where to start drawing the text (relative to the canvas)

    • font: string

      Defines the font and size, e.g., "20px Arial"

    • fillColor: string

      Defines the text color, e.g., "#ff0000"

    • textAlign: string

      Text alignment. Possible values: "left", "center", "right"

    • lineWidth: number

      Width of the stroke line

    • borderColor: string

      Defines the color of the text stroke

    返回 FillTextCmd

    Draw filled and stroked text on the canvas.

    在画布上绘制"被填充且镶边的"文本。

  • 参数

    • text: string | WordText

      The text to output on the canvas

    • x: number

      The x-coordinate where to start drawing the text (relative to the canvas)

    • y: number

      The y-coordinate where to start drawing the text (relative to the canvas)

    • font: string

      Defines the font size and family, e.g., "20px Arial"

    • color: string

      Defines the text color, e.g., "#ff0000"

    • textAlign: string

      Text alignment. Possible values: "left", "center", "right"

    返回 FillTextCmd

    Draw text on the canvas

    在画布上绘制文本

  • 参数

    • texture: Texture

      The texture to use for filling

    • x: number

      X-axis offset

    • y: number

      Y-axis offset

    • width: number = 0

      (Optional) Width. Default is 0.

    • height: number = 0

      (Optional) Height. Default is 0.

    • type: string = "repeat"

      (Optional) Fill type: 'repeat', 'repeat-x', 'repeat-y', or 'no-repeat'. Default is 'repeat'.

    • offset: Point = null

      (Optional) Texture offset. Default is null.

    • color: string = null

      (Optional) Color. Default is null.

    • percent: boolean = false

      (Optional) Whether to use percentages. Default is false.

    返回 FillTextureCmd

    Fill with texture

    用纹理填充

  • 参数

    • 可选realSize: boolean

      (Optional) Use the real size of the image, default is false.

    返回 readonly number[]

    An array of endpoint coordinates.

    Get the list of endpoints.

    获取端点列表。

  • 参数

    • 可选realSize: boolean

      (Optional) Use the real size of the image, default is false.

    返回 Readonly<Rectangle>

    A Rectangle object composed of position and size.

    Get the position and size information matrix (CPU-intensive, frequent use may cause lag, use sparingly).

    获取位置及宽高信息矩阵(比较耗CPU,频繁使用会造成卡顿,尽量少用)。

  • 参数

    • url: string

      The URL of the image

    • x: number = 0

      (Optional) The x-coordinate where the image will be displayed. Default is 0.

    • y: number = 0

      (Optional) The y-coordinate where the image will be displayed. Default is 0.

    • width: number = null

      (Optional) The width to display the image. Set to 0 to use the default image width. Default is null.

    • height: number = null

      (Optional) The height to display the image. Set to 0 to use the default image height. Default is null.

    • complete: Function = null

      (Optional) The callback function to be called when the image is loaded

    返回 void

    Load and display an image.

    加载并显示一个图片。

  • 参数

    • oldCmd: any

      The command to be replaced.

    • newCmd: any

      The new command.

    • 可选recover: boolean

      (Optional) Whether to recycle the old command. Default is false.

    返回 any

    Replace the command.

    替换命令。

  • 参数

    • angle: number

      The rotation angle in radians

    • pivotX: number = 0

      (Optional) X-coordinate of the pivot point. Default is 0.

    • pivotY: number = 0

      (Optional) Y-coordinate of the pivot point. Default is 0.

    返回 RotateCmd

    Rotate the current drawing. (It's recommended to use transform for better performance)

    旋转当前绘图。(推荐使用transform,性能更高)

  • 参数

    • scaleX: number

      Horizontal scaling value

    • scaleY: number

      Vertical scaling value

    • pivotX: number = 0

      (Optional) X-coordinate of the pivot point. Default is 0.

    • pivotY: number = 0

      (Optional) Y-coordinate of the pivot point. Default is 0.

    返回 ScaleCmd

    Scale the current drawing to a larger or smaller size. (It's recommended to use transform for better performance)

    缩放当前绘图至更大或更小。(推荐使用transform,性能更高)

  • 参数

    • text: string | WordText

      The text to output on the canvas

    • x: number

      The x-coordinate where to start drawing the text (relative to the canvas)

    • y: number

      The y-coordinate where to start drawing the text (relative to the canvas)

    • font: string

      Defines the font and size, e.g., "20px Arial"

    • color: string

      Defines the text color, e.g., "#ff0000"

    • lineWidth: number

      Width of the line

    • textAlign: string

      Text alignment. Possible values: "left", "center", "right"

    返回 FillTextCmd

    Draw text on the canvas (without fill). The default color of the text is black.

    在画布上绘制文本(没有填色)。文本的默认颜色是黑色。