HarmonyOS image resizable问题咨询

HarmonyOS
2024-10-08 10:40:36
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

resizable是设置图像拉伸时可调整大小的图像选项。

1. 拉伸对拖拽缩略图以及占位图有效。

2. 设置合法的 ResizableOptions 时,objectRepeat 属性设置不生效。

3. 当设置 top +bottom 大于原图的高或者 left + right 大于原图的宽时 ResizableOptions 属性设置不生效。

示例代码:

@Entry  
@Component  
struct ImageComponent {  
  @State top: number = 40  
  @State bottom: number = 5  
  @State left: number = 40  
  @State right: number = 10  
  build() {  
    Column({ space: 5 }) {  
      // 原图效果  
      Image("xxxx")  
        .width(200).height(200)  
        .border({ width: 2, color: Color.Pink })  
        .objectFit(ImageFit.Contain)  
      // 图像拉伸效果,设置resizable属性,对图片不同方向进行拉伸  
      Image("xxx")  
        .resizable({  
          slice: {  
            left: this.left,  
            right: this.right,  
            top: this.top,  
            bottom: this.bottom  
          }  
        })  
        .width(200)  
        .height(200)  
        .border({ width: 2, color: Color.Pink })  
        .objectFit(ImageFit.Contain)  
      Row() {  
        Button("add top to " + this.top).fontSize(10)  
          .onClick(() => {  
            this.top += 2  
          })  
        Button("add bottom to " + this.bottom).fontSize(10)  
          .onClick(() => {  
            this.bottom += 2  
          })  
      }  
      Row() {  
        Button("add left to " + this.left).fontSize(10)  
          .onClick(() => {  
            this.left += 2  
          })  
        Button("add right to " + this.right).fontSize(10)  
          .onClick(() => {  
            this.right += 2  
          })  
      }  
    }  
    .justifyContent(FlexAlign.Start).width('100%').height('100%')  
  }  
}
分享
微博
QQ
微信
回复
2024-10-08 16:11:39
相关问题
HarmonyOS Image加载本地图片咨询
471浏览 • 1回复 待解决
HarmonyOS 录像问题咨询
455浏览 • 1回复 待解决
HarmonyOS 画布问题咨询
250浏览 • 1回复 待解决
HarmonyOS precompileJavaScript 问题咨询
77浏览 • 1回复 待解决
HarmonyOS卡片问题咨询
318浏览 • 1回复 待解决
HarmonyOS getRawFileContent使用问题咨询
616浏览 • 1回复 待解决
HarmonyOS 相机权限问题咨询
40浏览 • 1回复 待解决
HarmonyOS 媒体问题相关咨询
213浏览 • 1回复 待解决
HarmonyOS AOT相关问题咨询
417浏览 • 1回复 待解决
HarmonyOS taskpool使用问题咨询
192浏览 • 1回复 待解决
mapkitxiang 问题咨询
306浏览 • 1回复 待解决
HarmonyOS 崩溃收集问题咨询
476浏览 • 1回复 待解决
HarmonyOS 系统picker问题咨询
442浏览 • 1回复 待解决
HarmonyOS 网络相关问题咨询
27浏览 • 1回复 待解决
HarmonyOS image组件拖拽问题
289浏览 • 1回复 待解决
HarmonyOS 上架权限问题咨询
79浏览 • 1回复 待解决
HarmonyOS 音频播放相关问题咨询
195浏览 • 1回复 待解决
AppGallery Connect问题咨询
357浏览 • 1回复 待解决
jsBridge相关问题咨询
443浏览 • 1回复 待解决
requestInStream使用问题咨询
776浏览 • 1回复 待解决
HarmonyOS Web组件开发问题咨询
301浏览 • 1回复 待解决
HarmonyOS 媒体硬解相关问题咨询
606浏览 • 1回复 待解决
HarmonyOS TextInput和键盘相关问题咨询
547浏览 • 1回复 待解决