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

HarmonyOS
2024-12-12 11:30:40
浏览
收藏 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
微信
回复
2024-12-12 19:28:01
相关问题
HarmonyOS 如何PixelMap保存为沙箱
168浏览 • 1回复 待解决
base64字符串保存为图片方法
1180浏览 • 1回复 待解决