ts-canvasrenderingcontext2d.md 92.2 KB
Newer Older
Z
zengyawen 已提交
1 2
# CanvasRenderingContext2D对象

L
lanyill 已提交
3 4
使用RenderingContext在Canvas组件上进行绘制,绘制对象可以是矩形、文本、图片等。

H
HelloCrease 已提交
5 6
> **说明:**
>
Z
zengyawen 已提交
7
> 从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8 9


Z
zengyawen 已提交
10 11 12 13 14

## 接口

CanvasRenderingContext2D(setting: RenderingContextSetting)

Z
zhongjianfei 已提交
15 16
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
17 18
**参数:**

H
HelloCrease 已提交
19 20 21
| 参数名     | 参数类型                                     | 必填   | 参数描述                                     |
| ------- | ---------------------------------------- | ---- | ---------------------------------------- |
| setting | [RenderingContextSettings](#renderingcontextsettings) | 是    | 见[RenderingContextSettings](#renderingcontextsettings)。 |
Z
zengyawen 已提交
22 23 24 25


### RenderingContextSettings

26
RenderingContextSettings(antialias?: boolean)
Z
zengyawen 已提交
27

Y
yaoyuchi 已提交
28
用来配置CanvasRenderingContext2D对象的参数,包括是否开启抗锯齿。
Z
zengyawen 已提交
29

Z
zhongjianfei 已提交
30 31
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
32
**参数:**
Z
zengyawen 已提交
33

H
HelloCrease 已提交
34 35 36
| 参数名       | 参数类型    | 必填   | 参数描述                          |
| --------- | ------- | ---- | ----------------------------- |
| antialias | boolean | 否    | 表明canvas是否开启抗锯齿。<br>默认值:false |
Z
zengyawen 已提交
37 38 39 40


## 属性

Y
yamila 已提交
41 42
| 名称                                                  | 类型                                                         | 描述                                                         |
| ----------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
43
| [fillStyle](#fillstyle)                               | string&nbsp;\|&nbsp;[CanvasGradient](ts-components-canvas-canvasgradient.md)&nbsp;\|&nbsp;[CanvasPattern](#canvaspattern) | 指定绘制的填充色。<br/>-&nbsp;类型为string时,表示设置填充区域的颜色。<br/>-&nbsp;类型为CanvasGradient时,表示渐变对象,使用[createLinearGradient](#createlineargradient)方法创建。<br/>-&nbsp;类型为CanvasPattern时,使用[createPattern](#createpattern)方法创建。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
Y
yamila 已提交
44
| [lineWidth](#linewidth)                               | number                                                       | 设置绘制线条的宽度。                                         |
Z
zhongjianfei 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| [strokeStyle](#strokestyle)                           | string&nbsp;\|&nbsp;[CanvasGradient](ts-components-canvas-canvasgradient.md)&nbsp;\|&nbsp;[CanvasPattern](#canvaspattern) | 设置描边的颜色。<br/>-&nbsp;类型为string时,表示设置描边使用的颜色。<br/>-&nbsp;类型为CanvasGradient时,表示渐变对象,使用[createLinearGradient](#createlineargradient)方法创建。<br/>-&nbsp;类型为CanvasPattern时,使用[createPattern](#createpattern)方法创建。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [lineCap](#linecap)                                   | CanvasLineCap                                                | 指定线端点的样式,可选值为:<br/>-&nbsp;'butt':线端点以方形结束。<br/>-&nbsp;'round':线端点以圆形结束。<br/>-&nbsp;'square':线端点以方形结束,该样式下会增加一个长度和线段厚度相同,宽度是线段厚度一半的矩形。<br/>默认值:'butt'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [lineJoin](#linejoin)                                 | CanvasLineJoin                                               | 指定线段间相交的交点样式,可选值为:<br/>-&nbsp;'round':在线段相连处绘制一个扇形,扇形的圆角半径是线段的宽度。<br/>-&nbsp;'bevel':在线段相连处使用三角形为底填充,&nbsp;每个部分矩形拐角独立。<br/>-&nbsp;'miter':在相连部分的外边缘处进行延伸,使其相交于一点,形成一个菱形区域,该属性可以通过设置miterLimit属性展现效果。<br/>默认值:'miter'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [miterLimit](#miterlimit)                             | number                                                       | 设置斜接面限制值,该值指定了线条相交处内角和外角的距离。  <br/>默认值:10<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [font](#font)                                         | string                                                       | 设置文本绘制中的字体样式。<br/>语法:ctx.font='font-size&nbsp;font-family'<br/>-&nbsp;font-size(可选),指定字号和行高,单位只支持px。<br/>-&nbsp;font-family(可选),指定字体系列。<br/>语法:ctx.font='font-style&nbsp;font-weight&nbsp;font-size&nbsp;font-family'<br/>-&nbsp;font-style(可选),用于指定字体样式,支持如下几种样式:'normal','italic'。<br/>-&nbsp;font-weight(可选),用于指定字体的粗细,支持如下几种类型:'normal',&nbsp;'bold',&nbsp;'bolder',&nbsp;'lighter',&nbsp;100,&nbsp;200,&nbsp;300,&nbsp;400,&nbsp;500,&nbsp;600,&nbsp;700,&nbsp;800,&nbsp;900。<br/>-&nbsp;font-size(可选),指定字号和行高,单位只支持px。<br/>-&nbsp;font-family(可选),指定字体系列,支持如下几种类型:'sans-serif',&nbsp;'serif',&nbsp;'monospace'。<br/>默认值:'normal normal 14px sans-serif'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [textAlign](#textalign)                               | CanvasTextAlign                                              | 设置文本绘制中的文本对齐方式,可选值为:<br/>-&nbsp;'left':文本左对齐。<br/>-&nbsp;'right':文本右对齐。<br/>-&nbsp;'center':文本居中对齐。<br/>-&nbsp;'start':文本对齐界线开始的地方。<br/>-&nbsp;'end':文本对齐界线结束的地方。<br/>ltr布局模式下'start'和'left'一致,rtl布局模式下'start'和'right'一致·。<br/>默认值:'left'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [textBaseline](#textbaseline)                         | CanvasTextBaseline                                           | 设置文本绘制中的水平对齐方式,可选值为:<br/>-&nbsp;'alphabetic':文本基线是标准的字母基线。<br/>-&nbsp;'top':文本基线在文本块的顶部。<br/>-&nbsp;'hanging':文本基线是悬挂基线。<br/>-&nbsp;'middle':文本基线在文本块的中间。<br/>-&nbsp;'ideographic':文字基线是表意字基线;如果字符本身超出了alphabetic基线,那么ideograhpic基线位置在字符本身的底部。<br/>-&nbsp;'bottom':文本基线在文本块的底部。&nbsp;与ideographic基线的区别在于ideographic基线不需要考虑下行字母。<br/>默认值:'alphabetic'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [globalAlpha](#globalalpha)                           | number                                                       | 设置透明度,0.0为完全透明,1.0为完全不透明。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [lineDashOffset](#linedashoffset)                     | number                                                       | 设置画布的虚线偏移量,精度为float。    <br/>默认值:0.0<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [globalCompositeOperation](#globalcompositeoperation) | string                                                       | 设置合成操作的方式。类型字段可选值有'source-over','source-atop','source-in','source-out','destination-over','destination-atop','destination-in','destination-out','lighter','copy','xor'。<br/>默认值:'source-over'<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [shadowBlur](#shadowblur)                             | number                                                       | 设置绘制阴影时的模糊级别,值越大越模糊,精度为float。   <br/>默认值:0.0<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [shadowColor](#shadowcolor)                           | string                                                       | 设置绘制阴影时的阴影颜色。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [shadowOffsetX](#shadowoffsetx)                       | number                                                       | 设置绘制阴影时和原有对象的水平偏移值。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [shadowOffsetY](#shadowoffsety)                       | number                                                       | 设置绘制阴影时和原有对象的垂直偏移值。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [imageSmoothingEnabled](#imagesmoothingenabled)       | boolean                                                      | 用于设置绘制图片时是否进行图像平滑度调整,true为启用,false为不启用。 <br/>默认值:true<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
60 61
| [height](#height)                                     | number                                                       | 组件高度。 <br/>单位:vp<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| [width](#width)                                       | number                                                       | 组件宽度。 <br/>单位:vp<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
Z
zengyawen 已提交
62

H
HelloCrease 已提交
63 64 65
> **说明:**
>
> fillStyle、shadowColor与 strokeStyle 中string类型格式为 'rgb(255, 255, 255)','rgba(255, 255, 255, 1.0)','\#FFFFFF'。
Z
zengyawen 已提交
66 67 68


### fillStyle
Z
zengyawen 已提交
69

H
geshi  
HelloCrease 已提交
70 71
```ts
// xxx.ets
Z
zengyawen 已提交
72 73 74
@Entry
@Component
struct FillStyleExample {
Y
yamila 已提交
75 76
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
77 78 79 80 81 82 83 84 85

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.fillStyle = '#0000ff'
86
          this.context.fillRect(20, 20, 150, 100)
Z
zengyawen 已提交
87 88 89 90 91 92 93 94
        })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
95
![zh-cn_image_0000001238712411](figures/zh-cn_image_0000001238712411.png)
Z
zengyawen 已提交
96

Z
zengyawen 已提交
97 98

### lineWidth
Z
zengyawen 已提交
99

H
geshi  
HelloCrease 已提交
100 101
```ts
// xxx.ets
Z
zengyawen 已提交
102 103 104
@Entry
@Component
struct LineWidthExample {
Y
yamila 已提交
105 106
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
        this.context.lineWidth = 5
        this.context.strokeRect(25, 25, 85, 105)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
125 126
![zh-cn_image_0000001194192432](figures/zh-cn_image_0000001194192432.png)

Z
zengyawen 已提交
127

Z
zengyawen 已提交
128
### strokeStyle
Z
zengyawen 已提交
129

H
geshi  
HelloCrease 已提交
130 131
```ts
// xxx.ets
Z
zengyawen 已提交
132 133 134
@Entry
@Component
struct StrokeStyleExample {
Y
yamila 已提交
135 136
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.lineWidth = 10
          this.context.strokeStyle = '#0000ff'
          this.context.strokeRect(25, 25, 155, 105)
        })
    }
    .width('100%')
    .height('100%')
  }
}
```


Z
zengyawen 已提交
157 158 159 160
![zh-cn_image_0000001194352432](figures/zh-cn_image_0000001194352432.png)


### lineCap
Z
zengyawen 已提交
161

H
geshi  
HelloCrease 已提交
162 163
```ts
// xxx.ets
Z
zengyawen 已提交
164 165 166
@Entry
@Component
struct LineCapExample {
Y
yamila 已提交
167 168
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.lineWidth = 8
          this.context.beginPath()
          this.context.lineCap = 'round'
          this.context.moveTo(30, 50)
          this.context.lineTo(220, 50)
          this.context.stroke()
        })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
191 192
![zh-cn_image_0000001238952373](figures/zh-cn_image_0000001238952373.png)

Z
zengyawen 已提交
193

Z
zengyawen 已提交
194
### lineJoin
Z
zengyawen 已提交
195

H
geshi  
HelloCrease 已提交
196 197
```ts
// xxx.ets
Z
zengyawen 已提交
198 199 200
@Entry
@Component
struct LineJoinExample {
Y
yamila 已提交
201 202
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
        this.context.beginPath()
        this.context.lineWidth = 8
        this.context.lineJoin = 'miter'
        this.context.moveTo(30, 30)
        this.context.lineTo(120, 60)
        this.context.lineTo(30, 110)
        this.context.stroke()
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
226
![zh-cn_image_0000001194032454](figures/zh-cn_image_0000001194032454.png)
Z
zengyawen 已提交
227

Z
zengyawen 已提交
228 229

### miterLimit
Z
zengyawen 已提交
230

H
geshi  
HelloCrease 已提交
231 232
```ts
// xxx.ets
Z
zengyawen 已提交
233 234 235
@Entry
@Component
struct MiterLimit {
Y
yamila 已提交
236 237
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.lineWidth = 8
          this.context.lineJoin = 'miter'
          this.context.miterLimit = 3
          this.context.moveTo(30, 30)
          this.context.lineTo(60, 35)
          this.context.lineTo(30, 37)
          this.context.stroke()
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
261 262
![zh-cn_image_0000001239032409](figures/zh-cn_image_0000001239032409.png)

Z
zengyawen 已提交
263

Z
zengyawen 已提交
264
### font
Z
zengyawen 已提交
265

H
geshi  
HelloCrease 已提交
266 267
```ts
// xxx.ets
Z
zengyawen 已提交
268 269
@Entry
@Component
G
gmy 已提交
270
struct Fonts {
Y
yamila 已提交
271 272
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.font = '30px sans-serif'
          this.context.fillText("Hello World", 20, 60)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
291
![zh-cn_image_0000001193872488](figures/zh-cn_image_0000001193872488.png)
Z
zengyawen 已提交
292

Z
zengyawen 已提交
293 294

### textAlign
Z
zengyawen 已提交
295

H
geshi  
HelloCrease 已提交
296 297
```ts
// xxx.ets
Z
zengyawen 已提交
298 299
@Entry
@Component
Y
yaoyuchi 已提交
300
struct CanvasExample {
Y
yamila 已提交
301 302
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
        this.context.strokeStyle = '#0000ff'
        this.context.moveTo(140, 10)
        this.context.lineTo(140, 160)
        this.context.stroke()
        this.context.font = '18px sans-serif'
        this.context.textAlign = 'start'
        this.context.fillText('textAlign=start', 140, 60)
        this.context.textAlign = 'end'
        this.context.fillText('textAlign=end', 140, 80)
        this.context.textAlign = 'left'
        this.context.fillText('textAlign=left', 140, 100)
        this.context.textAlign = 'center'
        this.context.fillText('textAlign=center',140, 120)
        this.context.textAlign = 'right'
        this.context.fillText('textAlign=right',140, 140)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
334 335
![zh-cn_image_0000001238832385](figures/zh-cn_image_0000001238832385.png)

Z
zengyawen 已提交
336

Z
zengyawen 已提交
337
### textBaseline
Z
zengyawen 已提交
338

H
geshi  
HelloCrease 已提交
339 340
```ts
// xxx.ets
Z
zengyawen 已提交
341 342 343
@Entry
@Component
struct TextBaseline {
Y
yamila 已提交
344 345
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.strokeStyle = '#0000ff'
          this.context.moveTo(0, 120)
          this.context.lineTo(400, 120)
          this.context.stroke()
          this.context.font = '20px sans-serif'
          this.context.textBaseline = 'top'
          this.context.fillText('Top', 10, 120)
          this.context.textBaseline = 'bottom'
          this.context.fillText('Bottom', 55, 120)
          this.context.textBaseline = 'middle'
          this.context.fillText('Middle', 125, 120)
          this.context.textBaseline = 'alphabetic'
          this.context.fillText('Alphabetic', 195, 120)
          this.context.textBaseline = 'hanging'
          this.context.fillText('Hanging', 295, 120)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
377
![zh-cn_image_0000001238712413](figures/zh-cn_image_0000001238712413.png)
Z
zengyawen 已提交
378

Z
zengyawen 已提交
379 380

### globalAlpha
Z
zengyawen 已提交
381

H
geshi  
HelloCrease 已提交
382 383
```ts
// xxx.ets
Z
zengyawen 已提交
384 385 386
@Entry
@Component
struct GlobalAlpha {
Y
yamila 已提交
387 388
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
389 390 391 392 393 394 395 396
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
397 398 399 400 401
          this.context.fillStyle = 'rgb(0,0,255)'
          this.context.fillRect(0, 0, 50, 50)
          this.context.globalAlpha = 0.4
          this.context.fillStyle = 'rgb(0,0,255)'
          this.context.fillRect(50, 50, 50, 50)
Z
zengyawen 已提交
402 403 404 405 406 407 408 409
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
410 411
![zh-cn_image_0000001194192434](figures/zh-cn_image_0000001194192434.png)

Z
zengyawen 已提交
412

Z
zengyawen 已提交
413
### lineDashOffset
Z
zengyawen 已提交
414

H
geshi  
HelloCrease 已提交
415 416
```ts
// xxx.ets
Z
zengyawen 已提交
417 418 419
@Entry
@Component
struct LineDashOffset {
Y
yamila 已提交
420 421
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
422 423 424 425 426 427 428 429 430 431
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.arc(100, 75, 50, 0, 6.28)
          this.context.setLineDash([10,20])
Y
yamila 已提交
432 433
          this.context.lineDashOffset = 10.0
          this.context.stroke()
Z
zengyawen 已提交
434 435 436 437 438 439 440 441
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
442 443 444 445 446
![zh-cn_image_0000001194352434](figures/zh-cn_image_0000001194352434.png)


### globalCompositeOperation

H
geshi  
HelloCrease 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
| 名称               | 描述                       |
| ---------------- | ------------------------ |
| source-over      | 在现有绘制内容上显示新绘制内容,属于默认值。   |
| source-atop      | 在现有绘制内容顶部显示新绘制内容。        |
| source-in        | 在现有绘制内容中显示新绘制内容。         |
| source-out       | 在现有绘制内容之外显示新绘制内容。        |
| destination-over | 在新绘制内容上方显示现有绘制内容。        |
| destination-atop | 在新绘制内容顶部显示现有绘制内容。        |
| destination-in   | 在新绘制内容中显示现有绘制内容。         |
| destination-out  | 在新绘制内容外显示现有绘制内容。         |
| lighter          | 显示新绘制内容和现有绘制内容。          |
| copy             | 显示新绘制内容而忽略现有绘制内容。        |
| xor              | 使用异或操作对新绘制内容与现有绘制内容进行融合。 |

```ts
// xxx.ets
Z
zengyawen 已提交
463 464 465
@Entry
@Component
struct GlobalCompositeOperation {
Y
yamila 已提交
466 467
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(20, 20, 50, 50)
          this.context.globalCompositeOperation = 'source-over'
          this.context.fillStyle = 'rgb(0,0,255)'
          this.context.fillRect(50, 50, 50, 50)
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(120, 20, 50, 50)
          this.context.globalCompositeOperation = 'destination-over'
          this.context.fillStyle = 'rgb(0,0,255)'
          this.context.fillRect(150, 50, 50, 50)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
494
![zh-cn_image_0000001238952375](figures/zh-cn_image_0000001238952375.png)
Z
zengyawen 已提交
495

Z
zengyawen 已提交
496 497

### shadowBlur
Z
zengyawen 已提交
498

H
geshi  
HelloCrease 已提交
499 500
```ts
// xxx.ets
Z
zengyawen 已提交
501 502 503
@Entry
@Component
struct ShadowBlur {
Y
yamila 已提交
504 505
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.shadowBlur = 30
          this.context.shadowColor = 'rgb(0,0,0)'
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(20, 20, 100, 80)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
526 527
![zh-cn_image_0000001194032456](figures/zh-cn_image_0000001194032456.png)

Z
zengyawen 已提交
528

Z
zengyawen 已提交
529
### shadowColor
Z
zengyawen 已提交
530

H
geshi  
HelloCrease 已提交
531 532
```ts
// xxx.ets
Z
zengyawen 已提交
533 534 535
@Entry
@Component
struct ShadowColor {
Y
yamila 已提交
536 537
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.shadowBlur = 30
          this.context.shadowColor = 'rgb(0,0,255)'
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(30, 30, 100, 100)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
558
![zh-cn_image_0000001239032411](figures/zh-cn_image_0000001239032411.png)
Z
zengyawen 已提交
559

Z
zengyawen 已提交
560 561

### shadowOffsetX
Z
zengyawen 已提交
562

H
geshi  
HelloCrease 已提交
563 564
```ts
// xxx.ets
Z
zengyawen 已提交
565 566 567
@Entry
@Component
struct ShadowOffsetX {
Y
yamila 已提交
568 569
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.shadowBlur = 10
          this.context.shadowOffsetX = 20
          this.context.shadowColor = 'rgb(0,0,0)'
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(20, 20, 100, 80)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
591 592
![zh-cn_image_0000001193872490](figures/zh-cn_image_0000001193872490.png)

Z
zengyawen 已提交
593

Z
zengyawen 已提交
594
### shadowOffsetY
Z
zengyawen 已提交
595

H
geshi  
HelloCrease 已提交
596 597
```ts
// xxx.ets
Z
zengyawen 已提交
598 599 600
@Entry
@Component
struct ShadowOffsetY {
Y
yamila 已提交
601 602
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.shadowBlur = 10
          this.context.shadowOffsetY = 20
          this.context.shadowColor = 'rgb(0,0,0)'
          this.context.fillStyle = 'rgb(255,0,0)'
          this.context.fillRect(30, 30, 100, 100)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
623
![zh-cn_image_0000001238832387](figures/zh-cn_image_0000001238832387.png)
Z
zengyawen 已提交
624

Z
zengyawen 已提交
625 626

### imageSmoothingEnabled
Z
zengyawen 已提交
627

H
geshi  
HelloCrease 已提交
628 629
```ts
// xxx.ets
Z
zengyawen 已提交
630 631 632
@Entry
@Component
struct ImageSmoothingEnabled {
Y
yamila 已提交
633 634 635
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
  private img:ImageBitmap = new ImageBitmap("common/images/icon.jpg")
Z
zengyawen 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
          this.context.imageSmoothingEnabled = false
          this.context.drawImage( this.img,0,0,400,200)
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

Z
zengyawen 已提交
654 655
![zh-cn_image_0000001238712415](figures/zh-cn_image_0000001238712415.png)

Z
zengyawen 已提交
656

657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
### height

```ts
// xxx.ets
@Entry
@Component
struct HeightExample {
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width(300)
        .height(300)
        .backgroundColor('#ffff00')
        .onReady(() => {
          let h = this.context.height
          let w = this.context.width
          this.context.fillRect(0, 0, 300, h/2)
        })
    }
    .width('100%')
    .height('100%')
  }
}
```

![zh-cn_image_canvas_height](figures/zh-cn_image_canvas_height.png)


### width

```ts
// xxx.ets
@Entry
@Component
struct WidthExample {
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width(300)
        .height(300)
        .backgroundColor('#ffff00')
        .onReady(() => {
          let h = this.context.height
          let w = this.context.width
          this.context.fillRect(0, 0, w/2, 300)
        })
    }
    .width('100%')
    .height('100%')
  }
}
```

![zh-cn_image_canvas_width](figures/zh-cn_image_canvas_width.png)


Z
zengyawen 已提交
719
## 方法
Z
zengyawen 已提交
720 721


Z
zengyawen 已提交
722 723 724
### fillRect

fillRect(x: number, y: number, w: number, h: number): void
Z
zengyawen 已提交
725 726 727

填充一个矩形。

Z
zhongjianfei 已提交
728 729
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
730 731
**参数:**

H
HelloCrease 已提交
732 733 734 735 736 737
| 参数     | 类型     | 必填   | 默认值  | 说明            |
| ------ | ------ | ---- | ---- | ------------- |
| x      | number | 是    | 0    | 指定矩形左上角点的x坐标。 |
| y      | number | 是    | 0    | 指定矩形左上角点的y坐标。 |
| width  | number | 是    | 0    | 指定矩形的宽度。      |
| height | number | 是    | 0    | 指定矩形的高度。      |
Z
zengyawen 已提交
738

L
lanyill 已提交
739
**示例:**
Z
zengyawen 已提交
740

H
geshi  
HelloCrease 已提交
741 742
  ```ts
  // xxx.ets
Z
zengyawen 已提交
743 744 745
  @Entry
  @Component
  struct FillRect {
Y
yamila 已提交
746 747
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
748 749 750 751 752 753 754 755
    
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
756
            this.context.fillRect(30,30,100,100)
Z
zengyawen 已提交
757 758 759 760
         })
        }
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
761
    }
Z
zengyawen 已提交
762 763
  }
  ```
Z
zengyawen 已提交
764

Z
zengyawen 已提交
765
  ![zh-cn_image_0000001194192436](figures/zh-cn_image_0000001194192436.png)
Z
zengyawen 已提交
766 767


Z
zengyawen 已提交
768
### strokeRect
Z
zengyawen 已提交
769

Z
zengyawen 已提交
770
strokeRect(x: number, y: number, w: number, h: number): void
Z
zengyawen 已提交
771 772 773

绘制具有边框的矩形,矩形内部不填充。

Z
zhongjianfei 已提交
774 775
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
776 777
**参数:**

H
HelloCrease 已提交
778 779 780 781 782 783
| 参数   | 类型     | 必填   | 默认值  | 说明           |
| ---- | ------ | ---- | ---- | ------------ |
| x    | number | 是    | 0    | 指定矩形的左上角x坐标。 |
| y    | number | 是    | 0    | 指定矩形的左上角y坐标。 |
| w    | number | 是    | 0    | 指定矩形的宽度。     |
| h    | number | 是    | 0    | 指定矩形的高度。     |
L
lanyill 已提交
784 785

**示例:**
Z
zengyawen 已提交
786

H
geshi  
HelloCrease 已提交
787 788
  ```ts
  // xxx.ets
Z
zengyawen 已提交
789 790 791
  @Entry
  @Component
  struct StrokeRect {
Y
yamila 已提交
792 793
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
794

Z
zengyawen 已提交
795 796 797 798 799 800 801 802 803
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.strokeRect(30, 30, 200, 150)
        })
Z
zengyawen 已提交
804
      }
Z
zengyawen 已提交
805 806
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
807
    }
Z
zengyawen 已提交
808 809
  }
  ```
Z
zengyawen 已提交
810

Z
zengyawen 已提交
811
  ![zh-cn_image_0000001194352436](figures/zh-cn_image_0000001194352436.png)
Z
zengyawen 已提交
812 813


Z
zengyawen 已提交
814
### clearRect
Z
zengyawen 已提交
815

Z
zengyawen 已提交
816
clearRect(x: number, y: number, w: number, h: number): void
Z
zengyawen 已提交
817 818 819

删除指定区域内的绘制内容。

Z
zhongjianfei 已提交
820 821
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
822 823
**参数:**

H
HelloCrease 已提交
824 825 826 827 828 829
| 参数   | 类型     | 必填   | 默认值  | 描述            |
| ---- | ------ | ---- | ---- | ------------- |
| x    | number | 是    | 0    | 指定矩形上的左上角x坐标。 |
| y    | number | 是    | 0    | 指定矩形上的左上角y坐标。 |
| w    | number | 是    | 0    | 指定矩形的宽度。      |
| h    | number | 是    | 0    | 指定矩形的高度。      |
L
lanyill 已提交
830 831

**示例:**
Z
zengyawen 已提交
832

H
geshi  
HelloCrease 已提交
833 834
  ```ts
  // xxx.ets
Z
zengyawen 已提交
835 836 837
  @Entry
  @Component
  struct ClearRect {
Y
yamila 已提交
838 839
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
840

Z
zengyawen 已提交
841 842 843 844 845
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
846
          .backgroundColor('#ffff00')
Z
zengyawen 已提交
847 848
          .onReady(() =>{
            this.context.fillStyle = 'rgb(0,0,255)'
L
lanyill 已提交
849 850
            this.context.fillRect(20,20,200,200)
            this.context.clearRect(30,30,150,100)
Z
zengyawen 已提交
851
        })
Z
zengyawen 已提交
852
      }
Z
zengyawen 已提交
853 854
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
855
    }
Z
zengyawen 已提交
856 857
  }
  ```
Z
zengyawen 已提交
858

Z
zengyawen 已提交
859
  ![zh-cn_image_0000001238952377](figures/zh-cn_image_0000001238952377.png)
Z
zengyawen 已提交
860 861


Z
zengyawen 已提交
862
### fillText
Z
zengyawen 已提交
863

L
lanyill 已提交
864
fillText(text: string, x: number, y: number, maxWidth?: number): void
Z
zengyawen 已提交
865 866 867

绘制填充类文本。

Z
zhongjianfei 已提交
868 869
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
870 871
**参数:**

Y
yamila 已提交
872 873 874 875 876 877
| 参数     | 类型   | 必填 | 默认值 | 说明                          |
| -------- | ------ | ---- | ------ | ----------------------------- |
| text     | string | 是   | ''     | 需要绘制的文本内容。          |
| x        | number | 是   | 0      | 需要绘制的文本的左下角x坐标。 |
| y        | number | 是   | 0      | 需要绘制的文本的左下角y坐标。 |
| maxWidth | number | 否   | -      | 指定文本允许的最大宽度。      |
L
lanyill 已提交
878 879

**示例:**
Z
zengyawen 已提交
880

H
geshi  
HelloCrease 已提交
881 882
  ```ts
  // xxx.ets
Z
zengyawen 已提交
883 884 885
  @Entry
  @Component
  struct FillText {
Y
yamila 已提交
886 887
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
888

Z
zengyawen 已提交
889 890 891 892 893 894 895 896 897 898
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.font = '30px sans-serif'
            this.context.fillText("Hello World!", 20, 100)
        })
Z
zengyawen 已提交
899
      }
Z
zengyawen 已提交
900 901
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
902
    }
Z
zengyawen 已提交
903 904
  }
  ```
Z
zengyawen 已提交
905

Z
zengyawen 已提交
906
  ![zh-cn_image_0000001194032458](figures/zh-cn_image_0000001194032458.png)
Z
zengyawen 已提交
907 908


Z
zengyawen 已提交
909
### strokeText
Z
zengyawen 已提交
910

L
lanyill 已提交
911
strokeText(text: string, x: number, y: number, maxWidth?:number): void
Z
zengyawen 已提交
912 913 914

绘制描边类文本。

Z
zhongjianfei 已提交
915 916
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
917 918
**参数:**

Y
yamila 已提交
919 920 921 922 923 924
| 参数     | 类型   | 必填 | 默认值 | 描述                          |
| -------- | ------ | ---- | ------ | ----------------------------- |
| text     | string | 是   | ''     | 需要绘制的文本内容。          |
| x        | number | 是   | 0      | 需要绘制的文本的左下角x坐标。 |
| y        | number | 是   | 0      | 需要绘制的文本的左下角y坐标。 |
| maxWidth | number | 否   | -      | 需要绘制的文本的最大宽度 。   |
L
lanyill 已提交
925 926

**示例:**
Z
zengyawen 已提交
927

H
geshi  
HelloCrease 已提交
928 929
  ```ts
  // xxx.ets
Z
zengyawen 已提交
930 931 932
  @Entry
  @Component
  struct StrokeText {
Y
yamila 已提交
933 934
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
935

Z
zengyawen 已提交
936 937 938 939 940 941 942 943 944 945
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.font = '55px sans-serif'
            this.context.strokeText("Hello World!", 20, 60)
        })
Z
zengyawen 已提交
946
      }
Z
zengyawen 已提交
947 948
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
949
    }
Z
zengyawen 已提交
950 951
  }
  ```
Z
zengyawen 已提交
952

Z
zengyawen 已提交
953
  ![zh-cn_image_0000001239032413](figures/zh-cn_image_0000001239032413.png)
Z
zengyawen 已提交
954 955


Z
zengyawen 已提交
956
### measureText
Z
zengyawen 已提交
957

Z
zengyawen 已提交
958
measureText(text: string): TextMetrics
Z
zengyawen 已提交
959 960 961

该方法返回一个文本测算的对象,通过该对象可以获取指定文本的宽度值。

Z
zhongjianfei 已提交
962 963
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
964 965
**参数:**

Y
yamila 已提交
966 967 968
| 参数 | 类型   | 必填 | 默认值 | 说明                 |
| ---- | ------ | ---- | ------ | -------------------- |
| text | string | 是   | ''     | 需要进行测量的文本。 |
Z
zengyawen 已提交
969

L
lanyill 已提交
970
**返回值:**
Z
zengyawen 已提交
971

Z
zhongjianfei 已提交
972 973 974
| 类型        | 说明                                                         |
| ----------- | ------------------------------------------------------------ |
| TextMetrics | 文本的尺寸信息。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
Z
zengyawen 已提交
975

L
lanyill 已提交
976 977
**TextMetrics类型描述:**

H
HelloCrease 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
| 属性                       | 类型     | 描述                                       |
| ------------------------ | ------ | ---------------------------------------- |
| width                    | number | 字符串的宽度。                                  |
| height                   | number | 字符串的高度。                                  |
| actualBoundingBoxAscent  | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到渲染文本的矩形边界顶部的距离,当前值为0。 |
| actualBoundingBoxDescent | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到渲染文本的矩形边界底部的距离,当前值为0。 |
| actualBoundingBoxLeft    | number | 平行于基线,从CanvasRenderingContext2D.textAlign 属性确定的对齐点到文本矩形边界左侧的距离,当前值为0。 |
| actualBoundingBoxRight   | number | 平行于基线,从CanvasRenderingContext2D.textAlign 属性确定的对齐点到文本矩形边界右侧的距离,当前值为0。 |
| alphabeticBaseline       | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到线框的 alphabetic 基线的距离,当前值为0。 |
| emHeightAscent           | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到线框中 em 方块顶部的距离,当前值为0。 |
| emHeightDescent          | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到线框中 em 方块底部的距离,当前值为0。 |
| fontBoundingBoxAscent    | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到渲染文本的所有字体的矩形最高边界顶部的距离,当前值为0。 |
| fontBoundingBoxDescent   | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到渲染文本的所有字体的矩形边界最底部的距离,当前值为0。 |
| hangingBaseline          | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到线框的 hanging 基线的距离,当前值为0。 |
| ideographicBaseline      | number | 从CanvasRenderingContext2D.textBaseline 属性标明的水平线到线框的 ideographic 基线的距离,当前值为0。 |
L
lanyill 已提交
993 994 995 996 997

  


**示例:**
Z
zengyawen 已提交
998

H
geshi  
HelloCrease 已提交
999 1000
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1001 1002 1003
  @Entry
  @Component
  struct MeasureText {
Y
yamila 已提交
1004 1005
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
1006

Z
zengyawen 已提交
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.font = '50px sans-serif'
            this.context.fillText("Hello World!", 20, 100)
            this.context.fillText("width:" + this.context.measureText("Hello World!").width, 20, 200)
        })
Z
zengyawen 已提交
1018
      }
Z
zengyawen 已提交
1019 1020
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1021
    }
Z
zengyawen 已提交
1022 1023
  }
  ```
Z
zengyawen 已提交
1024

Z
zengyawen 已提交
1025
  ![zh-cn_image_0000001193872492](figures/zh-cn_image_0000001193872492.png)
Z
zengyawen 已提交
1026 1027


Z
zengyawen 已提交
1028
### stroke
Z
zengyawen 已提交
1029

Z
zengyawen 已提交
1030
stroke(path?: Path2D): void
Z
zengyawen 已提交
1031 1032 1033

进行边框绘制操作。

Z
zhongjianfei 已提交
1034 1035
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1036 1037
**参数:**

H
HelloCrease 已提交
1038 1039 1040
| 参数   | 类型                                       | 必填   | 默认值  | 描述           |
| ---- | ---------------------------------------- | ---- | ---- | ------------ |
| path | [Path2D](ts-components-canvas-path2d.md) | 否    | null | 需要绘制的Path2D。 |
Z
zengyawen 已提交
1041

L
lanyill 已提交
1042
**示例:**
Z
zengyawen 已提交
1043

H
geshi  
HelloCrease 已提交
1044 1045
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1046 1047 1048
  @Entry
  @Component
  struct Stroke {
Y
yamila 已提交
1049 1050
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1051

Z
zengyawen 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.moveTo(25, 25)
            this.context.lineTo(25, 105)
L
lanyill 已提交
1061 1062
            this.context.lineTo(75, 105)
            this.context.lineTo(75, 25)
Z
zengyawen 已提交
1063 1064 1065
            this.context.strokeStyle = 'rgb(0,0,255)'
            this.context.stroke()
          })
Z
zengyawen 已提交
1066
      }
Z
zengyawen 已提交
1067 1068
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1069
    }
Z
zengyawen 已提交
1070 1071
  }
  ```
Z
zengyawen 已提交
1072

Z
zengyawen 已提交
1073
  ![zh-cn_image_0000001238832389](figures/zh-cn_image_0000001238832389.png)
Z
zengyawen 已提交
1074 1075


Z
zengyawen 已提交
1076
### beginPath
Z
zengyawen 已提交
1077

Z
zengyawen 已提交
1078
beginPath(): void
Z
zengyawen 已提交
1079 1080 1081

创建一个新的绘制路径。

Z
zhongjianfei 已提交
1082 1083
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1084 1085
**示例:**

H
geshi  
HelloCrease 已提交
1086 1087
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1088 1089 1090
  @Entry
  @Component
  struct BeginPath {
Y
yamila 已提交
1091 1092
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1093

Z
zengyawen 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
            this.context.lineWidth = 6
            this.context.strokeStyle = '#0000ff'
            this.context.moveTo(15, 80)
            this.context.lineTo(280, 160)
            this.context.stroke()
          })
Z
zengyawen 已提交
1108
      }
Z
zengyawen 已提交
1109 1110
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1111
    }
Z
zengyawen 已提交
1112 1113
  }
  ```
Z
zengyawen 已提交
1114

Z
zengyawen 已提交
1115
  ![zh-cn_image_0000001238712417](figures/zh-cn_image_0000001238712417.png)
Z
zengyawen 已提交
1116 1117


Z
zengyawen 已提交
1118
### moveTo
Z
zengyawen 已提交
1119

Z
zengyawen 已提交
1120
moveTo(x: number, y: number): void
Z
zengyawen 已提交
1121 1122 1123

路径从当前点移动到指定点。

Z
zhongjianfei 已提交
1124 1125
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1126 1127
**参数:**

H
HelloCrease 已提交
1128 1129 1130 1131
| 参数   | 类型     | 必填   | 默认值  | 说明        |
| ---- | ------ | ---- | ---- | --------- |
| x    | number | 是    | 0    | 指定位置的x坐标。 |
| y    | number | 是    | 0    | 指定位置的y坐标。 |
Z
zengyawen 已提交
1132

L
lanyill 已提交
1133
**示例:**
Z
zengyawen 已提交
1134

H
geshi  
HelloCrease 已提交
1135 1136
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1137 1138 1139
  @Entry
  @Component
  struct MoveTo {
Y
yamila 已提交
1140 1141
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1142

Z
zengyawen 已提交
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
            this.context.moveTo(10, 10)
            this.context.lineTo(280, 160)
            this.context.stroke()
          })
Z
zengyawen 已提交
1155
      }
Z
zengyawen 已提交
1156 1157
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1158
    }
Z
zengyawen 已提交
1159 1160
  }
  ```
Z
zengyawen 已提交
1161

Z
zengyawen 已提交
1162
  ![zh-cn_image_0000001194192438](figures/zh-cn_image_0000001194192438.png)
Z
zengyawen 已提交
1163 1164


Z
zengyawen 已提交
1165
### lineTo
Z
zengyawen 已提交
1166

Z
zengyawen 已提交
1167
lineTo(x: number, y: number): void
Z
zengyawen 已提交
1168 1169 1170

从当前点到指定点进行路径连接。

Z
zhongjianfei 已提交
1171 1172
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1173 1174
**参数:**

H
HelloCrease 已提交
1175 1176 1177 1178
| 参数   | 类型     | 必填   | 默认值  | 描述        |
| ---- | ------ | ---- | ---- | --------- |
| x    | number | 是    | 0    | 指定位置的x坐标。 |
| y    | number | 是    | 0    | 指定位置的y坐标。 |
Z
zengyawen 已提交
1179

L
lanyill 已提交
1180
**示例:**
Z
zengyawen 已提交
1181

H
geshi  
HelloCrease 已提交
1182 1183
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1184 1185 1186
  @Entry
  @Component
  struct LineTo {
Y
yamila 已提交
1187 1188
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1189

Z
zengyawen 已提交
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
            this.context.moveTo(10, 10)
            this.context.lineTo(280, 160)
            this.context.stroke()
          })
Z
zengyawen 已提交
1202
      }
Z
zengyawen 已提交
1203 1204
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1205
    }
Z
zengyawen 已提交
1206 1207
  }
  ```
Z
zengyawen 已提交
1208

Z
zengyawen 已提交
1209
  ![zh-cn_image_0000001194352438](figures/zh-cn_image_0000001194352438.png)
Z
zengyawen 已提交
1210 1211


Z
zengyawen 已提交
1212
### closePath
Z
zengyawen 已提交
1213

Z
zengyawen 已提交
1214
closePath(): void
Z
zengyawen 已提交
1215 1216 1217

结束当前路径形成一个封闭路径。

Z
zhongjianfei 已提交
1218 1219
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1220 1221
**示例:**

H
geshi  
HelloCrease 已提交
1222 1223
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1224 1225 1226
  @Entry
  @Component
  struct ClosePath {
Y
yamila 已提交
1227 1228
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1229

Z
zengyawen 已提交
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
              this.context.beginPath()
              this.context.moveTo(30, 30)
              this.context.lineTo(110, 30)
              this.context.lineTo(70, 90)
              this.context.closePath()
              this.context.stroke()
          })
Z
zengyawen 已提交
1244
      }
Z
zengyawen 已提交
1245 1246
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1247
    }
Z
zengyawen 已提交
1248 1249
  }
  ```
Z
zengyawen 已提交
1250

Z
zengyawen 已提交
1251
  ![zh-cn_image_0000001238952379](figures/zh-cn_image_0000001238952379.png)
Z
zengyawen 已提交
1252 1253


Z
zengyawen 已提交
1254
### createPattern
Z
zengyawen 已提交
1255

L
lanyill 已提交
1256
createPattern(image: ImageBitmap, repetition: string | null): CanvasPattern | null
Z
zengyawen 已提交
1257 1258 1259

通过指定图像和重复方式创建图片填充的模板。

Z
zhongjianfei 已提交
1260 1261
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1262 1263
**参数:**

Y
yamila 已提交
1264 1265 1266
| 参数       | 类型                                               | 必填 | 描述                                                         |
| ---------- | -------------------------------------------------- | ---- | ------------------------------------------------------------ |
| image      | [ImageBitmap](ts-components-canvas-imagebitmap.md) | 是   | 图源对象,具体参考ImageBitmap对象。                          |
Y
yamila 已提交
1267
| repetition | string                                             | 是   | 设置图像重复的方式,取值为:'repeat'、'repeat-x'、&nbsp'repeat-y'、'no-repeat'。<br/>默认值:'' |
Z
zengyawen 已提交
1268

L
lanyill 已提交
1269 1270
**返回值:**

H
HelloCrease 已提交
1271 1272 1273
| 类型                              | 说明                      |
| ------------------------------- | ----------------------- |
| [CanvasPattern](#canvaspattern) | 通过指定图像和重复方式创建图片填充的模板对象。 |
L
lanyill 已提交
1274 1275

**示例:**
Z
zengyawen 已提交
1276

H
geshi  
HelloCrease 已提交
1277 1278
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1279 1280 1281
  @Entry
  @Component
  struct CreatePattern {
Y
yamila 已提交
1282 1283 1284
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
    private img:ImageBitmap = new ImageBitmap("common/images/icon.jpg")
H
geshi  
HelloCrease 已提交
1285

Z
zengyawen 已提交
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var pattern = this.context.createPattern(this.img, 'repeat')
            this.context.fillStyle = pattern
            this.context.fillRect(0, 0, 200, 200)
          })
Z
zengyawen 已提交
1297
      }
Z
zengyawen 已提交
1298 1299
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1300
    }
Z
zengyawen 已提交
1301 1302
  }
  ```
Z
zengyawen 已提交
1303

Z
zengyawen 已提交
1304
  ![zh-cn_image_0000001194032460](figures/zh-cn_image_0000001194032460.png)
Z
zengyawen 已提交
1305 1306


Z
zengyawen 已提交
1307
### bezierCurveTo
Z
zengyawen 已提交
1308

Z
zengyawen 已提交
1309
bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void
Z
zengyawen 已提交
1310 1311 1312

创建三次贝赛尔曲线的路径。

Z
zhongjianfei 已提交
1313 1314
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1315 1316
**参数:**

H
HelloCrease 已提交
1317 1318 1319 1320 1321 1322 1323 1324
| 参数   | 类型     | 必填   | 默认值  | 描述             |
| ---- | ------ | ---- | ---- | -------------- |
| cp1x | number | 是    | 0    | 第一个贝塞尔参数的x坐标值。 |
| cp1y | number | 是    | 0    | 第一个贝塞尔参数的y坐标值。 |
| cp2x | number | 是    | 0    | 第二个贝塞尔参数的x坐标值。 |
| cp2y | number | 是    | 0    | 第二个贝塞尔参数的y坐标值。 |
| x    | number | 是    | 0    | 路径结束时的x坐标值。    |
| y    | number | 是    | 0    | 路径结束时的y坐标值。    |
Z
zengyawen 已提交
1325

L
lanyill 已提交
1326 1327
**示例:**

H
geshi  
HelloCrease 已提交
1328 1329
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1330 1331 1332
  @Entry
  @Component
  struct BezierCurveTo {
Y
yamila 已提交
1333 1334
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1335

Z
zengyawen 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
            this.context.moveTo(10, 10)
            this.context.bezierCurveTo(20, 100, 200, 100, 200, 20)
            this.context.stroke()
          })
Z
zengyawen 已提交
1348
      }
Z
zengyawen 已提交
1349 1350
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1351
    }
Z
zengyawen 已提交
1352 1353
  }
  ```
Z
zengyawen 已提交
1354

Z
zengyawen 已提交
1355
  ![zh-cn_image_0000001239032415](figures/zh-cn_image_0000001239032415.png)
Z
zengyawen 已提交
1356 1357


Z
zengyawen 已提交
1358
### quadraticCurveTo
Z
zengyawen 已提交
1359

Z
zengyawen 已提交
1360
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void
Z
zengyawen 已提交
1361 1362 1363

创建二次贝赛尔曲线的路径。

Z
zhongjianfei 已提交
1364 1365
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1366 1367
**参数:**

H
HelloCrease 已提交
1368 1369 1370 1371 1372 1373
| 参数   | 类型     | 必填   | 默认值  | 描述          |
| ---- | ------ | ---- | ---- | ----------- |
| cpx  | number | 是    | 0    | 贝塞尔参数的x坐标值。 |
| cpy  | number | 是    | 0    | 贝塞尔参数的y坐标值。 |
| x    | number | 是    | 0    | 路径结束时的x坐标值。 |
| y    | number | 是    | 0    | 路径结束时的y坐标值。 |
Z
zengyawen 已提交
1374

L
lanyill 已提交
1375
**示例:**
Z
zengyawen 已提交
1376

H
geshi  
HelloCrease 已提交
1377 1378
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1379 1380 1381
  @Entry
  @Component
  struct QuadraticCurveTo {
Y
yamila 已提交
1382 1383
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
1384

Z
zengyawen 已提交
1385 1386 1387 1388 1389 1390 1391
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
Y
yamila 已提交
1392 1393 1394 1395
            this.context.beginPath()
            this.context.moveTo(20, 20)
            this.context.quadraticCurveTo(100, 100, 200, 20)
            this.context.stroke()
Z
zengyawen 已提交
1396
        })
Z
zengyawen 已提交
1397
      }
Z
zengyawen 已提交
1398 1399
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1400
    }
Z
zengyawen 已提交
1401 1402
  }
  ```
Z
zengyawen 已提交
1403

Z
zengyawen 已提交
1404
  ![zh-cn_image_0000001193872494](figures/zh-cn_image_0000001193872494.png)
Z
zengyawen 已提交
1405 1406


Z
zengyawen 已提交
1407
### arc
Z
zengyawen 已提交
1408

L
lanyill 已提交
1409
arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
Z
zengyawen 已提交
1410 1411 1412

绘制弧线路径。

Z
zhongjianfei 已提交
1413 1414
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1415 1416
**参数:**

H
HelloCrease 已提交
1417 1418 1419 1420 1421 1422 1423 1424
| 参数               | 类型      | 必填   | 默认值   | 描述         |
| ---------------- | ------- | ---- | ----- | ---------- |
| x                | number  | 是    | 0     | 弧线圆心的x坐标值。 |
| y                | number  | 是    | 0     | 弧线圆心的y坐标值。 |
| radius           | number  | 是    | 0     | 弧线的圆半径。    |
| startAngle       | number  | 是    | 0     | 弧线的起始弧度。   |
| endAngle         | number  | 是    | 0     | 弧线的终止弧度。   |
| counterclockwise | boolean | 否    | false | 是否逆时针绘制圆弧。 |
L
lanyill 已提交
1425 1426

**示例:**
Z
zengyawen 已提交
1427

H
geshi  
HelloCrease 已提交
1428 1429
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1430 1431 1432
  @Entry
  @Component
  struct Arc {
Y
yamila 已提交
1433 1434
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1435

Z
zengyawen 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
            this.context.arc(100, 75, 50, 0, 6.28)
            this.context.stroke()
          })
Z
zengyawen 已提交
1447
      }
Z
zengyawen 已提交
1448 1449
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1450
    }
Z
zengyawen 已提交
1451 1452
  }
  ```
Z
zengyawen 已提交
1453

Z
zengyawen 已提交
1454
  ![zh-cn_image_0000001238832391](figures/zh-cn_image_0000001238832391.png)
Z
zengyawen 已提交
1455 1456


Z
zengyawen 已提交
1457
### arcTo
Z
zengyawen 已提交
1458

Z
zengyawen 已提交
1459
arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void
Z
zengyawen 已提交
1460 1461 1462

依据圆弧经过的点和圆弧半径创建圆弧路径。

Z
zhongjianfei 已提交
1463 1464
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1465 1466
**参数:**

H
HelloCrease 已提交
1467 1468 1469 1470 1471 1472 1473
| 参数     | 类型     | 必填   | 默认值  | 描述              |
| ------ | ------ | ---- | ---- | --------------- |
| x1     | number | 是    | 0    | 圆弧经过的第一个点的x坐标值。 |
| y1     | number | 是    | 0    | 圆弧经过的第一个点的y坐标值。 |
| x2     | number | 是    | 0    | 圆弧经过的第二个点的x坐标值。 |
| y2     | number | 是    | 0    | 圆弧经过的第二个点的y坐标值。 |
| radius | number | 是    | 0    | 圆弧的圆半径值。        |
Z
zengyawen 已提交
1474

L
lanyill 已提交
1475
**示例:**
Z
zengyawen 已提交
1476

H
geshi  
HelloCrease 已提交
1477 1478
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1479 1480 1481
  @Entry
  @Component
  struct ArcTo {
Y
yamila 已提交
1482 1483
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1484

Z
zengyawen 已提交
1485 1486 1487 1488 1489 1490 1491
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
Y
yamila 已提交
1492 1493 1494
            this.context.moveTo(100, 20)
            this.context.arcTo(150, 20, 150, 70, 50)
            this.context.stroke()
Z
zengyawen 已提交
1495
          })
Z
zengyawen 已提交
1496
      }
Z
zengyawen 已提交
1497 1498
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1499
    }
Z
zengyawen 已提交
1500 1501
  }
  ```
Z
zengyawen 已提交
1502

Z
zengyawen 已提交
1503
  ![zh-cn_image_0000001238712419](figures/zh-cn_image_0000001238712419.png)
Z
zengyawen 已提交
1504 1505


Z
zengyawen 已提交
1506
### ellipse
Z
zengyawen 已提交
1507

L
lanyill 已提交
1508
ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
Z
zengyawen 已提交
1509 1510 1511

在规定的矩形区域绘制一个椭圆。

Z
zhongjianfei 已提交
1512 1513
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1514 1515
**参数:**

H
HelloCrease 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524
| 参数               | 类型      | 必填   | 默认值   | 说明                |
| ---------------- | ------- | ---- | ----- | ----------------- |
| x                | number  | 是    | 0     | 椭圆圆心的x轴坐标。        |
| y                | number  | 是    | 0     | 椭圆圆心的y轴坐标。        |
| radiusX          | number  | 是    | 0     | 椭圆x轴的半径长度。        |
| radiusY          | number  | 是    | 0     | 椭圆y轴的半径长度。        |
| rotation         | number  | 是    | 0     | 椭圆的旋转角度,单位为弧度。    |
| startAngle       | number  | 是    | 0     | 椭圆绘制的起始点角度,以弧度表示。 |
| endAngle         | number  | 是    | 0     | 椭圆绘制的结束点角度,以弧度表示。 |
L
lanyill 已提交
1525
| counterclockwise | boolean | 否    | false | 是否以逆时针方向绘制椭圆。<br>true:逆时针方向绘制椭圆。<br>false:顺时针方向绘制椭圆。     |
Z
zengyawen 已提交
1526

L
lanyill 已提交
1527
**示例:**
Z
zengyawen 已提交
1528

H
geshi  
HelloCrease 已提交
1529 1530
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1531 1532 1533
  @Entry
  @Component
  struct CanvasExample {
Y
yamila 已提交
1534 1535
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1536

Z
zengyawen 已提交
1537 1538 1539 1540 1541 1542 1543 1544
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.beginPath()
L
lanyill 已提交
1545
            this.context.ellipse(200, 200, 50, 100, Math.PI * 0.25, Math.PI * 0.5, Math.PI * 2)
Z
zengyawen 已提交
1546 1547
            this.context.stroke()
          })
Z
zengyawen 已提交
1548
      }
Z
zengyawen 已提交
1549 1550
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1551
    }
Z
zengyawen 已提交
1552 1553
  }
  ```
H
geshi  
HelloCrease 已提交
1554

Z
zengyawen 已提交
1555
  ![zh-cn_image_0000001194192440](figures/zh-cn_image_0000001194192440.png)
Z
zengyawen 已提交
1556 1557


Z
zengyawen 已提交
1558
### rect
Z
zengyawen 已提交
1559

L
lanyill 已提交
1560
rect(x: number, y: number, w: number, h: number): void
Z
zengyawen 已提交
1561 1562 1563

创建矩形路径。

Z
zhongjianfei 已提交
1564 1565
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1566 1567
**参数:**

H
HelloCrease 已提交
1568 1569 1570 1571 1572 1573
| 参数   | 类型     | 必填   | 默认值  | 描述            |
| ---- | ------ | ---- | ---- | ------------- |
| x    | number | 是    | 0    | 指定矩形的左上角x坐标值。 |
| y    | number | 是    | 0    | 指定矩形的左上角y坐标值。 |
| w    | number | 是    | 0    | 指定矩形的宽度。      |
| h    | number | 是    | 0    | 指定矩形的高度。      |
L
lanyill 已提交
1574 1575

**示例:**
Z
zengyawen 已提交
1576

H
geshi  
HelloCrease 已提交
1577 1578
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1579 1580 1581
  @Entry
  @Component
  struct CanvasExample {
Y
yamila 已提交
1582 1583
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1584

Z
zengyawen 已提交
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.rect(20, 20, 100, 100) // Create a 100*100 rectangle at (20, 20)
            this.context.stroke()
          })
Z
zengyawen 已提交
1595
      }
Z
zengyawen 已提交
1596 1597
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1598
    }
Z
zengyawen 已提交
1599 1600
  }
  ```
Z
zengyawen 已提交
1601

Z
zengyawen 已提交
1602
  ![zh-cn_image_0000001194352440](figures/zh-cn_image_0000001194352440.png)
Z
zengyawen 已提交
1603 1604


Z
zengyawen 已提交
1605
### fill
Z
zengyawen 已提交
1606

L
lanyill 已提交
1607
fill(fillRule?: CanvasFillRule): void
Z
zengyawen 已提交
1608 1609 1610

对封闭路径进行填充。

Z
zhongjianfei 已提交
1611 1612
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1613 1614
**参数:** 

H
HelloCrease 已提交
1615 1616 1617
| 参数       | 类型             | 必填   | 默认值       | 描述                                       |
| -------- | -------------- | ---- | --------- | ---------------------------------------- |
| fillRule | CanvasFillRule | 否    | "nonzero" | 指定要填充对象的规则。<br/>可选参数为:"nonzero", "evenodd"。 |
L
lanyill 已提交
1618 1619 1620 1621


**示例:**   

H
geshi  
HelloCrease 已提交
1622 1623
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1624 1625 1626
  @Entry
  @Component
  struct Fill {
Y
yamila 已提交
1627 1628
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1629

Z
zengyawen 已提交
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.rect(20, 20, 100, 100) // Create a 100*100 rectangle at (20, 20)
            this.context.fill()
          })
Z
zengyawen 已提交
1640
      }
Z
zengyawen 已提交
1641 1642
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1643
    }
Z
zengyawen 已提交
1644 1645
  }
  ```
Z
zengyawen 已提交
1646

Z
zengyawen 已提交
1647
  ![zh-cn_image_0000001238952381](figures/zh-cn_image_0000001238952381.png)
Z
zengyawen 已提交
1648 1649


L
lanyill 已提交
1650 1651 1652 1653
fill(path: Path2D, fillRule?: CanvasFillRule): void

对封闭路径进行填充。

Z
zhongjianfei 已提交
1654 1655
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1656 1657
**参数:** 

H
HelloCrease 已提交
1658 1659 1660 1661
| 参数       | 类型             | 必填   | 默认值       | 描述                                       |
| -------- | -------------- | ---- | --------- | ---------------------------------------- |
| path     | Path2D         | 是    |           | Path2D填充路径。                              |
| fillRule | CanvasFillRule | 否    | "nonzero" | 指定要填充对象的规则。<br/>可选参数为:"nonzero", "evenodd"。 |
L
lanyill 已提交
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680


**示例:**   

```ts
// xxx.ets
@Entry
@Component
struct Fill {
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Canvas(this.context)
        .width('100%')
        .height('100%')
        .backgroundColor('#ffff00')
        .onReady(() =>{
Y
yamila 已提交
1681 1682 1683 1684 1685 1686 1687 1688
          let region = new Path2D()
          region.moveTo(30, 90)
          region.lineTo(110, 20)
          region.lineTo(240, 130)
          region.lineTo(60, 130)
          region.lineTo(190, 20)
          region.lineTo(270, 90)
          region.closePath()
L
lanyill 已提交
1689
          // Fill path
1690
          this.context.fillStyle = '#00ff00'
Y
yamila 已提交
1691
          this.context.fill(region, "evenodd")
L
lanyill 已提交
1692 1693 1694 1695 1696 1697
        })
    }
    .width('100%')
    .height('100%')
  }
}
H
HelloCrease 已提交
1698
```
L
lanyill 已提交
1699 1700 1701 1702

 ![zh-cn_image_000000127777774](figures/zh-cn_image_000000127777774.png)


Z
zengyawen 已提交
1703
### clip
Z
zengyawen 已提交
1704

L
lanyill 已提交
1705
clip(fillRule?: CanvasFillRule): void
Z
zengyawen 已提交
1706 1707 1708

设置当前路径为剪切路径。

Z
zhongjianfei 已提交
1709 1710
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1711 1712
**参数:** 

H
HelloCrease 已提交
1713 1714 1715
| 参数       | 类型             | 必填   | 默认值       | 描述                                       |
| -------- | -------------- | ---- | --------- | ---------------------------------------- |
| fillRule | CanvasFillRule | 否    | "nonzero" | 指定要剪切对象的规则。<br/>可选参数为:"nonzero", "evenodd"。 |
L
lanyill 已提交
1716 1717 1718

**示例:** 

H
geshi  
HelloCrease 已提交
1719 1720
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1721 1722 1723
  @Entry
  @Component
  struct Clip {
Y
yamila 已提交
1724 1725
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1726

Z
zengyawen 已提交
1727 1728 1729 1730 1731 1732 1733
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
L
lanyill 已提交
1734
            this.context.rect(0, 0, 100, 200)
Z
zengyawen 已提交
1735 1736 1737
            this.context.stroke()
            this.context.clip()
            this.context.fillStyle = "rgb(255,0,0)"
L
lanyill 已提交
1738
            this.context.fillRect(0, 0, 200, 200)
Z
zengyawen 已提交
1739
          })
Z
zengyawen 已提交
1740
      }
Z
zengyawen 已提交
1741 1742
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1743
    }
Z
zengyawen 已提交
1744 1745
  }
  ```
H
geshi  
HelloCrease 已提交
1746

Z
zengyawen 已提交
1747
  ![zh-cn_image_0000001194032462](figures/zh-cn_image_0000001194032462.png)
Z
zengyawen 已提交
1748 1749


L
lanyill 已提交
1750 1751
clip(path: Path2D, fillRule?: CanvasFillRule): void

L
lanyill 已提交
1752
设置当前路径为剪切路径
L
lanyill 已提交
1753

Z
zhongjianfei 已提交
1754 1755
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1756 1757
**参数:** 

H
HelloCrease 已提交
1758 1759 1760 1761 1762
| 参数       | 类型             | 必填   | 默认值       | 描述                                       |
| -------- | -------------- | ---- | --------- | ---------------------------------------- |
| path     | Path2D         | 是    | -         | Path2D剪切路径。                              |
| fillRule | CanvasFillRule | 否    | "nonzero" | 指定要剪切对象的规则。<br/>可选参数为:"nonzero", "evenodd"。 |

L
lanyill 已提交
1763

L
lanyill 已提交
1764 1765 1766 1767
**示例:** 

  ```ts
  // xxx.ets
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
  @Entry
  @Component
  struct Clip {
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            let region = new Path2D()
            region.moveTo(30, 90)
            region.lineTo(110, 20)
            region.lineTo(240, 130)
            region.lineTo(60, 130)
            region.lineTo(190, 20)
            region.lineTo(270, 90)
            region.closePath()
            this.context.clip(region,"evenodd")
            this.context.fillStyle = "rgb(0,255,0)"
            this.context.fillRect(0, 0, this.context.width, this.context.height)
          })
      }
      .width('100%')
      .height('100%')
L
lanyill 已提交
1795 1796 1797 1798 1799 1800
    }
  }
  ```

  ![zh-cn_image_000000127777779](figures/zh-cn_image_000000127777779.png)

L
lanyill 已提交
1801 1802 1803 1804 1805 1806 1807

### filter

filter(filter: string): void

为Canvas图形设置各类滤镜效果。该接口为空接口。

Z
zhongjianfei 已提交
1808 1809
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1810 1811
**参数:**

H
HelloCrease 已提交
1812 1813 1814
| 参数     | 类型     | 必填   | 默认值  | 说明           |
| ------ | ------ | ---- | ---- | ------------ |
| filter | string | 是    | -    | 接受各类滤镜效果的函数。 |
L
lanyill 已提交
1815 1816 1817 1818 1819 1820 1821 1822


### getTransform

getTransform(): Matrix2D

获取当前被应用到上下文的转换矩阵。该接口为空接口。

Z
zhongjianfei 已提交
1823 1824
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1825 1826 1827 1828 1829 1830 1831

### resetTransform

resetTransform(): void

使用单位矩阵重新设置当前变形。该接口为空接口。

Z
zhongjianfei 已提交
1832 1833
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1834 1835 1836 1837 1838 1839 1840

### direction

direction(direction: CanvasDirection): void

绘制文本时,描述当前文本方向的属性。该接口为空接口。

Z
zhongjianfei 已提交
1841 1842
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1843

Z
zengyawen 已提交
1844
### rotate
Z
zengyawen 已提交
1845

L
lanyill 已提交
1846
rotate(angle: number): void
Z
zengyawen 已提交
1847 1848 1849

针对当前坐标轴进行顺时针旋转。

Z
zhongjianfei 已提交
1850 1851
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1852 1853
**参数:**

H
HelloCrease 已提交
1854 1855 1856
| 参数    | 类型     | 必填   | 默认值  | 描述                                       |
| ----- | ------ | ---- | ---- | ---------------------------------------- |
| angle | number | 是    | 0    | 设置顺时针旋转的弧度值,可以通过Math.PI&nbsp;/&nbsp;180将角度转换为弧度值。 |
L
lanyill 已提交
1857 1858

**示例:**
Z
zengyawen 已提交
1859

H
geshi  
HelloCrease 已提交
1860 1861
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1862 1863 1864
  @Entry
  @Component
  struct Rotate {
Y
yamila 已提交
1865 1866
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1867

Z
zengyawen 已提交
1868 1869 1870 1871 1872 1873 1874
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
L
lanyill 已提交
1875
            this.context.rotate(45 * Math.PI / 180)
Z
zengyawen 已提交
1876 1877
            this.context.fillRect(70, 20, 50, 50)
          })
Z
zengyawen 已提交
1878
      }
Z
zengyawen 已提交
1879 1880
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1881
    }
Z
zengyawen 已提交
1882 1883
  }
  ```
Z
zengyawen 已提交
1884

Z
zengyawen 已提交
1885
  ![zh-cn_image_0000001239032417](figures/zh-cn_image_0000001239032417.png)
Z
zengyawen 已提交
1886 1887


Z
zengyawen 已提交
1888
### scale
Z
zengyawen 已提交
1889

Z
zengyawen 已提交
1890
scale(x: number, y: number): void
Z
zengyawen 已提交
1891 1892 1893

设置canvas画布的缩放变换属性,后续的绘制操作将按照缩放比例进行缩放。

Z
zhongjianfei 已提交
1894 1895
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
1896 1897
**参数:**

H
HelloCrease 已提交
1898 1899 1900 1901
| 参数   | 类型     | 必填   | 默认值  | 描述          |
| ---- | ------ | ---- | ---- | ----------- |
| x    | number | 是    | 0    | 设置水平方向的缩放值。 |
| y    | number | 是    | 0    | 设置垂直方向的缩放值。 |
Z
zengyawen 已提交
1902

L
lanyill 已提交
1903
**示例:**
Z
zengyawen 已提交
1904

H
geshi  
HelloCrease 已提交
1905 1906
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1907 1908 1909
  @Entry
  @Component
  struct Scale {
Y
yamila 已提交
1910 1911
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1912

Z
zengyawen 已提交
1913 1914 1915 1916 1917 1918 1919
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
L
lanyill 已提交
1920 1921
            this.context.lineWidth = 3
            this.context.strokeRect(30, 30, 50, 50)
Z
zengyawen 已提交
1922
            this.context.scale(2, 2) // Scale to 200%
L
lanyill 已提交
1923
            this.context.strokeRect(30, 30, 50, 50)
Z
zengyawen 已提交
1924
          })
Z
zengyawen 已提交
1925
      }
Z
zengyawen 已提交
1926 1927
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1928
    }
Z
zengyawen 已提交
1929 1930
  }
  ```
Z
zengyawen 已提交
1931

Z
zengyawen 已提交
1932
  ![zh-cn_image_0000001193872498](figures/zh-cn_image_0000001193872498.png)
Z
zengyawen 已提交
1933 1934


Z
zengyawen 已提交
1935
### transform
Z
zengyawen 已提交
1936

L
lanyill 已提交
1937
transform(a: number, b: number, c: number, d: number, e: number, f: number): void
Z
zengyawen 已提交
1938 1939 1940

transform方法对应一个变换矩阵,想对一个图形进行变化的时候,只要设置此变换矩阵相应的参数,对图形的各个定点的坐标分别乘以这个矩阵,就能得到新的定点的坐标。矩阵变换效果可叠加。

Z
zhongjianfei 已提交
1941 1942
从API version 9开始,该接口支持在ArkTS卡片中使用。

Z
zengyawen 已提交
1943 1944
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 变换后的坐标计算方式(x和y为变换前坐标,x'和y'为变换后坐标):
H
geshi  
HelloCrease 已提交
1945
>
Z
zengyawen 已提交
1946
> - x' = scaleX \* x + skewY \* y + translateX
H
geshi  
HelloCrease 已提交
1947
>
Z
zengyawen 已提交
1948 1949
> - y' = skewX \* x + scaleY \* y + translateY

L
lanyill 已提交
1950 1951
**参数:**

H
HelloCrease 已提交
1952 1953 1954 1955 1956 1957 1958 1959
| 参数   | 类型     | 必填   | 默认值  | 描述                   |
| ---- | ------ | ---- | ---- | -------------------- |
| a    | number | 是    | 0    | scaleX: 指定水平缩放值。     |
| b    | number | 是    | 0    | skewX: 指定水平倾斜值。      |
| c    | number | 是    | 0    | skewY: 指定垂直倾斜值。      |
| d    | number | 是    | 0    | scaleY: 指定垂直缩放值。     |
| e    | number | 是    | 0    | translateX: 指定水平移动值。 |
| f    | number | 是    | 0    | translateY: 指定垂直移动值。 |
L
lanyill 已提交
1960 1961 1962

**示例:**

H
geshi  
HelloCrease 已提交
1963 1964
  ```ts
  // xxx.ets
Z
zengyawen 已提交
1965 1966 1967
  @Entry
  @Component
  struct Transform {
Y
yamila 已提交
1968 1969
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
1970

Z
zengyawen 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.fillStyle = 'rgb(0,0,0)'
            this.context.fillRect(0, 0, 100, 100)
            this.context.transform(1, 0.5, -0.5, 1, 10, 10)
            this.context.fillStyle = 'rgb(255,0,0)'
            this.context.fillRect(0, 0, 100, 100)
            this.context.transform(1, 0.5, -0.5, 1, 10, 10)
            this.context.fillStyle = 'rgb(0,0,255)'
            this.context.fillRect(0, 0, 100, 100)
          })
Z
zengyawen 已提交
1987
      }
Z
zengyawen 已提交
1988 1989
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
1990
    }
Z
zengyawen 已提交
1991 1992 1993 1994 1995 1996 1997 1998
  }
  ```

  ![zh-cn_image_0000001238832395](figures/zh-cn_image_0000001238832395.png)


### setTransform

L
lanyill 已提交
1999
setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void
Z
zengyawen 已提交
2000

H
HelloCrease 已提交
2001
setTransform方法使用的参数和transform()方法相同,但setTransform()方法会重置现有的变换矩阵并创建新的变换矩阵。
Z
zengyawen 已提交
2002

Z
zhongjianfei 已提交
2003 2004
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2005 2006
**参数:**

H
HelloCrease 已提交
2007 2008 2009 2010 2011 2012 2013 2014
| 参数   | 类型     | 必填   | 默认值  | 描述                   |
| ---- | ------ | ---- | ---- | -------------------- |
| a    | number | 是    | 0    | scaleX: 指定水平缩放值。     |
| b    | number | 是    | 0    | skewX: 指定水平倾斜值。      |
| c    | number | 是    | 0    | skewY: 指定垂直倾斜值。      |
| d    | number | 是    | 0    | scaleY: 指定垂直缩放值。     |
| e    | number | 是    | 0    | translateX: 指定水平移动值。 |
| f    | number | 是    | 0    | translateY: 指定垂直移动值。 |
L
lanyill 已提交
2015 2016 2017

**示例:**

H
geshi  
HelloCrease 已提交
2018 2019
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2020 2021 2022
  @Entry
  @Component
  struct SetTransform {
Y
yamila 已提交
2023 2024
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
2025

Z
zengyawen 已提交
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.fillStyle = 'rgb(255,0,0)'
            this.context.fillRect(0, 0, 100, 100)
            this.context.setTransform(1,0.5, -0.5, 1, 10, 10)
            this.context.fillStyle = 'rgb(0,0,255)'
            this.context.fillRect(0, 0, 100, 100)
          })
Z
zengyawen 已提交
2039
      }
Z
zengyawen 已提交
2040 2041
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2042
    }
Z
zengyawen 已提交
2043 2044
  }
  ```
Z
zengyawen 已提交
2045

Z
zengyawen 已提交
2046
  ![zh-cn_image_0000001238712421](figures/zh-cn_image_0000001238712421.png)
Z
zengyawen 已提交
2047 2048


L
lanyill 已提交
2049 2050 2051 2052
setTransform(transform?: Matrix2D): void

以Matrix2D对象为模板重置现有的变换矩阵并创建新的变换矩阵。该接口为空接口。

2053 2054
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2055

Z
zengyawen 已提交
2056
### translate
Z
zengyawen 已提交
2057

Z
zengyawen 已提交
2058
translate(x: number, y: number): void
Z
zengyawen 已提交
2059 2060 2061

移动当前坐标系的原点。

Z
zhongjianfei 已提交
2062 2063
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2064 2065
**参数:**

H
HelloCrease 已提交
2066 2067 2068 2069
| 参数   | 类型     | 必填   | 默认值  | 描述       |
| ---- | ------ | ---- | ---- | -------- |
| x    | number | 是    | 0    | 设置水平平移量。 |
| y    | number | 是    | 0    | 设置竖直平移量。 |
Z
zengyawen 已提交
2070

L
lanyill 已提交
2071
**示例:**
Z
zengyawen 已提交
2072

H
geshi  
HelloCrease 已提交
2073 2074
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2075 2076 2077
  @Entry
  @Component
  struct Translate {
Y
yamila 已提交
2078 2079
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
2080

Z
zengyawen 已提交
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.fillRect(10, 10, 50, 50)
            this.context.translate(70, 70)
            this.context.fillRect(10, 10, 50, 50)
          })
Z
zengyawen 已提交
2092
      }
Z
zengyawen 已提交
2093 2094
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2095
    }
Z
zengyawen 已提交
2096 2097
  }
  ```
Z
zengyawen 已提交
2098

Z
zengyawen 已提交
2099
  ![zh-cn_image_0000001194192446](figures/zh-cn_image_0000001194192446.png)
Z
zengyawen 已提交
2100 2101


Z
zengyawen 已提交
2102
### drawImage
Z
zengyawen 已提交
2103

Y
yaoyuchi 已提交
2104
drawImage(image: ImageBitmap | PixelMap, dx: number, dy: number): void
Z
zengyawen 已提交
2105

L
lanyill 已提交
2106
drawImage(image: ImageBitmap | PixelMap, dx: number, dy: number, dw: number, dh: number): void
Z
zengyawen 已提交
2107

L
lanyill 已提交
2108
drawImage(image: ImageBitmap | PixelMap, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number):void
Z
zengyawen 已提交
2109 2110 2111

进行图像绘制。

Z
zhongjianfei 已提交
2112
从API version 9开始,该接口支持在ArkTS卡片中使用,卡片中不支持PixelMap对象。
2113

L
lanyill 已提交
2114 2115
**参数:**

H
HelloCrease 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
| 参数    | 类型                                       | 必填   | 默认值  | 描述                                       |
| ----- | ---------------------------------------- | ---- | ---- | ---------------------------------------- |
| image | [ImageBitmap](ts-components-canvas-imagebitmap.md)[PixelMap](../apis/js-apis-image.md#pixelmap7) | 是    | null | 图片资源,请参考ImageBitmap或PixelMap。            |
| sx    | number                                   | 否    | 0    | 裁切源图像时距离源图像左上角的x坐标值。                     |
| sy    | number                                   | 否    | 0    | 裁切源图像时距离源图像左上角的y坐标值。                     |
| sw    | number                                   | 否    | 0    | 裁切源图像时需要裁切的宽度。                           |
| sh    | number                                   | 否    | 0    | 裁切源图像时需要裁切的高度。                           |
| dx    | number                                   | 是    | 0    | 绘制区域左上角在x轴的位置。                           |
| dy    | number                                   | 是    | 0    | 绘制区域左上角在y&nbsp;轴的位置。                     |
| dw    | number                                   | 否    | 0    | 绘制区域的宽度。当绘制区域的宽度和裁剪图像的宽度不一致时,将图像宽度拉伸或压缩为绘制区域的宽度。 |
| dh    | number                                   | 否    | 0    | 绘制区域的高度。当绘制区域的高度和裁剪图像的高度不一致时,将图像高度拉伸或压缩为绘制区域的高度。 |
L
lanyill 已提交
2127

Z
zengyawen 已提交
2128

L
lanyill 已提交
2129
**示例:**
Z
zengyawen 已提交
2130

H
geshi  
HelloCrease 已提交
2131 2132
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2133 2134 2135
  @Entry
  @Component
  struct ImageExample {
Y
yamila 已提交
2136 2137
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Y
yamila 已提交
2138
    private img:ImageBitmap = new ImageBitmap("common/images/example.jpg")
L
lanyill 已提交
2139

Z
zengyawen 已提交
2140 2141 2142 2143 2144 2145 2146
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
Y
yamila 已提交
2147
            this.context.drawImage( this.img,0,0,500,500,0,0,400,200)
Z
zengyawen 已提交
2148
        })
Z
zengyawen 已提交
2149
      }
Z
zengyawen 已提交
2150 2151
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2152
    }
Z
zengyawen 已提交
2153 2154 2155 2156 2157 2158 2159 2160
  }
  ```

  ![zh-cn_image_0000001194352442](figures/zh-cn_image_0000001194352442.png)


### createImageData

L
lanyill 已提交
2161
createImageData(sw: number, sh: number): ImageData
Z
zengyawen 已提交
2162

L
lanyill 已提交
2163
创建新的ImageData 对象,请参考[ImageData](ts-components-canvas-imagedata.md)
Z
zengyawen 已提交
2164

Z
zhongjianfei 已提交
2165 2166
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2167 2168
**参数:**

H
HelloCrease 已提交
2169 2170 2171 2172
| 参数   | 类型     | 必填   | 默认   | 描述            |
| ---- | ------ | ---- | ---- | ------------- |
| sw   | number | 是    | 0    | ImageData的宽度。 |
| sh   | number | 是    | 0    | ImageData的高度。 |
Z
zengyawen 已提交
2173 2174


L
lanyill 已提交
2175
createImageData(imageData: ImageData): ImageData
Z
zengyawen 已提交
2176

L
lanyill 已提交
2177
创建新的ImageData 对象,请参考[ImageData](ts-components-canvas-imagedata.md)
Z
zengyawen 已提交
2178

Z
zhongjianfei 已提交
2179 2180
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2181 2182
**参数:**

H
HelloCrease 已提交
2183 2184
| 参数        | 类型                                       | 必填   | 默认   | 描述                |
| --------- | ---------------------------------------- | ---- | ---- | ----------------- |
L
lanyill 已提交
2185
| imagedata | [ImageData](ts-components-canvas-imagedata.md) | 是    | null | 复制现有的ImageData对象。 |
L
lanyill 已提交
2186 2187 2188

  **返回值:**

H
HelloCrease 已提交
2189 2190
| 类型                                       | 说明             |
| ---------------------------------------- | -------------- |
L
lanyill 已提交
2191
| [ImageData](ts-components-canvas-imagedata.md) | 新的ImageData对象。 |
L
lanyill 已提交
2192

Z
zengyawen 已提交
2193

Y
yaoyuchi 已提交
2194 2195 2196 2197 2198
### getPixelMap

getPixelMap(sx: number, sy: number, sw: number, sh: number): PixelMap

以当前canvas指定区域内的像素创建[PixelMap](../apis/js-apis-image.md#pixelmap7)对象。
L
lanyill 已提交
2199 2200 2201

**参数:**

H
HelloCrease 已提交
2202 2203 2204 2205 2206 2207
| 参数   | 类型     | 必填   | 默认值  | 描述              |
| ---- | ------ | ---- | ---- | --------------- |
| sx   | number | 是    | 0    | 需要输出的区域的左上角x坐标。 |
| sy   | number | 是    | 0    | 需要输出的区域的左上角y坐标。 |
| sw   | number | 是    | 0    | 需要输出的区域的宽度。     |
| sh   | number | 是    | 0    | 需要输出的区域的高度。     |
Z
zengyawen 已提交
2208

L
lanyill 已提交
2209 2210
**返回值:**

H
HelloCrease 已提交
2211 2212 2213
| 类型                                       | 说明            |
| ---------------------------------------- | ------------- |
| [PixelMap](../apis/js-apis-image.md#pixelmap7) | 新的PixelMap对象。 |
Z
zengyawen 已提交
2214 2215 2216

### getImageData

L
lanyill 已提交
2217
getImageData(sx: number, sy: number, sw: number, sh: number): ImageData
Z
zengyawen 已提交
2218

L
lanyill 已提交
2219
以当前canvas指定区域内的像素创建[ImageData](ts-components-canvas-imagedata.md)对象。
L
lanyill 已提交
2220

Z
zhongjianfei 已提交
2221 2222
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2223 2224
**参数:**

H
HelloCrease 已提交
2225 2226 2227 2228 2229 2230
| 参数   | 类型     | 必填   | 默认值  | 描述              |
| ---- | ------ | ---- | ---- | --------------- |
| sx   | number | 是    | 0    | 需要输出的区域的左上角x坐标。 |
| sy   | number | 是    | 0    | 需要输出的区域的左上角y坐标。 |
| sw   | number | 是    | 0    | 需要输出的区域的宽度。     |
| sh   | number | 是    | 0    | 需要输出的区域的高度。     |
Z
zengyawen 已提交
2231

L
lanyill 已提交
2232 2233
  **返回值:**

H
HelloCrease 已提交
2234 2235
| 类型                                       | 说明             |
| ---------------------------------------- | -------------- |
L
lanyill 已提交
2236 2237 2238 2239 2240 2241 2242
| [ImageData](ts-components-canvas-imagedata.md) | 新的ImageData对象。 |


**示例:**

  ```ts
  // xxx.ets
2243 2244 2245 2246 2247 2248
  @Entry
  @Component
  struct GetImageData {
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
    private img:ImageBitmap = new ImageBitmap("/common/images/1234.png")
L
lanyill 已提交
2249

2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.drawImage(this.img,0,0,130,130)
            var imagedata = this.context.getImageData(50,50,130,130)
            this.context.putImageData(imagedata,150,150)
          })
      }
      .width('100%')
      .height('100%')
L
lanyill 已提交
2264 2265 2266 2267 2268
    }
  }
  ```

  ![zh-cn_image_000000127777780](figures/zh-cn_image_000000127777780.png)
Z
zengyawen 已提交
2269 2270 2271 2272


### putImageData

L
lanyill 已提交
2273 2274 2275
putImageData(imageData: ImageData, dx: number, dy: number): void

putImageData(imageData: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void
Z
zengyawen 已提交
2276

L
lanyill 已提交
2277
使用[ImageData](ts-components-canvas-imagedata.md)数据填充新的矩形区域。
Z
zengyawen 已提交
2278

Z
zhongjianfei 已提交
2279 2280
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2281 2282
**参数:**

H
HelloCrease 已提交
2283 2284
| 参数          | 类型                                       | 必填   | 默认值          | 描述                            |
| ----------- | ---------------------------------------- | ---- | ------------ | ----------------------------- |
L
lanyill 已提交
2285
| imagedata   | [ImageData](ts-components-canvas-imagedata.md) | 是    | null         | 包含像素值的ImageData对象。            |
H
HelloCrease 已提交
2286 2287 2288 2289 2290 2291
| dx          | number                                   | 是    | 0            | 填充区域在x轴方向的偏移量。                |
| dy          | number                                   | 是    | 0            | 填充区域在y轴方向的偏移量。                |
| dirtyX      | number                                   | 否    | 0            | 源图像数据矩形裁切范围左上角距离源图像左上角的x轴偏移量。 |
| dirtyY      | number                                   | 否    | 0            | 源图像数据矩形裁切范围左上角距离源图像左上角的y轴偏移量。 |
| dirtyWidth  | number                                   | 否    | imagedata的宽度 | 源图像数据矩形裁切范围的宽度。               |
| dirtyHeight | number                                   | 否    | imagedata的高度 | 源图像数据矩形裁切范围的高度。               |
Z
zengyawen 已提交
2292

L
lanyill 已提交
2293 2294
**示例:**

H
geshi  
HelloCrease 已提交
2295 2296
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2297 2298 2299
  @Entry
  @Component
  struct PutImageData {
Y
yamila 已提交
2300 2301
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
2302

Z
zengyawen 已提交
2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var imageData = this.context.createImageData(100, 100)
            for (var i = 0; i < imageData.data.length; i += 4) {
              imageData.data[i + 0] = 255
              imageData.data[i + 1] = 0
              imageData.data[i + 2] = 255
              imageData.data[i + 3] = 255
            }
            this.context.putImageData(imageData, 10, 10)
          })
Z
zengyawen 已提交
2319
      }
Z
zengyawen 已提交
2320 2321
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2322
    }
Z
zengyawen 已提交
2323 2324
  }
  ```
Z
zengyawen 已提交
2325

Z
zengyawen 已提交
2326
  ![zh-cn_image_0000001238952387](figures/zh-cn_image_0000001238952387.png)
Z
zengyawen 已提交
2327 2328


L
lanyill 已提交
2329 2330 2331 2332 2333 2334
### setLineDash

setLineDash(segments: number[]): void

设置画布的虚线样式。

Z
zhongjianfei 已提交
2335 2336
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2337 2338
**参数:** 

H
HelloCrease 已提交
2339 2340
| 参数       | 类型       | 描述                  |
| -------- | -------- | ------------------- |
L
lanyill 已提交
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
| segments | number[] | 描述线段如何交替和线段间距长度的数组。 |

**示例:** 

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct SetLineDash {
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
    
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            this.context.arc(100, 75, 50, 0, 6.28)
            this.context.setLineDash([10,20])
L
lanyill 已提交
2362
            this.context.stroke()
L
lanyill 已提交
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
          })
      }
      .width('100%')
      .height('100%')
    }
  }
  ```

  ![zh-cn_image_000000127777771](figures/zh-cn_image_000000127777771.png)


### getLineDash

getLineDash(): number[]

获得当前画布的虚线样式。

Z
zhongjianfei 已提交
2380 2381
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2382 2383
**返回值:** 

H
HelloCrease 已提交
2384 2385
| 类型       | 说明                       |
| -------- | ------------------------ |
L
lanyill 已提交
2386 2387
| number[] | 返回数组,该数组用来描述线段如何交替和间距长度。 |

L
lanyill 已提交
2388

L
lanyill 已提交
2389 2390 2391 2392
**示例:** 

  ```ts
  // xxx.ets
2393 2394 2395 2396 2397 2398
  @Entry
  @Component
  struct CanvasGetLineDash {
    @State message: string = 'Hello World'
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
2399

2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
    build() {
      Row() {
        Column() {
          Text(this.message)
            .fontSize(50)
            .fontWeight(FontWeight.Bold)
            .onClick(()=>{
              console.error('before getlinedash clicked')
              let res = this.context.getLineDash()
              console.error(JSON.stringify(res))
            })
          Canvas(this.context)
            .width('100%')
            .height('100%')
            .backgroundColor('#ffff00')
            .onReady(() => {
              this.context.arc(100, 75, 50, 0, 6.28)
              this.context.setLineDash([10,20])
              this.context.stroke()
              let res = this.context.getLineDash()
            })
        }
        .width('100%')
L
lanyill 已提交
2423
      }
2424
      .height('100%')
L
lanyill 已提交
2425 2426 2427
    }
  }
  ```
L
lanyill 已提交
2428 2429
![zh-cn_image_000000127777778](figures/zh-cn_image_000000127777778.png) 

L
lanyill 已提交
2430 2431 2432 2433 2434 2435 2436 2437


### imageSmoothingQuality

imageSmoothingQuality(quality: imageSmoothingQuality)

用于设置图像平滑度。该接口为空接口。

Z
zhongjianfei 已提交
2438 2439
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2440 2441
 **参数:** 

H
HelloCrease 已提交
2442 2443 2444
| 参数      | 类型                    | 描述                                       |
| ------- | --------------------- | ---------------------------------------- |
| quality | imageSmoothingQuality | 支持如下三种类型:'low',&nbsp;'medium',&nbsp;'high'。 |
L
lanyill 已提交
2445 2446 2447 2448 2449 2450 2451 2452 2453



### transferFromImageBitmap

transferFromImageBitmap(bitmap: ImageBitmap): void

显示给定的ImageBitmap对象。

Z
zhongjianfei 已提交
2454 2455
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2456 2457
**参数:** 

H
HelloCrease 已提交
2458 2459
| 参数     | 类型                                       | 描述                 |
| ------ | ---------------------------------------- | ------------------ |
L
lanyill 已提交
2460
| bitmap | [ImageBitmap](ts-components-canvas-imagebitmap.md) | 待显示的ImageBitmap对象。 |
L
lanyill 已提交
2461 2462 2463 2464 2465 2466 2467

**示例:** 

  ```ts
  // xxx.ets
  @Entry
  @Component
L
lanyill 已提交
2468
  struct TransferFromImageBitmap {
L
lanyill 已提交
2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
    private offContext: OffscreenCanvasRenderingContext2D = new OffscreenCanvasRenderingContext2D(600, 600, this.settings)

    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var imageData = this.offContext.createImageData(100, 100)
            for (var i = 0; i < imageData.data.length; i += 4) {
              imageData.data[i + 0] = 255
              imageData.data[i + 1] = 0
              imageData.data[i + 2] = 255
              imageData.data[i + 3] = 255
            }
            this.offContext.putImageData(imageData, 10, 10)
            var image = this.offContext.transferToImageBitmap()
            this.context.transferFromImageBitmap(image)
          })
      }
      .width('100%')
      .height('100%')
    }
  }
  ```
L
lanyill 已提交
2497 2498
  ![zh-cn_image_0000001238952387](figures/zh-cn_image_0000001238952387.png)  

L
lanyill 已提交
2499 2500 2501 2502 2503 2504 2505

### toDataURL

toDataURL(type?: string, quality?: number): string

生成一个包含图片展示的URL。

2506 2507
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524
**参数:** 

| 参数名     | 参数类型   | 必填   | 描述                                       |
| ------- | ------ | ---- | ---------------------------------------- |
| type    | string | 否    | 可选参数,用于指定图像格式,默认格式为image/png。            |
| quality | number | 否    | 在指定图片格式为image/jpeg或image/webp的情况下,可以从0到1的区间内选择图片的质量。如果超出取值范围,将会使用默认值0.92。 |

**返回值:** 

| 类型     | 说明        |
| ------ | --------- |
| string | 图像的URL地址。 |

**示例:**

  ```ts
  // xxx.ets
2525 2526 2527 2528 2529
  @Entry
  @Component
  struct ToDataURL {
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
L
lanyill 已提交
2530

2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var dataURL = this.context.toDataURL()
          })
      }
      .width('100%')
      .height('100%')
L
lanyill 已提交
2543 2544 2545 2546 2547
    }
  }
  ```


Z
zengyawen 已提交
2548
### restore
Z
zengyawen 已提交
2549

Z
zengyawen 已提交
2550
restore(): void
Z
zengyawen 已提交
2551 2552 2553

对保存的绘图上下文进行恢复。

Z
zhongjianfei 已提交
2554 2555
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2556 2557
**示例:**

H
geshi  
HelloCrease 已提交
2558 2559
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2560 2561 2562
  @Entry
  @Component
  struct CanvasExample {
Y
yamila 已提交
2563 2564
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
2565

Z
zengyawen 已提交
2566 2567 2568 2569 2570 2571 2572
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
Y
yamila 已提交
2573
            this.context.save() // save the default state
2574
            this.context.fillStyle = "#00ff00"
Y
yamila 已提交
2575 2576 2577
            this.context.fillRect(20, 20, 100, 100)
            this.context.restore() // restore to the default state
            this.context.fillRect(150, 75, 100, 100)
Z
zengyawen 已提交
2578
          })
Z
zengyawen 已提交
2579
      }
Z
zengyawen 已提交
2580 2581
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2582
    }
Z
zengyawen 已提交
2583 2584
  }
  ```
L
lanyill 已提交
2585
  ![zh-cn_image_000000127777781](figures/zh-cn_image_000000127777781.png)
Z
zengyawen 已提交
2586 2587


Z
zengyawen 已提交
2588
### save
Z
zengyawen 已提交
2589

Z
zengyawen 已提交
2590
save(): void
Z
zengyawen 已提交
2591

H
HelloCrease 已提交
2592
将当前状态放入栈中,保存canvas的全部状态,通常在需要保存绘制状态时调用。
Z
zengyawen 已提交
2593

Z
zhongjianfei 已提交
2594 2595
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2596 2597
**示例:**

H
geshi  
HelloCrease 已提交
2598 2599
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2600 2601 2602
  @Entry
  @Component
  struct CanvasExample {
Y
yamila 已提交
2603 2604
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
H
geshi  
HelloCrease 已提交
2605

Z
zengyawen 已提交
2606 2607 2608 2609 2610 2611 2612
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
Y
yamila 已提交
2613
            this.context.save() // save the default state
2614
            this.context.fillStyle = "#00ff00"
Y
yamila 已提交
2615 2616 2617
            this.context.fillRect(20, 20, 100, 100)
            this.context.restore() // restore to the default state
            this.context.fillRect(150, 75, 100, 100)
L
lanyill 已提交
2618
          })
Z
zengyawen 已提交
2619
      }
Z
zengyawen 已提交
2620 2621
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2622
    }
Z
zengyawen 已提交
2623 2624
  }
  ```
L
lanyill 已提交
2625
  ![zh-cn_image_000000127777781](figures/zh-cn_image_000000127777781.png)
Z
zengyawen 已提交
2626 2627


Z
zengyawen 已提交
2628
### createLinearGradient
Z
zengyawen 已提交
2629

Z
zengyawen 已提交
2630
createLinearGradient(x0: number, y0: number, x1: number, y1: number): void
Z
zengyawen 已提交
2631 2632 2633

创建一个线性渐变色。

Z
zhongjianfei 已提交
2634 2635
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2636 2637
**参数:**

H
HelloCrease 已提交
2638 2639 2640 2641 2642 2643
| 参数   | 类型     | 必填   | 默认值  | 描述       |
| ---- | ------ | ---- | ---- | -------- |
| x0   | number | 是    | 0    | 起点的x轴坐标。 |
| y0   | number | 是    | 0    | 起点的y轴坐标。 |
| x1   | number | 是    | 0    | 终点的x轴坐标。 |
| y1   | number | 是    | 0    | 终点的y轴坐标。 |
Z
zengyawen 已提交
2644

L
lanyill 已提交
2645
**示例:**
Z
zengyawen 已提交
2646

H
geshi  
HelloCrease 已提交
2647 2648
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2649 2650 2651
  @Entry
  @Component
  struct CreateLinearGradient {
Y
yamila 已提交
2652 2653
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
2654
    
Z
zengyawen 已提交
2655 2656 2657 2658 2659 2660 2661 2662
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var grad = this.context.createLinearGradient(50,0, 300,100)
2663 2664 2665
            grad.addColorStop(0.0, '#ff0000')
            grad.addColorStop(0.5, '#ffffff')
            grad.addColorStop(1.0, '#00ff00')
Z
zengyawen 已提交
2666
            this.context.fillStyle = grad
2667
            this.context.fillRect(0, 0, 400, 400)
Z
zengyawen 已提交
2668
          })
Z
zengyawen 已提交
2669
      }
Z
zengyawen 已提交
2670 2671
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2672
    }
Z
zengyawen 已提交
2673 2674
  }
  ```
Z
zengyawen 已提交
2675

Z
zengyawen 已提交
2676
  ![zh-cn_image_0000001194032466](figures/zh-cn_image_0000001194032466.png)
Z
zengyawen 已提交
2677 2678


Z
zengyawen 已提交
2679
### createRadialGradient
Z
zengyawen 已提交
2680

Z
zengyawen 已提交
2681
createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): void
Z
zengyawen 已提交
2682 2683 2684

创建一个径向渐变色。

Z
zhongjianfei 已提交
2685 2686
从API version 9开始,该接口支持在ArkTS卡片中使用。

L
lanyill 已提交
2687 2688
**参数:**

H
HelloCrease 已提交
2689 2690 2691 2692 2693 2694 2695 2696
| 参数   | 类型     | 必填   | 默认值  | 描述                |
| ---- | ------ | ---- | ---- | ----------------- |
| x0   | number | 是    | 0    | 起始圆的x轴坐标。         |
| y0   | number | 是    | 0    | 起始圆的y轴坐标。         |
| r0   | number | 是    | 0    | 起始圆的半径。必须是非负且有限的。 |
| x1   | number | 是    | 0    | 终点圆的x轴坐标。         |
| y1   | number | 是    | 0    | 终点圆的y轴坐标。         |
| r1   | number | 是    | 0    | 终点圆的半径。必须为非负且有限的。 |
Z
zengyawen 已提交
2697

L
lanyill 已提交
2698 2699
**示例:**

H
geshi  
HelloCrease 已提交
2700 2701
  ```ts
  // xxx.ets
Z
zengyawen 已提交
2702 2703 2704
  @Entry
  @Component
  struct CreateRadialGradient {
Y
yamila 已提交
2705 2706
    private settings: RenderingContextSettings = new RenderingContextSettings(true)
    private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
Z
zengyawen 已提交
2707
    
Z
zengyawen 已提交
2708 2709 2710 2711 2712 2713 2714 2715
    build() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Canvas(this.context)
          .width('100%')
          .height('100%')
          .backgroundColor('#ffff00')
          .onReady(() =>{
            var grad = this.context.createRadialGradient(200,200,50, 200,200,200)
2716 2717 2718
            grad.addColorStop(0.0, '#ff0000')
            grad.addColorStop(0.5, '#ffffff')
            grad.addColorStop(1.0, '#00ff00')
Z
zengyawen 已提交
2719
            this.context.fillStyle = grad
2720
            this.context.fillRect(0, 0, 440, 440)
Z
zengyawen 已提交
2721
          })
Z
zengyawen 已提交
2722
      }
Z
zengyawen 已提交
2723 2724
      .width('100%')
      .height('100%')
Z
zengyawen 已提交
2725
    }
Z
zengyawen 已提交
2726 2727
  }
  ```
Z
zengyawen 已提交
2728

Z
zengyawen 已提交
2729
  ![zh-cn_image_0000001239032419](figures/zh-cn_image_0000001239032419.png)
Z
zengyawen 已提交
2730 2731


Z
zengyawen 已提交
2732
## CanvasPattern
Z
zengyawen 已提交
2733

Z
zengyawen 已提交
2734
一个Object对象, 通过[createPattern](#createpattern)方法创建。
Z
zhongjianfei 已提交
2735 2736

从API version 9开始,该接口支持在ArkTS卡片中使用。