HarmonyOS .9.png图片类型

我试了下貌似不支持.9.png,如果碰到了这种需要拉伸的场景图片,应该要怎么处理啊?

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

当前Image对于.9图的使用是给Image组件设置resizable属性,达到图片局部拉伸的效果,文档可参考:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-basic-components-image-V5#resizable11

@Entry
@Component
export struct Image9SliceSample {
  @State left: number = 30;
  @State right: number = 2;
  @State top: number = 2;
  @State bottom: number = 2;
  @State fit: ImageFit = ImageFit.Cover;
  @State w: number = 100
  @State h: number = 200

  @Builder
  ImageBuilder() {
    Image($r('app.media.image1'))// .objectFit(this.fit)
      // .backgroundColor(Color.Pink)
      // .padding(5)
      .resizable({
        slice: {
          top: `${this.top}px`,
          left: `${this.left}px`,
          bottom: `${this.bottom}px`,
          right: `${this.right}px`,
        }
      })
      .width(`${this.w}px`)
      .height(`${this.h}px`)
  }
  build() {
    Column({ space: 20 }) {

      Text("123")
        .background(this.ImageBuilder)
        .width(`${this.w}px`)
        .height(`${this.h}px`);
      Blank().height(80)// Image($r('app.media.wph'))
        // .objectFit(this.fit)
        // .backgroundColor(Color.Pink)
        // .padding(5)
        // .resizable({
        // slice: {
        // top: `${this.top}px`,
        // left: `${this.left}px`,
        // bottom: `${this.bottom}px`,
        // right: `${this.right}px`,
        // }
        // })
        // .width(`${this.w}px`)
        .height(`${this.h}px`)
      Row() {
        Button("add top to " + this.top).fontSize(10)
          .onClick(() => {
            this.top += 1
          })
        Button("add bottom " + this.bottom).fontSize(10)
          .onClick(() => {
            this.bottom += 1
          })
        Button("add left " + this.left).fontSize(10)
          .onClick(() => {
            this.left += 1
          })
        Button("add right " + this.right).fontSize(10)
          .onClick(() => {
            this.right += 1
          })
      }


      Row() {
        Button("reduce top to " + this.top).fontSize(10)
          .onClick(() => {
            this.top -= 1
          })
        Button("reduce bottom " + this.bottom).fontSize(10)
          .onClick(() => {
            this.bottom -= 1
          })
        Button("reduce left " + this.left).fontSize(10)
          .onClick(() => {
            this.left -= 1
          })
        Button("reduce right " + this.right).fontSize(10)
          .onClick(() => {
            this.right -= 1
          })
      }

      Row() {
        Button("add w").fontSize(10)
          .onClick(() => {
            this.w += 10
          })
        Button("add h").fontSize(10)
          .onClick(() => {
            this.h += 10
          })
      }

    }
    .backgroundColor(Color.Orange)
    .width('100%').height('100%')
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
怎么修改PNG图片的颜色?
578浏览 • 1回复 待解决
HarmonyOS是否.9 图片
1656浏览 • 1回复 待解决
png图片使用Image组件加载出现锯齿
1794浏览 • 1回复 待解决
Image组件是否支持.9图片
359浏览 • 1回复 待解决
如何保存一张PNG图片到相册中
1882浏览 • 1回复 待解决
API 9 ETS如何进行压缩图片
394浏览 • 1回复 待解决
是下载成png,当图片来引用吗?
2113浏览 • 1回复 待解决
HarmonyOS 有无YUV格式转换png的api
0浏览 • 1回复 待解决
HarmonyOS 如何支持.9
35浏览 • 1回复 待解决
HarmonyOS9图功能
35浏览 • 1回复 待解决
HarmonyOS ArkTS是否支持.9
35浏览 • 1回复 待解决
HarmonyOS 支持使用.9图吗?
461浏览 • 1回复 待解决