#鸿蒙学习大百科#将app.media.app_icon,转换为PixelMap,怎么操作?

将app.media.app_icon,转换为PixelMap,怎么操作?

HarmonyOS
8天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
蓝黑沫夏

通常采用getMediaContent,获取指定资源ID对应的媒体文件内容,然后用image的createPixelMap创建PixelMap。具体代码如下:

import { image } from '@kit.ImageKit' 
try { 
  // 媒体文件字节数组 
  getContext().resourceManager.getMediaContent($r('app.media.icon').id, (error, value:ArrayBuffer) => { 
    let opts: image.InitializationOptions = { 
      editable: true, 
      pixelFormat: 3, 
      size: { height: 4, width: 6 } 
    } 
 
    // 创建PixelMap 
    image.createPixelMap(value, opts).then((pixelmap) => { 
      // ... 
    }) 
  }); 
} catch (error) { 
  console.error(`callback getMediaContent failed, error code: ${error.code}, message: ${error.message}.`) 
}
分享
微博
QQ
微信
回复
8天前
相关问题
如何app.media.app_icon转换为PixelMap
1717浏览 • 1回复 待解决