#鸿蒙通关秘籍# 如何通过image库将HarmonyOS Next手写绘制的内容保存为图片?

HarmonyOS
11h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
一路向北545
  componentSnapshot.get(NODE_CONTAINER_ID, async (error: Error, pixelMap: image.PixelMap) => {
    if (pixelMap !== null) {
      // 图片写入文件
      this.filePath = await this.saveFile(getContext(), pixelMap);
      logger.info(TAG, `Images saved using the packing method are located in : ${this.filePath}`);
    }
  })
分享
微博
QQ
微信
回复
3h前
相关问题
base64字符串保存为图片方法
815浏览 • 1回复 待解决