绘制组件的父组件

2024-01-22 18:06 更新

绘制组件的父组件,父组件中会描述所有绘制组件均支持的通用属性。

1、绘制组件使用Shape作为父组件,实现类似SVG的效果。

2、绘制组件单独使用,用于在页面上绘制指定的图形。

说明

该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

子组件

包含RectPathCircleEllipsePolylinePolygonImageTextColumnRow子组件。

接口

Shape(value?: PixelMap)

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

参数:

参数名

参数类型

必填

默认值

参数描述

value

PixelMap

-

绘制目标,可将图形绘制在指定的PixelMap对象中,若未设置,则在当前绘制目标中进行绘制。

属性

除支持通用属性外,还支持以下属性:

名称

类型

默认值

描述

viewPort

{

x?: number | string,

y?: number | string,

width?: number | string,

height?: number | string

}

{ x:0, y:0, width:0, height:0 }

形状的视口。

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

说明:

该属性若为string类型, 暂不支持百分比。

异常值按照默认值处理。

fill

ResourceColor

Color.Black

设置填充区域颜色。

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

说明:

异常值按照默认值处理。

fillOpacity

number | string | Resource

1

设置填充区域透明度。

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

说明:

异常值按照默认值处理。

stroke

ResourceColor

-

设置边框颜色,不设置时,默认没有边框线条。

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

说明:

异常值不会绘制边框线条。

strokeDashArray

Array<Length>

[]

设置边框间隙。

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

说明:

异常值按照默认值处理。

strokeDashOffset

number | string

0

边框绘制起点的偏移量。

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

说明:

异常值按照默认值处理。

strokeLineCap

LineCapStyle

LineCapStyle.Butt

设置边框端点绘制样式。

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

strokeLineJoin

LineJoinStyle

LineJoinStyle.Miter

设置边框拐角绘制样式。

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

strokeMiterLimit

number | string

4

设置斜接长度与边框宽度比值的极限值。斜接长度表示外边框外边交点到内边交点的距离,边框宽度即strokeWidth属性的值。

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

说明:

该属性取值需在strokeLineJoin属性取值LineJoinStyle.Miter时生效。 该属性的合法值范围应当大于等于1.0,当取值范围在[0,1)时按1.0处理,其余异常值按默认值处理

strokeOpacity

number | string | Resource

1

设置边框透明度。

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

说明:

该属性的取值范围是[0.0, 1.0],若给定值小于0.0,则取值为0.0;若给定值大于1.0,则取值为1.0,其余异常值按1.0处理 。

strokeWidth

number | string

1

设置边框宽度。

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

说明:

该属性若为string类型, 暂不支持百分比。

异常值按照默认值处理。

antiAlias

boolean

true

是否开启抗锯齿效果。

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

mesh8+

Array<number>,number,number

[],0,0

设置mesh效果。第一个参数为长度(column + 1)* (row + 1)* 2的数组,它记录了扭曲后的位图各个顶点位置,第二个参数为mesh矩阵列数column,第三个参数为mesh矩阵行数row。

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

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ShapeExample {
  5. build() {
  6. Column({ space: 10 }) {
  7. Text('basic').fontSize(11).fontColor(0xCCCCCC).width(320)
  8. // 在Shape的(-2, -2)点绘制一个 300 * 50 带边框的矩形,颜色0x317AF7,边框颜色黑色,边框宽度4,边框间隙20,向左偏移10,线条两端样式为半圆,拐角样式圆角,抗锯齿(默认开启)
  9. // 在Shape的(-2, 58)点绘制一个 300 * 50 带边框的椭圆,颜色0x317AF7,边框颜色黑色,边框宽度4,边框间隙20,向左偏移10,线条两端样式为半圆,拐角样式圆角,抗锯齿(默认开启)
  10. // 在Shape的(-2, 118)点绘制一个 300 * 10 直线路径,颜色0x317AF7,边框颜色黑色,宽度4,间隙20,向左偏移10,线条两端样式为半圆,拐角样式圆角,抗锯齿(默认开启)
  11. Shape() {
  12. Rect().width(300).height(50)
  13. Ellipse().width(300).height(50).offset({ x: 0, y: 60 })
  14. Path().width(300).height(10).commands('M0 0 L900 0').offset({ x: 0, y: 120 })
  15. }
  16. .viewPort({ x: -2, y: -2, width: 304, height: 130 })
  17. .fill(0x317AF7)
  18. .stroke(Color.Black)
  19. .strokeWidth(4)
  20. .strokeDashArray([20])
  21. .strokeDashOffset(10)
  22. .strokeLineCap(LineCapStyle.Round)
  23. .strokeLineJoin(LineJoinStyle.Round)
  24. .antiAlias(true)
  25. // 分别在Shape的(0, 0)、(-5, -5)点绘制一个 300 * 50 带边框的矩形,可以看出之所以将视口的起始位置坐标设为负值是因为绘制的起点默认为线宽的中点位置,因此要让边框完全显示则需要让视口偏移半个线宽
  26. Shape() {
  27. Rect().width(300).height(50)
  28. }
  29. .viewPort({ x: 0, y: 0, width: 320, height: 70 })
  30. .fill(0x317AF7)
  31. .stroke(Color.Black)
  32. .strokeWidth(10)
  33. Shape() {
  34. Rect().width(300).height(50)
  35. }
  36. .viewPort({ x: -5, y: -5, width: 320, height: 70 })
  37. .fill(0x317AF7)
  38. .stroke(Color.Black)
  39. .strokeWidth(10)
  40. Text('path').fontSize(11).fontColor(0xCCCCCC).width(320)
  41. // 在Shape的(0, -5)点绘制一条直线路径,颜色0xEE8443,线条宽度10,线条间隙20
  42. Shape() {
  43. Path().width(300).height(10).commands('M0 0 L900 0')
  44. }
  45. .viewPort({ x: 0, y: -5, width: 300, height: 20 })
  46. .stroke(0xEE8443)
  47. .strokeWidth(10)
  48. .strokeDashArray([20])
  49. // 在Shape的(0, -5)点绘制一条直线路径,颜色0xEE8443,线条宽度10,线条间隙20,向左偏移10
  50. Shape() {
  51. Path().width(300).height(10).commands('M0 0 L900 0')
  52. }
  53. .viewPort({ x: 0, y: -5, width: 300, height: 20 })
  54. .stroke(0xEE8443)
  55. .strokeWidth(10)
  56. .strokeDashArray([20])
  57. .strokeDashOffset(10)
  58. // 在Shape的(0, -5)点绘制一条直线路径,颜色0xEE8443,线条宽度10,透明度0.5
  59. Shape() {
  60. Path().width(300).height(10).commands('M0 0 L900 0')
  61. }
  62. .viewPort({ x: 0, y: -5, width: 300, height: 20 })
  63. .stroke(0xEE8443)
  64. .strokeWidth(10)
  65. .strokeOpacity(0.5)
  66. // 在Shape的(0, -5)点绘制一条直线路径,颜色0xEE8443,线条宽度10,线条间隙20,线条两端样式为半圆
  67. Shape() {
  68. Path().width(300).height(10).commands('M0 0 L900 0')
  69. }
  70. .viewPort({ x: 0, y: -5, width: 300, height: 20 })
  71. .stroke(0xEE8443)
  72. .strokeWidth(10)
  73. .strokeDashArray([20])
  74. .strokeLineCap(LineCapStyle.Round)
  75. // 在Shape的(-80, -5)点绘制一个封闭路径,颜色0x317AF7,线条宽度10,边框颜色0xEE8443,拐角样式锐角(默认值)
  76. Shape() {
  77. Path().width(200).height(60).commands('M0 0 L400 0 L400 150 Z')
  78. }
  79. .viewPort({ x: -80, y: -5, width: 310, height: 90 })
  80. .fill(0x317AF7)
  81. .stroke(0xEE8443)
  82. .strokeWidth(10)
  83. .strokeLineJoin(LineJoinStyle.Miter)
  84. .strokeMiterLimit(5)
  85. }.width('100%').margin({ top: 15 })
  86. }
  87. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号