HarmonyOS 类似人脸识别,底层是相机(或者图片),上层是蒙层,蒙层中间是圆圈,圆圈中间透明

HarmonyOS 类似人脸识别,底层是相机(或者图片),上层是蒙层,蒙层中间是圆圈,圆圈中间透明 -鸿蒙开发者社区

如上图所示。这种蒙层需要怎么实现,必须要是圆圈镂空蒙层

如果还能实现圆圈的放大缩小就更好了

1、我这边使用Canvas只能实现矩形镂空,而且放大缩小动画实现有问题

2、我这边使用Circle可以实现放大缩小,但是不能实现Circle周围的蒙层

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

参考demo:

@Entry
@Component
struct Index {
  //用来配置CanvasRenderingContext2D对象的参数,包括是否开启抗锯齿,true表明开启抗锯齿。
  private settings: RenderingContextSettings = new RenderingContextSettings(true)
  //用来创建CanvasRenderingContext2D对象,通过在canvas中调用CanvasRenderingContext2D对象来绘制。
  private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings)
  //用来配置CanvasRenderingContext2D对象的参数,包括是否开启抗锯齿,true表明开启抗锯齿。
  private settings1: RenderingContextSettings = new RenderingContextSettings(true)
  //用来创建CanvasRenderingContext2D对象,通过在canvas中调用CanvasRenderingContext2D对象来绘制。
  private context1: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings1)
  @State scaleValue: number = 1;
  @State flag: boolean = true;
  @State circleCenterX: number = 0
  @State circleCenterY: number = 0
  @State circleRadius: number = 100

  build() {
    Column({ space: 15 }) {

      Stack() {
        // 给图片添加了一个圆形遮罩
        Image($r('app.media.namei'))
          .width('900px').height('1080px')

        // 画圆。整体放大缩小
        Column() {
          Canvas(this.context)
            .width(300)
            .height(360)
            .onReady(() => {
              this.circleCenterX = this.context.width / 2
              this.circleCenterY = this.context.height / 2
              this.context.fillStyle = "#FFFFFF"
              this.context.beginPath()
              this.context.moveTo(0, 0)
              this.context.lineTo(0, this.context.height)
              this.context.lineTo(this.context.width, this.context.height)
              this.context.lineTo(this.context.width, 0)
              this.context.lineTo(0, 0)
              this.context.arc(this.circleCenterX, this.circleCenterY, this.circleRadius, 0, Math.PI * 2)
              this.context.fill()
              this.context.closePath()
            })
        }
        .width(300).height(360)
        .scale({
          x: this.scaleValue,
          y: this.scaleValue,
          z: 1,
          centerX: '50%',
          centerY: '50%'
        })
        .animation({
          duration: 5000,
          curve: Curve.EaseOut,
          playMode: PlayMode.Normal
        })

        // 使用矩形来包住圆圈,使之圆圈放大缩小不会露出底层的图片
        Column() {
          Canvas(this.context1)
            .width('100%')
            .height('100%')
            .onReady(() => {
              this.context1.fillStyle = '#FFFFFF';
              this.context1.fillRect(0, 0, 500, 600);
              this.context1.clearRect(100, 120, 300,350);
            })
        }
        .width(500).height(600)
      }

      Button('Change')
        .onClick(() => {
          if (this.flag) {
            this.scaleValue = 1;
          } else {
            this.scaleValue = 1.3;
          }
          this.flag = !this.flag
        })

    }
    .width('100%')
    .height('100%')
    .margin({ top: 15 })
    .justifyContent(FlexAlign.SpaceBetween)
    .backgroundColor(Color.Blue)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS bindsheet去除
91浏览 • 1回复 待解决
HarmonyOS 气泡点击问题
483浏览 • 1回复 待解决
HarmonyOS 或护眼模式方案咨询
25浏览 • 1回复 待解决
Web组件下网页中图片长按出现
892浏览 • 1回复 待解决
如何去除Tabs组件两侧的
1997浏览 • 1回复 待解决
HarmonyOS 点击图片按钮中间没反应
718浏览 • 1回复 待解决
HarmonyOS 如何设置Entry页面透明页面
563浏览 • 1回复 待解决