中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
给你写两种实现方式吧,都挺简单的: ```javascript Row() { Image(`$r('app.media.testImg')`).width('500px').height('280px') .clip(true) .borderRadius(20) } Image(`$r('app.media.testImg')`) .clipShape(new Circle({ width: '280px', height: '280px' })) .width('500px').height('280px')