• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# <canvas> Development
2
3
4The **<canvas>** component provides a canvas for drawing customized graphics. For details, see [canvas](../reference/arkui-js/js-components-canvas-canvas.md).
5
6
7## Creating a <canvas> Component
8
9Create a **<canvas>** component in the .hml file under **pages/index**.
10
11
12```
13<!-- xxx.hml -->
14<div class="container">
15  <canvas></canvas>
16</div>
17```
18
19
20```css
21/* xxx.css */
22.container{
23  width: 100%;
24  height: 100%;
25  flex-direction: column;
26  justify-content: center;
27  align-items: center;
28  background-color: #F1F3F5;
29}
30canvas{
31  background-color: #00ff73;
32}
33```
34
35![en-us_image_0000001232162316](figures/en-us_image_0000001232162316.png)
36
37> **NOTE**
38>
39> - The default background color of the **&lt;canvas&gt;** component is the same as that of the parent component.
40>
41> - The default width and height of **&lt;canvas&gt;** are 300 px and 150 px, respectively.
42
43
44## Adding Styles
45
46Set **width**, **height**, **background-color**, and **border** of the **&lt;canvas&gt;** component.
47
48
49```html
50<!-- xxx.hml -->
51<div class="container">
52  <canvas></canvas>
53</div>
54```
55
56
57```css
58/* xxx.css */
59.container{
60  flex-direction: column;
61  justify-content: center;
62  align-items: center;
63  background-color: #F1F3F5;
64  width: 100%;
65  height: 100%;
66}
67canvas{
68  width: 500px;
69  height: 500px;
70  background-color: #fdfdfd;
71  border: 5px solid red;
72}
73```
74
75![en-us_image_0000001231843104](figures/en-us_image_0000001231843104.png)
76
77
78## Adding Events
79
80Add the long press event to the **&lt;canvas&gt;** component. When the event is triggered, the value of **dataUrl** (image information returned by the **toDataURL** method) of the **&lt;canvas&gt;** component can be obtained and printed in the text area below.
81
82
83```html
84<!-- xxx.hml -->
85<div class="container">
86  <canvas ref="canvas1" onlongpress="getUrl"></canvas>
87  <text>dataURL</text>
88  <text class="content">{{dataURL}}</text>
89</div>
90```
91
92
93```css
94/* xxx.css */
95.container{
96  width:100%;
97  height:100%;
98  flex-direction: column;
99  justify-content: center;
100  align-items: center;
101  background-color: #F1F3F5;
102  }
103  canvas{
104    width: 500px;
105    height: 500px;
106    background-color: #fdfdfd;
107    border: 5px solid red;
108    margin-bottom: 50px;
109}
110.content{
111  border: 5px solid blue;
112  padding: 10px;
113  width: 90%;
114  height: 400px;
115  overflow: scroll;
116}
117```
118
119
120```js
121// xxx.js
122import promptAction from '@ohos.promptAction';
123export default {
124  data:{
125    dataURL:null,
126  },
127  onShow(){
128    let el = this.$refs.canvas1;
129    let ctx = el.getContext("2d");
130    ctx.strokeRect(100,100,300,300);
131  },
132  getUrl(){
133    let el = this.$refs.canvas1
134    let dataUrl = el.toDataURL()
135    this.dataURL = dataUrl;
136    promptAction.showToast({duration:2000,message:"long press,get dataURL"})
137  }
138}
139```
140
141![en-us_image_0000001276003513](figures/en-us_image_0000001276003513.gif)
142
143> **NOTE**
144>
145> The **&lt;canvas&gt;** component cannot be created in **onInit** or **onReady**.
146