#鸿蒙通关秘籍#如何在HarmonyOS中为图片设置插值?

HarmonyOS
2024-12-04 14:30:25
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
墨s涟漪HTTP

插值处理是在原图分辨率较低时,通过 interpolation 属性进行设置,使其显示更清晰。以下代码展示了几种插值方法:

Image($r('app.media.grass'))
  .width('40%')
  .interpolation(ImageInterpolation.None)
  .borderWidth(1)
  .overlay("Interpolation.None", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })

Image($r('app.media.grass'))
  .width('40%')
  .interpolation(ImageInterpolation.High)
  .borderWidth(1)
  .overlay("Interpolation.High", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
分享
微博
QQ
微信
回复
2024-12-04 16:38:39
相关问题