1# 绘制几何图形 2 3 4绘制组件用于在页面绘制图形,Shape组件是绘制组件的父组件,父组件中会描述所有绘制组件均支持的通用属性。具体用法请参考[Shape](../reference/arkui-ts/ts-drawing-components-shape.md)。 5 6 7## 创建绘制组件 8 9绘制组件可以由以下两种形式创建: 10 11- 绘制组件使用Shape作为父组件,实现类似SVG的效果。接口调用为以下形式: 12 13 ```ts 14 Shape(value?: PixelMap) 15 ``` 16 17 该接口用于创建带有父组件的绘制组件,其中value用于设置绘制目标,可将图形绘制在指定的PixelMap对象中,若未设置,则在当前绘制目标中进行绘制。 18 19 ```ts 20 Shape() { 21 Rect().width(300).height(50) 22 } 23 ``` 24 25 26- 绘制组件单独使用,用于在页面上绘制指定的图形。有7种绘制类型,分别为[Circle](../reference/arkui-ts/ts-drawing-components-circle.md)(圆形)、[Ellipse](../reference/arkui-ts/ts-drawing-components-ellipse.md)(椭圆形)、[Line](../reference/arkui-ts/ts-drawing-components-line.md)(直线)、[Polyine](../reference/arkui-ts/ts-drawing-components-polyline.md)(折线)、[Polygon](../reference/arkui-ts/ts-drawing-components-polygon.md)(多边形)、[Path](../reference/arkui-ts/ts-drawing-components-path.md)(路径)、[Rect](../reference/arkui-ts/ts-drawing-components-rect.md)(矩形)。以Circle的接口调用为例: 27 28 ```ts 29 Circle(options?: {width?: string | number, height?: string | number} 30 ``` 31 32 该接口用于在页面绘制圆形,其中width用于设置圆形的宽度,height用于设置圆形的高度,圆形直径由宽高最小值确定。 33 34 ```ts 35 Circle({ width: 150, height: 150 }) 36 ``` 37 38 ![创建2](figures/创建2.jpg) 39 40 41## 形状视口viewport 42 43 44```ts 45viewPort{ x?: number | string, y?: number | string, width?: number | string, height?: number | string } 46``` 47 48形状视口viewport指定用户空间中的一个矩形,该矩形映射到为关联的 SVG 元素建立的视区边界。viewport属性的值包含x、y、width和height四个可选参数,x 和 y 表示视区的左上角坐标,width和height表示其尺寸。 49 50以下3个示例讲解Viewport具体用法: 51 52- 通过形状视口对图形进行放大与缩小。 53 54 ```ts 55 // 画一个宽高都为150的圆 56 Text('原始尺寸Circle组件') 57 Circle({width: 75, height: 75}).fill('#E87361') 58 59 Row({space:10}) { 60 Column() { 61 // 创建一个宽高都为150的shape组件,背景色为黄色,一个宽高都为75的viewport。用一个蓝色的矩形来填充viewport,在viewport中绘制一个直径为75的圆。 62 // 绘制结束,viewport会根据组件宽高放大两倍 63 Text('shape内放大的Circle组件') 64 Shape() { 65 Rect().width('100%').height('100%').fill('#0097D4') 66 Circle({width: 75, height: 75}).fill('#E87361') 67 } 68 .viewPort({x: 0, y: 0, width: 75, height: 75}) 69 .width(150) 70 .height(150) 71 .backgroundColor('#F5DC62') 72 } 73 Column() { 74 // 创建一个宽高都为150的shape组件,背景色为黄色,一个宽高都为300的viewport。用一个绿色的矩形来填充viewport,在viewport中绘制一个直径为75的圆。 75 // 绘制结束,viewport会根据组件宽高缩小两倍。 76 Text('Shape内缩小的Circle组件') 77 Shape() { 78 Rect().width('100%').height('100%').fill('#BDDB69') 79 Circle({width: 75, height: 75}).fill('#E87361') 80 } 81 .viewPort({x: 0, y: 0, width: 300, height: 300}) 82 .width(150) 83 .height(150) 84 .backgroundColor('#F5DC62') 85 } 86 } 87 ``` 88 89 ![2023032401632](figures/2023032401632.jpg) 90 91- 创建一个宽高都为300的shape组件,背景色为黄色,一个宽高都为300的viewport。用一个蓝色的矩形来填充viewport,在viewport中绘制一个半径为75的圆。 92 93 ```ts 94 Shape() { 95 Rect().width("100%").height("100%").fill("#0097D4") 96 Circle({ width: 150, height: 150 }).fill("#E87361") 97 } 98 .viewPort({ x: 0, y: 0, width: 300, height: 300 }) 99 .width(300) 100 .height(300) 101 .backgroundColor("#F5DC62") 102 ``` 103 104 ![viewport(2)](figures/viewport(2).jpg) 105 106- 创建一个宽高都为300的shape组件,背景色为黄色,创建一个宽高都为300的viewport。用一个蓝色的矩形来填充viewport,在viewport中绘制一个半径为75的圆,将viewport向右方和下方各平移150。 107 108 ```ts 109 Shape() { 110 Rect().width("100%").height("100%").fill("#0097D4") 111 Circle({ width: 150, height: 150 }).fill("#E87361") 112 } 113 .viewPort({ x: -150, y: -150, width: 300, height: 300 }) 114 .width(300) 115 .height(300) 116 .backgroundColor("#F5DC62") 117 118 ``` 119 120 ![viewport(3)](figures/viewport(3).jpg) 121 122 123## 自定义样式 124 125绘制组件支持通过各种属性对组件样式进行更改。 126 127- 通过fill可以设置组件填充区域颜色。 128 129 ```ts 130 Path() 131 .width(100) 132 .height(100) 133 .commands('M150 0 L300 300 L0 300 Z') 134 .fill("#E87361") 135 ``` 136 137 ![2023022792216(1)](figures/2023022792216(1).jpg) 138 139- 通过stroke可以设置组件边框颜色。 140 141 ```ts 142 Path() 143 .width(100) 144 .height(100) 145 .fillOpacity(0) 146 .commands('M150 0 L300 300 L0 300 Z') 147 .stroke(Color.Red) 148 ``` 149 150 ![stroke](figures/stroke.jpg) 151 152- 通过strokeOpacity可以设置边框透明度。 153 154 ```ts 155 Path() 156 .width(100) 157 .height(100) 158 .fillOpacity(0) 159 .commands('M150 0 L300 300 L0 300 Z') 160 .stroke(Color.Red) 161 .strokeWidth(10) 162 .strokeOpacity(0.2) 163 ``` 164 165 ![strokeopacity](figures/strokeopacity.jpg) 166 167- 通过strokeLineJoin可以设置线条拐角绘制样式。拐角绘制样式分为Bevel(使用斜角连接路径段)、Miter(使用尖角连接路径段)、Round(使用圆角连接路径段)。 168 169 ```ts 170 Polyline() 171 .width(100) 172 .height(100) 173 .fillOpacity(0) 174 .stroke(Color.Red) 175 .strokeWidth(8) 176 .points([[20, 0], [0, 100], [100, 90]]) 177 // 设置折线拐角处为圆弧 178 .strokeLineJoin(LineJoinStyle.Round) 179 ``` 180 181 ![strokeLineJoin](figures/strokeLineJoin.jpg) 182 183- 通过strokeMiterLimit设置斜接长度与边框宽度比值的极限值。 184 斜接长度表示外边框外边交点到内边交点的距离,边框宽度即strokeWidth属性的值。strokeMiterLimit取值需大于等于1,且在strokeLineJoin属性取值LineJoinStyle.Miter时生效。 185 186 ```ts 187 Polyline() 188 .width(100) 189 .height(100) 190 .fillOpacity(0) 191 .stroke(Color.Red) 192 .strokeWidth(10) 193 .points([[20, 0], [20, 100], [100, 100]]) 194 // 设置折线拐角处为尖角 195 .strokeLineJoin(LineJoinStyle.Miter) 196 // 设置斜接长度与线宽的比值 197 .strokeMiterLimit(1/Math.sin(45)) 198 Polyline() 199 .width(100) 200 .height(100) 201 .fillOpacity(0) 202 .stroke(Color.Red) 203 .strokeWidth(10) 204 .points([[20, 0], [20, 100], [100, 100]]) 205 .strokeLineJoin(LineJoinStyle.Miter) 206 .strokeMiterLimit(1.42) 207 ``` 208 209 ![2023032405917](figures/2023032405917.jpg) 210 211- 通过antiAlias设置是否开启抗锯齿,默认值为true(开启抗锯齿)。 212 213 ```ts 214 //开启抗锯齿 215 Circle() 216 .width(150) 217 .height(200) 218 .fillOpacity(0) 219 .strokeWidth(5) 220 .stroke(Color.Black) 221 ``` 222 223 ![无标题](figures/无标题.png) 224 225 ```ts 226 //关闭抗锯齿 227 Circle() 228 .width(150) 229 .height(200) 230 .fillOpacity(0) 231 .strokeWidth(5) 232 .stroke(Color.Black) 233 .antiAlias(false) 234 ``` 235 236 ![2023032411518](figures/2023032411518.jpg) 237 238 239## 场景示例 240 241- 在Shape的(-80, -5)点绘制一个封闭路径,填充颜色0x317AF7,线条宽度10,边框颜色红色,拐角样式锐角(默认值)。 242 243 ```ts 244 @Entry 245 @Component 246 struct ShapeExample { 247 build() { 248 Column({ space: 10 }) { 249 Shape() { 250 Path().width(200).height(60).commands('M0 0 L400 0 L400 150 Z') 251 } 252 .viewPort({ x: -80, y: -5, width: 500, height: 300 }) 253 .fill(0x317AF7) 254 .stroke(Color.Red) 255 .strokeWidth(3) 256 .strokeLineJoin(LineJoinStyle.Miter) 257 .strokeMiterLimit(5) 258 }.width('100%').margin({ top: 15 }) 259 } 260 } 261 ``` 262 263 ![场景1](figures/场景1.jpg) 264 265- 绘制一个直径为150的圆,和一个直径为150、线条为红色虚线的圆环(宽高设置不一致时以短边为直径)。 266 267 ```ts 268 @Entry 269 @Component 270 struct CircleExample { 271 build() { 272 Column({ space: 10 }) { 273 //绘制一个直径为150的圆 274 Circle({ width: 150, height: 150 }) 275 //绘制一个直径为150、线条为红色虚线的圆环 276 Circle() 277 .width(150) 278 .height(200) 279 .fillOpacity(0) 280 .strokeWidth(3) 281 .stroke(Color.Red) 282 .strokeDashArray([1, 2]) 283 }.width('100%') 284 } 285 } 286 ``` 287 288 ![场景2](figures/场景2.jpg) 289