HarmonyOS如何在Canvas画布上绘制圆角矩形

HarmonyOS
15h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

使用Canvas绘制图形请参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/arkts-drawing-customization-on-canvas-V5

参考代码:

@Entry
@Component
struct test {
  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('90%')
        .height(300)
        .backgroundColor('#ffff00')
        .onReady(() => {
          let radius = 10; //圆角弧度
          let x = 40; //左上角坐标x
          let y = 40; //左上角坐标y
          let width = 100; //矩形宽
          let height = 40; //矩形高
          this.context.beginPath();
          this.context.moveTo(x + radius, y);
          this.context.lineTo(x + width - radius, y);
          this.context.arcTo(x + width, y, x + width, y + radius, radius);
          this.context.lineTo(x + width, y + height - radius);
          this.context.arcTo(x + width, y + height, x + width - radius, y + height, radius);
          this.context.lineTo(x + radius, y + height);
          this.context.arcTo(x, y + height, x, y + height - radius, radius);
          this.context.lineTo(x, y + radius);
          this.context.arcTo(x, y, x + radius, y, radius);
          this.context.closePath();
          this.context.fill();
        })
    }
    .width('100%')
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
12h前
相关问题
HarmonyOS Canvas绘制圆角矩形
26浏览 • 1回复 待解决
如何使用canvas绘制圆角矩形
568浏览 • 1回复 待解决
如何绘制圆角矩形
403浏览 • 1回复 待解决
HarmonyOS Canvas绘制圆角
1浏览 • 1回复 待解决
HarmonyOS canvas支持画圆角矩形
381浏览 • 1回复 待解决
画布绘制图片如何实现?
350浏览 • 1回复 待解决
HarmonyOS 如何在Canvas中直接绘制SVG?
28浏览 • 1回复 待解决
HarmonyOS Canvas如何设置圆角
55浏览 • 1回复 待解决
修改分段按钮样式为圆角矩形
990浏览 • 1回复 待解决
解决Canvas画布缩放时闪烁
1526浏览 • 1回复 待解决
画布绘制文字,垂直居中
387浏览 • 1回复 待解决
如何操作canvas重新绘制
1116浏览 • 1回复 待解决
HarmonyOS Canvas绘制内容如何更新
39浏览 • 1回复 待解决
HarmonyOS 如何使用canvas绘制虚线
41浏览 • 1回复 待解决
利用native接口实现一个圆角矩形
1688浏览 • 1回复 待解决
Canvas绘制内容如何动态更新
1690浏览 • 1回复 待解决