Skip to main content
Version: 1.x

Taro.canvasPutImageData(param, componentInstance)

将像素数据绘制到画布。在自定义组件下,第二个参数传入自定义组件实例 this,以操作组件内 <Canvas> 组件。

参数

object param

NameTypeDescription
canvasIdString画布标识,传入 <Canvas> 组件的 canvasId 属性。
dataUint8ClampedArray图像像素点数据,一维数组,每四项表示一个像素点的 rgba
xNumber源图像数据在目标画布中的位置偏移量(x 轴方向的偏移量)
yNumber源图像数据在目标画布中的位置偏移量(y 轴方向的偏移量)
widthNumber源图像数据矩形区域的宽度
heightNumber源图像数据矩形区域的高度
[success]function接口调用成功的回调函数
[fail]function接口调用失败的回调函数
[complete]function接口调用结束的回调函数(调用成功、失败都会执行)

Component componentInstance

在自定义组件下,当前组件实例的this,以操作组件内 <Canvas> 组件

API支持度

API微信小程序H5React Native
Taro.canvasPutImageData✔️✔️