ToB企服应用市场:ToB评测及商务社交产业平台

标题: HarmonyOS开辟:组件截图-@componentSnapshot [打印本页]

作者: 不到断气不罢休    时间: 2024-10-16 18:01
标题: HarmonyOS开辟:组件截图-@componentSnapshot
本模块提供获取组件截图的能力,包罗已加载的组件的截图和没有加载的组件的截图。组件截图只能够截取组件大小的区域,如果组件的绘制超出了它的区域,或子组件的绘制超出了父组件的区域,这些在组件区域外绘制的内容不会在截图中呈现。兄弟节点堆叠在组件区域内,截图不会体现兄弟组件。
本模块首批接口从 API version 10 开始支持。后续版本的新增接口,接纳上角标单独标记接口的起始版本。
对于使用XComponent的场景,比方:Video大概相机流媒体展示类组件,不建议使用组件截图相关接口,建议从surface直接获取图片。
示例结果请以真机运运动准,当前 IDE 预览器不支持。
导入模块

  1. import { componentSnapshot } from '@kit.ArkUI';
复制代码
componentSnapshot.get

get(id: string, callback: AsyncCallback<image.PixelMap>): void
获取已加载的组件的截图,传入组件的组件标识,找到对应组件举行截图。通过回调返回结果。
说明
截图会获取最近一帧的绘制内容。如果在组件触发更新的同时调用截图,更新的渲染内容不会被截取到,截图会返回上一帧的绘制内容。
体系能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名类型必填说明idstring是目标组件的组件标识callbackAsyncCallback<image.PixelMap>是截图返回结果的回调。 错误码:
以下错误码的详细先容请参见通用错误码错误码。
错误码ID错误信息401Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2.Incorrect parameter types; 3. Parameter verification failed.100001Invalid ID. 示例:
  1. import { componentSnapshot } from '@kit.ArkUI';
  2. import { image } from '@kit.ImageKit';
  3. @Entry
  4. @Component
  5. struct SnapshotExample {
  6.   @State pixmap: image.PixelMap | undefined = undefined
  7.   build() {
  8.     Column() {
  9.       Row() {
  10.         Image(this.pixmap).width(200).height(200).border({ color: Color.Black, width: 2 }).margin(5)
  11.         Image($r('app.media.img')).autoResize(true).width(200).height(200).margin(5).id("root")
  12.       }
  13.       Button("click to generate UI snapshot")
  14.         .onClick(() => {
  15.           componentSnapshot.get("root", (error: Error, pixmap: image.PixelMap) => {
  16.             if (error) {
  17.               console.log("error: " + JSON.stringify(error))
  18.               return;
  19.             }
  20.             this.pixmap = pixmap
  21.           })
  22.         }).margin(10)
  23.     }
  24.     .width('100%')
  25.     .height('100%')
  26.     .alignItems(HorizontalAlign.Center)
  27.   }
  28. }
复制代码


componentSnapshot.get

get(id: string): Promise<image.PixelMap>
获取已加载的组件的截图,传入组件的组件标识,找到对应组件举行截图。通过Promise返回结果。
截图会获取最近一帧的绘制内容。如果在组件触发更新的同时调用截图,更新的渲染内容不会被截取到,截图会返回上一帧的绘制内容。
体系能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名类型必填说明idstring是目标组件的组件标识 返回值:
类型说明Promise<image.PixelMap>截图返回的结果。 错误码:
以下错误码的详细先容请参见通用错误码错误码。
错误码ID错误信息401Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2.Incorrect parameter types; 3. Parameter verification failed.100001Invalid ID. 示例:
  1. import { componentSnapshot } from '@kit.ArkUI';
  2. import { image } from '@kit.ImageKit';
  3. @Entry
  4. @Component
  5. struct SnapshotExample {
  6.   @State pixmap: image.PixelMap | undefined = undefined
  7.   build() {
  8.     Column() {
  9.       Row() {
  10.         Image(this.pixmap).width(200).height(200).border({ color: Color.Black, width: 2 }).margin(5)
  11.         Image($r('app.media.img')).autoResize(true).width(200).height(200).margin(5).id("root")
  12.       }
  13.       Button("click to generate UI snapshot")
  14.         .onClick(() => {
  15.           componentSnapshot.get("root")
  16.             .then((pixmap: image.PixelMap) => {
  17.               this.pixmap = pixmap
  18.             }).catch((err:Error) => {
  19.             console.log("error: " + err)
  20.           })
  21.         }).margin(10)
  22.     }
  23.     .width('100%')
  24.     .height('100%')
  25.     .alignItems(HorizontalAlign.Center)
  26.   }
  27. }
复制代码


componentSnapshot.createFromBuilder

createFromBuilder(builder: CustomBuilder, callback: AsyncCallback<image.PixelMap>): void
在应用背景渲染CustomBuilder自界说组件,并输出其截图。通过回调返回结果并支持在回调中获取离屏组件绘制区域坐标和大小。
说明
由于需要等待组件构建、渲染成功,离屏截图的回调有500ms以内的耽误。
部分实行耗时使命的组件可能无法及时在截图前加载完成,因此会截取不到加载成功后的图像。比方:加载网络图片的Image组件、Web组件。
体系能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名类型必填说明builderCustomBuilder是 自界说组件构建函数。
说明: 不支持全局builder。
callbackAsyncCallback<image.PixelMap>是截图返回结果的回调。支持在回调中获取离屏组件绘制区域坐标和大小。 错误码:
以下错误码的详细先容请参见通用错误码错误码。
错误码ID错误信息401Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2.Incorrect parameter types; 3. Parameter verification failed.100001The builder is not a valid build function. 示例:
  1. import { componentSnapshot, componentUtils } from '@kit.ArkUI';
  2. import { image } from '@kit.ImageKit';
  3. @Entry
  4. @Component
  5. struct OffscreenSnapshotExample {
  6.   @State pixmap: image.PixelMap | undefined = undefined
  7.   @Builder
  8.   RandomBuilder() {
  9.     Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.Center, alignItems: ItemAlign.Center }) {
  10.       Text('Test menu item 1')
  11.         .fontSize(20)
  12.         .width(100)
  13.         .height(50)
  14.         .textAlign(TextAlign.Center)
  15.       Divider().height(10)
  16.       Text('Test menu item 2')
  17.         .fontSize(20)
  18.         .width(100)
  19.         .height(50)
  20.         .textAlign(TextAlign.Center)
  21.     }
  22.     .width(100)
  23.     .id("builder")
  24.   }
  25.   build() {
  26.     Column() {
  27.       Button("click to generate offscreen UI snapshot")
  28.         .onClick(() => {
  29.           componentSnapshot.createFromBuilder(()=>{this.RandomBuilder()},
  30.             (error: Error, pixmap: image.PixelMap) => {
  31.               if(error){
  32.                 console.log("error: " + JSON.stringify(error))
  33.                 return;
  34.               }
  35.               this.pixmap = pixmap
  36.               // save pixmap to file
  37.               // ....
  38.               // get component size and location
  39.               let info = componentUtils.getRectangleById("builder")
  40.               console.log(info.size.width + ' ' + info.size.height + ' ' + info.localOffset.x + ' ' + info.localOffset.y + ' ' + info.windowOffset.x + ' ' + info.windowOffset.y)
  41.             })
  42.         })
  43.       Image(this.pixmap)
  44.         .margin(10)
  45.         .height(200)
  46.         .width(200)
  47.         .border({ color: Color.Black, width: 2 })
  48.     }.width('100%').margin({ left: 10, top: 5, bottom: 5 }).height(300)
  49.   }
  50. }
复制代码


componentSnapshot.createFromBuilder

createFromBuilder(builder: CustomBuilder): Promise<image.PixelMap>
在应用背景渲染CustomBuilder自界说组件,并输出其截图。通过Promise返回结果并支持获取离屏组件绘制区域坐标和大小。
说明
由于需要等待组件构建、渲染成功,离屏截图的回调有500ms以内的耽误。
部分实行耗时使命的组件可能无法及时在截图前加载完成,因此会截取不到加载成功后的图像。比方:加载网络图片的Image组件、Web组件。
体系能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名类型必填说明builderCustomBuilder是 自界说组件构建函数。
说明: 不支持全局builder。
  返回值:
类型说明Promise<image.PixelMap>截图返回的结果。 错误码:
以下错误码的详细先容请参见通用错误码错误码。
错误码ID错误信息401Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2.Incorrect parameter types; 3. Parameter verification failed.100001The builder is not a valid build function. 示例:
  1. import { componentSnapshot, componentUtils } from '@kit.ArkUI'
  2. import { image } from '@kit.ImageKit'
  3. @Entry
  4. @Component
  5. struct OffscreenSnapshotExample {
  6.   @State pixmap: image.PixelMap | undefined = undefined
  7.   @Builder
  8.   RandomBuilder() {
  9.     Flex({ direction: FlexDirection.Column, justifyContent: FlexAlign.Center, alignItems: ItemAlign.Center }) {
  10.       Text('Test menu item 1')
  11.         .fontSize(20)
  12.         .width(100)
  13.         .height(50)
  14.         .textAlign(TextAlign.Center)
  15.       Divider().height(10)
  16.       Text('Test menu item 2')
  17.         .fontSize(20)
  18.         .width(100)
  19.         .height(50)
  20.         .textAlign(TextAlign.Center)
  21.     }
  22.     .width(100)
  23.     .id("builder")
  24.   }
  25.   build() {
  26.     Column() {
  27.       Button("click to generate offscreen UI snapshot")
  28.         .onClick(() => {
  29.           componentSnapshot.createFromBuilder(()=>{this.RandomBuilder()})
  30.             .then((pixmap: image.PixelMap) => {
  31.               this.pixmap = pixmap
  32.               // save pixmap to file
  33.               // ....
  34.               // get component size and location
  35.               let info = componentUtils.getRectangleById("builder")
  36.               console.log(info.size.width + ' ' + info.size.height + ' ' + info.localOffset.x + ' ' + info.localOffset.y + ' ' + info.windowOffset.x + ' ' + info.windowOffset.y)
  37.             }).catch((err:Error) => {
  38.             console.log("error: " + err)
  39.           })
  40.         })
  41.       Image(this.pixmap)
  42.         .margin(10)
  43.         .height(200)
  44.         .width(200)
  45.         .border({ color: Color.Black, width: 2 })
  46.     }.width('100%').margin({ left: 10, top: 5, bottom: 5 }).height(300)
  47.   }
  48. }
复制代码


末了

有很多小搭档不知道学习哪些鸿蒙开辟技术?不知道需要重点掌握哪些鸿蒙应用开辟知识点?而且学习时频仍踩坑,最终浪费大量时间。以是有一份实用的鸿蒙(HarmonyOS NEXT)资料用来跟着学习是非常有须要的。 
点击领取→【纯血版鸿蒙全套最新学习资料】(安全链接,放心点击盼望这一份鸿蒙学习资料能够给大家带来资助,有需要的小搭档自行领取~限时开源!!



 鸿蒙(HarmonyOS NEXT)最新学习路线

有了路线图,怎么能没有学习资料呢,小编也预备了一份联合鸿蒙官方发布笔记整理收纳的一套体系性的鸿蒙(OpenHarmony )学习手册(共计1236页)与鸿蒙(OpenHarmony )开辟入门教学视频,内容包含:ArkTS、ArkUI、Web开辟、应用模子、资源分类…等知识点。
获取以上完备版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料
这份鸿蒙(HarmonyOS NEXT)资料包含了鸿蒙开辟必掌握的核心知识要点,内容包含了(ArkTS、ArkUI开辟组件、Stage模子、多端部署、分布式应用开辟、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、(南向驱动、嵌入式等)鸿蒙项目实战等等)鸿蒙(HarmonyOS NEXT)技术知识点。

HarmonyOS Next 最新全套视频教程

 《鸿蒙 (OpenHarmony)开辟底子到实战手册》
OpenHarmony北向、南向开辟环境搭建

《鸿蒙开辟底子》

《鸿蒙开辟进阶》


《鸿蒙进阶实战》


大厂面试必问面试题

鸿蒙南向开辟技术

鸿蒙APP开辟必备

请点击→纯血版全套鸿蒙HarmonyOS学习资料
总的来说,华为鸿蒙不再兼容安卓,对中年步伐员来说是一个挑战,也是一个时机。只有积极应对厘革,不断学习和提拔本身,才能在这个厘革的期间中立于不败之地。 
                   

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4