js-apis-image.md 101.7 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.multimedia.image (图片处理)
X
xiaok 已提交
2

X
xu-rui-w 已提交
3 4
本模块提供图片处理效果,包括通过属性创建PixelMap、读取图像像素数据、读取区域内的图片数据等。

Z
zengyawen 已提交
5
> **说明:**
H
update  
HelloCrease 已提交
6
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
7

Z
zengyawen 已提交
8
## 导入模块
X
xiaok 已提交
9

Z
zengyawen 已提交
10
```js
Z
zengyawen 已提交
11
import image from '@ohos.multimedia.image';
X
xiaok 已提交
12 13
```

Z
zengyawen 已提交
14
## image.createPixelMap<sup>8+</sup>
X
xu-rui-w 已提交
15

16
createPixelMap(colors: ArrayBuffer, options: InitializationOptions): Promise\<PixelMap>
X
xiaok 已提交
17

X
xu-rui-w 已提交
18
通过属性创建PixelMap,默认采用BGRA_8888格式处理数据,通过Promise返回结果。
X
xiaok 已提交
19

X
xu-rui-w 已提交
20
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
21 22 23

**参数:**

24
| 参数名  | 类型                                             | 必填 | 说明                                                             |
X
xu-rui-w 已提交
25 26
| ------- | ------------------------------------------------ | ---- | ---------------------------------------------------------------- |
| colors  | ArrayBuffer                                      | 是   | BGRA_8888格式的颜色数组。                                        |
27
| options | [InitializationOptions](#initializationoptions8) | 是   | 创建像素的属性,包括透明度,尺寸,缩略值,像素格式和是否可编辑。 |
X
xiaok 已提交
28 29 30

**返回值:**

X
xu-rui-w 已提交
31 32 33 34
| 类型                             | 说明                                                                    |
| -------------------------------- | ----------------------------------------------------------------------- |
| Promise\<[PixelMap](#pixelmap7)> | 返回Pixelmap。<br>当创建的pixelmap大小超过原图大小时,返回原图pixelmap大小。|

X
xiaok 已提交
35 36 37 38

**示例:**

```js
X
xu-rui-w 已提交
39
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
40
let bufferArr = new Uint8Array(color);
X
xu-rui-w 已提交
41
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
F
fengzewu 已提交
42 43 44 45 46
image.createPixelMap(color, opts).then((pixelmap) => {
    console.log('Succeeded in creating pixelmap.');
}).catch(error => {
    console.log('Failed to create pixelmap.');
})
X
xiaok 已提交
47 48
```

Z
zengyawen 已提交
49
## image.createPixelMap<sup>8+</sup>
X
xiaok 已提交
50

51
createPixelMap(colors: ArrayBuffer, options: InitializationOptions, callback: AsyncCallback\<PixelMap>): void
X
xiaok 已提交
52

X
xu-rui-w 已提交
53
通过属性创建PixelMap,默认采用BGRA_8888格式处理数据,通过回调函数返回结果。
X
xiaok 已提交
54

X
xu-rui-w 已提交
55
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
56 57 58

**参数:**

59
| 参数名   | 类型                                             | 必填 | 说明                       |
Z
zengyawen 已提交
60
| -------- | ------------------------------------------------ | ---- | -------------------------- |
X
xu-rui-w 已提交
61
| colors   | ArrayBuffer                                      | 是   | BGRA_8888格式的颜色数组。  |
62
| options  | [InitializationOptions](#initializationoptions8) | 是   | 属性。                     |
Z
zengyawen 已提交
63
| callback | AsyncCallback\<[PixelMap](#pixelmap7)>           | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
64 65 66 67

**示例:**

```js
X
xu-rui-w 已提交
68
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
69
let bufferArr = new Uint8Array(color);
X
xu-rui-w 已提交
70
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
X
xu-rui-w 已提交
71 72 73 74 75 76 77
image.createPixelMap(color, opts, (error, pixelmap) => {
    if(error) {
        console.log('Failed to create pixelmap.');
    } else {
        console.log('Succeeded in creating pixelmap.');
    }
})
X
xiaok 已提交
78 79
```

Z
zengyawen 已提交
80
## PixelMap<sup>7+</sup>
Z
zengyawen 已提交
81

82
图像像素类,用于读取或写入图像数据以及获取图像信息。在调用PixelMap的方法前,需要先通过createPixelMap创建一个PixelMap实例。目前pixelmap序列化大小最大128MB,超过会送显失败。大小计算方式为(宽\*\*每像素占用字节数)。
Z
zengyawen 已提交
83 84 85

 ### 属性

X
xu-rui-w 已提交
86
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
87

X
xu-rui-w 已提交
88 89 90
| 名称       | 类型    | 可读 | 可写 | 说明                       |
| ---------- | ------- | ---- | ---- | -------------------------- |
| isEditable | boolean | 是   | 否   | 设定是否图像像素可被编辑。 |
Z
zengyawen 已提交
91

Z
zengyawen 已提交
92
### readPixelsToBuffer<sup>7+</sup>
X
xiaok 已提交
93

Z
zengyawen 已提交
94
readPixelsToBuffer(dst: ArrayBuffer): Promise\<void>
X
xiaok 已提交
95

X
xu-rui-w 已提交
96
读取图像像素数据,结果写入ArrayBuffer里,使用Promise形式返回。指定BGRA_8888格式创建pixelmap,读取的像素数据与原数据保持一致。
X
xiaok 已提交
97

X
xu-rui-w 已提交
98
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
99 100 101

**参数:**

X
xu-rui-w 已提交
102 103 104
| 参数名 | 类型        | 必填 | 说明                                                                                                  |
| ------ | ----------- | ---- | ----------------------------------------------------------------------------------------------------- |
| dst    | ArrayBuffer | 是   | 缓冲区,函数执行结束后获取的图像像素数据写入到该内存区域内。缓冲区大小由getPixelBytesNumber接口获取。 |
X
xiaok 已提交
105 106 107

**返回值:**

Z
zengyawen 已提交
108
| 类型           | 说明                                            |
X
xu-rui-w 已提交
109
| -------------- | ----------------------------------------------- |
Z
zengyawen 已提交
110
| Promise\<void> | Promise实例,用于获取结果,失败时返回错误信息。 |
X
xiaok 已提交
111 112 113 114

**示例:**

```js
X
xu-rui-w 已提交
115
const readBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
116 117
pixelmap.readPixelsToBuffer(readBuffer).then(() => {
    console.log('Succeeded in reading image pixel data.');  //符合条件则进入 
X
xu-rui-w 已提交
118
}).catch(error => {
X
xu-rui-w 已提交
119
    console.log('Failed to read image pixel data.');  //不符合条件则进入
X
xu-rui-w 已提交
120
})
X
xiaok 已提交
121 122
```

Z
zengyawen 已提交
123
### readPixelsToBuffer<sup>7+</sup>
X
xiaok 已提交
124

Z
zengyawen 已提交
125
readPixelsToBuffer(dst: ArrayBuffer, callback: AsyncCallback\<void>): void
X
xiaok 已提交
126

X
xu-rui-w 已提交
127
读取图像像素数据,结果写入ArrayBuffer里,使用callback形式返回。指定BGRA_8888格式创建pixelmap,读取的像素数据与原数据保持一致。
X
xiaok 已提交
128

X
xu-rui-w 已提交
129
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
130 131 132

**参数:**

X
xu-rui-w 已提交
133 134 135 136
| 参数名   | 类型                 | 必填 | 说明                                                                                                  |
| -------- | -------------------- | ---- | ----------------------------------------------------------------------------------------------------- |
| dst      | ArrayBuffer          | 是   | 缓冲区,函数执行结束后获取的图像像素数据写入到该内存区域内。缓冲区大小由getPixelBytesNumber接口获取。 |
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。                                                                        |
X
xiaok 已提交
137 138 139 140

**示例:**

```js
X
xu-rui-w 已提交
141
const readBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
142
pixelmap.readPixelsToBuffer(readBuffer, (err, res) => {
X
xu-rui-w 已提交
143
    if(err) {
X
xu-rui-w 已提交
144
        console.log('Failed to read image pixel data.');  //不符合条件则进入
X
xu-rui-w 已提交
145
    } else {
X
xu-rui-w 已提交
146
        console.log('Succeeded in reading image pixel data.');  //符合条件则进入
X
xu-rui-w 已提交
147 148
    }
})
X
xiaok 已提交
149 150
```

Z
zengyawen 已提交
151
### readPixels<sup>7+</sup>
X
xiaok 已提交
152

Z
zengyawen 已提交
153
readPixels(area: PositionArea): Promise\<void>
X
xiaok 已提交
154

R
renhongwei 已提交
155
读取区域内的图片数据,使用Promise形式返回。
X
xiaok 已提交
156

X
xu-rui-w 已提交
157
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
158 159 160

**参数:**

Z
zengyawen 已提交
161 162 163
| 参数名 | 类型                           | 必填 | 说明                     |
| ------ | ------------------------------ | ---- | ------------------------ |
| area   | [PositionArea](#positionarea7) | 是   | 区域大小,根据区域读取。 |
X
xiaok 已提交
164 165 166

**返回值:**

Z
zengyawen 已提交
167 168 169
| 类型           | 说明                                                |
| :------------- | :-------------------------------------------------- |
| Promise\<void> | Promise实例,用于获取读取结果,失败时返回错误信息。 |
X
xiaok 已提交
170 171 172 173

**示例:**

```js
X
xu-rui-w 已提交
174 175 176 177 178 179
const area = {
    pixels: new ArrayBuffer(8),
    offset: 0,
    stride: 8,
    region: { size: { height: 1, width: 2 }, x: 0, y: 0 }
}
X
xu-rui-w 已提交
180 181
pixelmap.readPixels(area).then(() => {
    console.log('Succeeded in reading the image data in the area.'); //符合条件则进入
X
xu-rui-w 已提交
182
}).catch(error => {
X
xu-rui-w 已提交
183
    console.log('Failed to read the image data in the area.'); //不符合条件则进入
X
xu-rui-w 已提交
184
})
X
xiaok 已提交
185 186
```

Z
zengyawen 已提交
187
### readPixels<sup>7+</sup>
X
xiaok 已提交
188

Z
zengyawen 已提交
189
readPixels(area: PositionArea, callback: AsyncCallback\<void>): void
X
xiaok 已提交
190

Z
zengyawen 已提交
191
读取区域内的图片数据,使用callback形式返回读取结果。
X
xiaok 已提交
192

X
xu-rui-w 已提交
193
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
194 195 196

**参数:**

Z
zengyawen 已提交
197 198 199 200
| 参数名   | 类型                           | 必填 | 说明                           |
| -------- | ------------------------------ | ---- | ------------------------------ |
| area     | [PositionArea](#positionarea7) | 是   | 区域大小,根据区域读取。       |
| callback | AsyncCallback\<void>           | 是   | 获取回调,失败时返回错误信息。 |
X
xiaok 已提交
201 202 203 204

**示例:**

```js
X
xu-rui-w 已提交
205
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
206
let bufferArr = new Uint8Array(color);
207 208
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts, (err, pixelmap) => {
X
xu-rui-w 已提交
209 210 211 212 213 214 215 216 217 218 219
    if(pixelmap == undefined){
        console.info('createPixelMap failed.');
    } else {
        const area = { pixels: new ArrayBuffer(8),
            offset: 0,
            stride: 8,
            region: { size: { height: 1, width: 2 }, x: 0, y: 0 }};
        pixelmap.readPixels(area, () => {
            console.info('readPixels success');
        })
    }
220
})
X
xiaok 已提交
221 222
```

Z
zengyawen 已提交
223
### writePixels<sup>7+</sup>
X
xiaok 已提交
224

Z
zengyawen 已提交
225
writePixels(area: PositionArea): Promise\<void>
X
xiaok 已提交
226

227
将PixelMap写入指定区域内,使用Promise形式返回写入结果。
X
xiaok 已提交
228

X
xu-rui-w 已提交
229
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
230 231 232

**参数:** 

Z
zengyawen 已提交
233 234
| 参数名 | 类型                           | 必填 | 说明                 |
| ------ | ------------------------------ | ---- | -------------------- |
Z
zengyawen 已提交
235
| area   | [PositionArea](#positionarea7) | 是   | 区域,根据区域写入。 |
X
xiaok 已提交
236 237 238

**返回值:**

Z
zengyawen 已提交
239 240 241
| 类型           | 说明                                                |
| :------------- | :-------------------------------------------------- |
| Promise\<void> | Promise实例,用于获取写入结果,失败时返回错误信息。 |
X
xiaok 已提交
242 243 244 245

**示例:**

```js
X
xu-rui-w 已提交
246
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
247
let bufferArr = new Uint8Array(color);
248 249 250 251
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts)
    .then( pixelmap => {
        if (pixelmap == undefined) {
X
xu-rui-w 已提交
252
            console.info('createPixelMap failed.');
253 254 255 256 257 258
        }
        const area = { pixels: new ArrayBuffer(8),
            offset: 0,
            stride: 8,
            region: { size: { height: 1, width: 2 }, x: 0, y: 0 }
        }
X
xu-rui-w 已提交
259
        let bufferArr = new Uint8Array(area.pixels);
260 261 262 263 264
        for (var i = 0; i < bufferArr.length; i++) {
            bufferArr[i] = i + 1;
        }

        pixelmap.writePixels(area).then(() => {
F
fengzewu 已提交
265
		    console.info('Succeeded to write pixelmap into the specified area.');
266
        })
X
xu-rui-w 已提交
267
    }).catch(error => {
268 269
        console.log('error: ' + error);
    })
X
xiaok 已提交
270 271
```

Z
zengyawen 已提交
272
### writePixels<sup>7+</sup>
X
xiaok 已提交
273

Z
zengyawen 已提交
274
writePixels(area: PositionArea, callback: AsyncCallback\<void>): void
X
xiaok 已提交
275

276
将PixelMap写入指定区域内,使用callback形式返回写入结果。
X
xiaok 已提交
277

X
xu-rui-w 已提交
278
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
279 280 281

**参数:** 

Z
zengyawen 已提交
282 283
| 参数名    | 类型                           | 必填 | 说明                           |
| --------- | ------------------------------ | ---- | ------------------------------ |
Z
zengyawen 已提交
284
| area      | [PositionArea](#positionarea7) | 是   | 区域,根据区域写入。           |
X
xu-rui-w 已提交
285
| callback  | AsyncCallback\<void>           | 是   | 获取回调,失败时返回错误信息。 |
X
xiaok 已提交
286 287 288 289

**示例:**

```js
F
fengzewu 已提交
290 291 292 293 294 295 296 297 298
const area = { pixels: new ArrayBuffer(8),
    offset: 0,
    stride: 8,
    region: { size: { height: 1, width: 2 }, x: 0, y: 0 }
}
let bufferArr = new Uint8Array(area.pixels);
for (var i = 0; i < bufferArr.length; i++) {
    bufferArr[i] = i + 1;
}
X
xu-rui-w 已提交
299
pixelmap.writePixels(area, (error) => {
X
xu-rui-w 已提交
300
    if (error != undefined) {
X
xu-rui-w 已提交
301
		console.info('Failed to write pixelmap into the specified area.');
X
xu-rui-w 已提交
302
	} else {
F
fengzewu 已提交
303
		console.info('Succeeded to write pixelmap into the specified area.');
X
xu-rui-w 已提交
304
	}
X
xu-rui-w 已提交
305
})
X
xiaok 已提交
306 307
```

Z
zengyawen 已提交
308
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
309

Z
zengyawen 已提交
310
writeBufferToPixels(src: ArrayBuffer): Promise\<void>
X
xiaok 已提交
311

312
读取缓冲区中的图片数据,结果写入PixelMap中,使用Promise形式返回。
X
xiaok 已提交
313

X
xu-rui-w 已提交
314
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
315 316 317

**参数:**

Z
zengyawen 已提交
318 319 320
| 参数名 | 类型        | 必填 | 说明           |
| ------ | ----------- | ---- | -------------- |
| src    | ArrayBuffer | 是   | 图像像素数据。 |
X
xiaok 已提交
321 322 323

**返回值:**

Z
zengyawen 已提交
324 325 326
| 类型           | 说明                                            |
| -------------- | ----------------------------------------------- |
| Promise\<void> | Promise实例,用于获取结果,失败时返回错误信息。 |
X
xiaok 已提交
327 328 329 330

**示例:**

```js
X
xu-rui-w 已提交
331
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
332
let bufferArr = new Uint8Array(color);
F
fengzewu 已提交
333 334 335 336
for (var i = 0; i < bufferArr.length; i++) {
    bufferArr[i] = i + 1;
}
pixelmap.writeBufferToPixels(color).then(() => {
X
xiaok 已提交
337 338 339
    console.log("Succeeded in writing data from a buffer to a PixelMap.");
}).catch((err) => {
    console.error("Failed to write data from a buffer to a PixelMap.");
X
xu-rui-w 已提交
340
})
X
xiaok 已提交
341 342
```

Z
zengyawen 已提交
343
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
344

Z
zengyawen 已提交
345
writeBufferToPixels(src: ArrayBuffer, callback: AsyncCallback\<void>): void
X
xiaok 已提交
346

347
读取缓冲区中的图片数据,结果写入PixelMap中,使用callback形式返回。
X
xiaok 已提交
348

X
xu-rui-w 已提交
349
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
350 351 352

**参数:**

Z
zengyawen 已提交
353 354 355 356
| 参数名   | 类型                 | 必填 | 说明                           |
| -------- | -------------------- | ---- | ------------------------------ |
| src      | ArrayBuffer          | 是   | 图像像素数据。                 |
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。 |
X
xiaok 已提交
357 358 359 360

**示例:**

```js
X
xu-rui-w 已提交
361
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
362
let bufferArr = new Uint8Array(color);
F
fengzewu 已提交
363 364 365 366
for (var i = 0; i < bufferArr.length; i++) {
    bufferArr[i] = i + 1;
}
pixelmap.writeBufferToPixels(color, function(err) {
X
xiaok 已提交
367 368 369
    if (err) {
        console.error("Failed to write data from a buffer to a PixelMap.");
        return;
X
xu-rui-w 已提交
370 371 372
    } else {
		console.log("Succeeded in writing data from a buffer to a PixelMap.");
	}
X
xiaok 已提交
373 374 375
});
```

Z
zengyawen 已提交
376
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
377

Z
zengyawen 已提交
378
getImageInfo(): Promise\<ImageInfo>
X
xiaok 已提交
379 380 381

获取图像像素信息,使用Promise形式返回获取的图像像素信息。

X
xu-rui-w 已提交
382
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
383 384 385

**返回值:**

Z
zengyawen 已提交
386 387 388
| 类型                              | 说明                                                        |
| --------------------------------- | ----------------------------------------------------------- |
| Promise\<[ImageInfo](#imageinfo)> | Promise实例,用于异步获取图像像素信息,失败时返回错误信息。 |
X
xiaok 已提交
389 390 391 392

**示例:**

```js
X
xu-rui-w 已提交
393
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
F
fengzewu 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407
let opts = { editable: true, pixelFormat: 2, size: { height: 6, width: 8 } }
image.createPixelMap(color, opts).then(pixelmap => {
    if (pixelmap == undefined) {
        console.error("Failed to obtain the image pixel map information.");
    }
    pixelmap.getImageInfo().then(imageInfo => {
        if (imageInfo == undefined) {
            console.error("Failed to obtain the image pixel map information.");
        }
        if (imageInfo.size.height == 4 && imageInfo.size.width == 6) {
            console.log("Succeeded in obtaining the image pixel map information.");
        }
    })
})
X
xiaok 已提交
408 409
```

Z
zengyawen 已提交
410
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
411

Z
zengyawen 已提交
412
getImageInfo(callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
413 414 415

获取图像像素信息,使用callback形式返回获取的图像像素信息。

X
xu-rui-w 已提交
416
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
417 418 419

**参数:**

Z
zengyawen 已提交
420 421 422
| 参数名   | 类型                                    | 必填 | 说明                                                         |
| -------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback\<[ImageInfo](#imageinfo)> | 是   | 获取图像像素信息回调,异步返回图像像素信息,失败时返回错误信息。 |
X
xiaok 已提交
423 424 425 426

**示例:**

```js
X
xu-rui-w 已提交
427
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
F
fengzewu 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts, (err, pixelmap) => {
    if (pixelmap == undefined) {
        console.error("Failed to obtain the image pixel map information.");
    }
    pixelmap.getImageInfo((err, imageInfo) => {
        if (imageInfo == undefined) {
            console.error("Failed to obtain the image pixel map information.");
        }
        if (imageInfo.size.height == 4 && imageInfo.size.width == 6) {
            console.log("Succeeded in obtaining the image pixel map information.");
        }
    })
X
xu-rui-w 已提交
441
})
X
xiaok 已提交
442 443
```

Z
zengyawen 已提交
444
### getBytesNumberPerRow<sup>7+</sup>
X
xiaok 已提交
445

Z
zengyawen 已提交
446
getBytesNumberPerRow(): number
X
xiaok 已提交
447 448 449

获取图像像素每行字节数。

X
xu-rui-w 已提交
450
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
451 452 453

**返回值:**

Z
zengyawen 已提交
454 455 456
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的行字节数。 |
X
xiaok 已提交
457 458 459 460

**示例:**

```js
X
xu-rui-w 已提交
461
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
462
let bufferArr = new Uint8Array(color);
X
xu-rui-w 已提交
463
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
X
xu-rui-w 已提交
464
image.createPixelMap(color, opts, (err,pixelmap) => {
X
xu-rui-w 已提交
465 466
    let rowCount = pixelmap.getBytesNumberPerRow();
})
X
xiaok 已提交
467 468
```

Z
zengyawen 已提交
469
### getPixelBytesNumber<sup>7+</sup>
X
xiaok 已提交
470

Z
zengyawen 已提交
471
getPixelBytesNumber(): number
X
xiaok 已提交
472 473 474

获取图像像素的总字节数。

X
xu-rui-w 已提交
475
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
476 477 478

**返回值:**

Z
zengyawen 已提交
479 480 481
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的总字节数。 |
X
xiaok 已提交
482 483 484 485

**示例:**

```js
X
xu-rui-w 已提交
486
let pixelBytesNumber = pixelmap.getPixelBytesNumber();
X
xiaok 已提交
487 488
```

X
xu-rui-w 已提交
489 490 491 492
### getDensity<sup>9+</sup>

getDensity():number

X
xu-rui-w 已提交
493
获取当前图像像素的密度。
X
xu-rui-w 已提交
494 495 496 497 498

**系统能力:** SystemCapability.Multimedia.Image.Core

**返回值:**

X
xu-rui-w 已提交
499 500 501
| 类型   | 说明            |
| ------ | --------------- |
| number | 图像像素的密度。|
X
xu-rui-w 已提交
502 503 504 505 506 507 508 509 510 511 512

**示例:**

```js
let getDensity = pixelmap.getDensity();
```

### opacity<sup>9+</sup>

opacity(rate: number, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
513
通过设置透明比率来让PixelMap达到对应的透明效果,使用callback形式返回。
X
xu-rui-w 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名   | 类型                 | 必填 | 说明                           |
| -------- | -------------------- | ---- | ------------------------------ |
| rate     | number               | 是   | 透明比率的值,取值范围:0-1。   |
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
F
fengzewu 已提交
527 528 529 530 531 532 533 534 535
var rate = 0.5;
pixelmap.opacity(rate, (err) => {
	if (err) {
        console.error("Failed to set opacity.");
        return;
    } else {
        console.log("Succeeded in setting opacity.");
	}
})
X
xu-rui-w 已提交
536 537 538 539 540 541
```

### opacity<sup>9+</sup>

opacity(rate: number): Promise\<void>

X
xu-rui-w 已提交
542
通过设置透明比率来让PixelMap达到对应的透明效果,使用Promise形式返回。
X
xu-rui-w 已提交
543 544 545 546 547 548 549

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                        |
| ------ | ------ | ---- | --------------------------- |
X
xu-rui-w 已提交
550
| rate   | number | 是   | 透明比率的值,取值范围:0-1。|
X
xu-rui-w 已提交
551 552 553 554 555 556 557 558 559 560

**返回值:**

| 类型           | 说明                                            |
| -------------- | ----------------------------------------------- |
| Promise\<void> | Promise实例,用于获取结果,失败时返回错误信息。 |

**示例:**

```js
F
fengzewu 已提交
561
async function Demo() {
F
fengzewu 已提交
562
    await pixelmap.opacity(0.5);
X
xu-rui-w 已提交
563
}
X
xu-rui-w 已提交
564 565 566 567 568 569
```

### createAlphaPixelmap<sup>9+</sup>

createAlphaPixelmap(): Promise\<PixelMap>

X
xu-rui-w 已提交
570
根据Alpha通道的信息,来生成一个仅包含Alpha通道信息的pixelmap,可用于阴影效果,使用Promise形式返回。
X
xu-rui-w 已提交
571 572 573 574 575 576 577 578 579 580 581 582

**系统能力:** SystemCapability.Multimedia.Image.Core

**返回值:**

| 类型                             | 说明                        |
| -------------------------------- | --------------------------- |
| Promise\<[PixelMap](#pixelmap7)> | Promise实例,返回pixelmap。 |

**示例:**

```js
F
fengzewu 已提交
583
async function Demo() {
F
fengzewu 已提交
584 585
    await pixelmap.createAlphaPixelmap();
}   
X
xu-rui-w 已提交
586 587 588 589 590 591
```

### createAlphaPixelmap<sup>9+</sup>

createAlphaPixelmap(callback: AsyncCallback\<PixelMap>): void

X
xu-rui-w 已提交
592
根据Alpha通道的信息,来生成一个仅包含Alpha通道信息的pixelmap,可用于阴影效果,使用callback形式返回。
X
xu-rui-w 已提交
593 594 595 596 597

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

X
xu-rui-w 已提交
598 599 600
| 参数名   | 类型                     | 必填 | 说明                     |
| -------- | ------------------------ | ---- | ------------------------ |
| callback | AsyncCallback\<PixelMap> | 是   | 获取回调,异步返回结果。 |
X
xu-rui-w 已提交
601 602 603 604

**示例:**

```js
F
fengzewu 已提交
605 606 607 608 609 610 611
pixelmap.createAlphaPixelmap((err, alphaPixelMap) => {
    if (alphaPixelMap == undefined) {
        console.info('Failed to obtain new pixel map.');
    } else {
        console.info('Succeed in obtaining new pixel map.');
    }
})
X
xu-rui-w 已提交
612 613 614 615 616 617
```

### scale<sup>9+</sup>

scale(x: number, y: number, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
618
根据输入的宽高对图片进行缩放,使用callback形式返回。
X
xu-rui-w 已提交
619 620 621 622 623

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

X
xu-rui-w 已提交
624 625 626 627 628
| 参数名   | 类型                 | 必填 | 说明                            |
| -------- | -------------------- | ---- | ------------------------------- |
| x        | number               | 是   | 宽度的缩放值,其值为输入的倍数。|
| y        | number               | 是   | 高度的缩放值,其值为输入的倍数。|
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。  |
X
xu-rui-w 已提交
629 630 631 632

**示例:**

```js
F
fengzewu 已提交
633
async function Demo() {
F
fengzewu 已提交
634
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
635
}
X
xu-rui-w 已提交
636 637 638 639 640 641
```

### scale<sup>9+</sup>

scale(x: number, y: number): Promise\<void>

X
xu-rui-w 已提交
642
根据输入的宽高对图片进行缩放,使用Promise形式返回。
X
xu-rui-w 已提交
643 644 645 646 647

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

X
xu-rui-w 已提交
648 649 650 651
| 参数名 | 类型   | 必填 | 说明                            |
| ------ | ------ | ---- | ------------------------------- |
| x      | number | 是   | 宽度的缩放值,其值为输入的倍数。|
| y      | number | 是   | 高度的缩放值,其值为输入的倍数。|
X
xu-rui-w 已提交
652 653 654

**返回值:**

X
xu-rui-w 已提交
655 656 657
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
658 659 660 661

**示例:**

```js
F
fengzewu 已提交
662
async function Demo() {
F
fengzewu 已提交
663
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
664
}
X
xu-rui-w 已提交
665 666 667 668 669 670
```

### translate<sup>9+</sup>

translate(x: number, y: number, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
671
根据输入的坐标对图片进行位置变换,使用callback形式返回。
X
xu-rui-w 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名   | 类型                 | 必填 | 说明                          |
| -------- | -------------------- | ---- | ----------------------------- |
| x        | number               | 是   | 区域横坐标。                  |
| y        | number               | 是   | 区域纵坐标。                  |
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。|

**示例:**

```js
F
fengzewu 已提交
686
async function Demo() {
F
fengzewu 已提交
687
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
688
}
X
xu-rui-w 已提交
689 690 691 692 693 694
```

### translate<sup>9+</sup>

translate(x: number, y: number): Promise\<void>

X
xu-rui-w 已提交
695
根据输入的坐标对图片进行位置变换,使用Promise形式返回。
X
xu-rui-w 已提交
696 697 698 699 700 701 702 703 704 705 706 707

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明        |
| ------ | ------ | ---- | ----------- |
| x      | number | 是   | 区域横坐标。|
| y      | number | 是   | 区域纵坐标。|

**返回值:**

X
xu-rui-w 已提交
708 709 710
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
711 712 713 714

**示例:**

```js
F
fengzewu 已提交
715
async function Demo() {
F
fengzewu 已提交
716
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
717
}
X
xu-rui-w 已提交
718 719 720 721 722 723
```

### rotate<sup>9+</sup>

rotate(angle: number, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
724
根据输入的角度对图片进行旋转,使用callback形式返回。
X
xu-rui-w 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名   | 类型                 | 必填 | 说明                          |
| -------- | -------------------- | ---- | ----------------------------- |
| angle    | number               | 是   | 图片旋转的角度。              |
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。|

**示例:**

```js
Y
yaozhupeng 已提交
738 739 740 741 742 743 744 745 746
var angle = 90.0;
pixelmap.rotate(angle, (err) => {
	if (err) {
        console.error("Failed to set rotation.");
        return;
    } else {
        console.log("Succeeded in setting rotation.");
	}
})
X
xu-rui-w 已提交
747 748 749 750 751 752
```

### rotate<sup>9+</sup>

rotate(angle: number): Promise\<void>

X
xu-rui-w 已提交
753
根据输入的角度对图片进行旋转,使用Promise形式返回。
X
xu-rui-w 已提交
754 755 756 757 758 759 760 761 762 763 764

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                          |
| ------ | ------ | ---- | ----------------------------- |
| angle  | number | 是   | 图片旋转的角度。              |

**返回值:**

X
xu-rui-w 已提交
765 766 767
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
768 769 770 771

**示例:**

```js
F
fengzewu 已提交
772
async function Demo() {
F
fengzewu 已提交
773
	await pixelmap.rotate(90.0);
X
xu-rui-w 已提交
774
}
X
xu-rui-w 已提交
775 776 777 778 779 780
```

### flip<sup>9+</sup>

flip(horizontal: boolean, vertical: boolean, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
781
根据输入的条件对图片进行翻转,使用callback形式返回。
X
xu-rui-w 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名     | 类型                 | 必填 | 说明                          |
| ---------- | -------------------- | ---- | ----------------------------- |
| horizontal | boolean              | 是   | 水平翻转。                    |
| vertical   | boolean              | 是   | 垂直翻转。                    |
| callback   | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。|

**示例:**

```js
F
fengzewu 已提交
796
async function Demo() {
F
fengzewu 已提交
797
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
798
}
X
xu-rui-w 已提交
799 800 801 802 803 804
```

### flip<sup>9+</sup>

flip(horizontal: boolean, vertical: boolean): Promise\<void>

X
xu-rui-w 已提交
805
根据输入的条件对图片进行翻转,使用Promise形式返回。
X
xu-rui-w 已提交
806 807 808 809 810 811 812 813 814 815 816 817

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名     | 类型    | 必填 | 说明      |
| ---------- | ------- | ---- | --------- |
| horizontal | boolean | 是   | 水平翻转。|
| vertical   | boolean | 是   | 垂直翻转。|

**返回值:**

X
xu-rui-w 已提交
818 819 820
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
821 822 823 824

**示例:**

```js
F
fengzewu 已提交
825
async function Demo() {
F
fengzewu 已提交
826
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
827
}
X
xu-rui-w 已提交
828 829 830 831 832 833
```

### crop<sup>9+</sup>

crop(region: Region, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
834
根据输入的尺寸对图片进行裁剪,使用callback形式返回。
X
xu-rui-w 已提交
835 836 837 838 839 840 841

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名   | 类型                 | 必填 | 说明                          |
| -------- | -------------------- | ---- | ----------------------------- |
X
xu-rui-w 已提交
842
| region   | [Region](#region7)   | 是   | 裁剪的尺寸。                  |
X
xu-rui-w 已提交
843 844 845 846 847
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。|

**示例:**

```js
F
fengzewu 已提交
848
async function Demo() {
F
fengzewu 已提交
849
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } });
X
xu-rui-w 已提交
850
}
X
xu-rui-w 已提交
851 852 853 854 855 856
```

### crop<sup>9+</sup>

crop(region: Region): Promise\<void>

X
xu-rui-w 已提交
857
根据输入的尺寸对图片进行裁剪,使用Promise形式返回。
X
xu-rui-w 已提交
858 859 860 861 862

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

X
xu-rui-w 已提交
863 864 865
| 参数名 | 类型               | 必填 | 说明        |
| ------ | ------------------ | ---- | ----------- |
| region | [Region](#region7) | 是   | 裁剪的尺寸。|
X
xu-rui-w 已提交
866 867 868

**返回值:**

X
xu-rui-w 已提交
869 870 871
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
872 873 874 875

**示例:**

```js
F
fengzewu 已提交
876
async function Demo() {
F
fengzewu 已提交
877
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } });
X
xu-rui-w 已提交
878
}
X
xu-rui-w 已提交
879 880
```

F
fengzewu 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
### getColorSpace<sup>10+</sup>

getColorSpace(): colorSpaceManager.ColorSpaceManager

获取图像广色域信息。

**系统能力:** SystemCapability.Multimedia.Image.Core

**返回值:**

| 类型                                | 说明             |
| ----------------------------------- | ---------------- |
| [colorSpaceManager.ColorSpaceManager](js-apis-colorSpaceManager.md#colorspacemanager) | 图像广色域信息。 |

**示例:**

```js
import colorSpaceManager from '@ohos.graphics.colorSpaceManager';
async function Demo() {
    let csm = pixelmap.getColorSpace();
}
```

### setColorSpace<sup>10+</sup>

setColorSpace(colorSpace: colorSpaceManager.ColorSpaceManager): void

设置图像广色域信息。

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名     | 类型                                | 必填 | 说明            |
| ---------- | ----------------------------------- | ---- | --------------- |
| colorSpace | [colorSpaceManager.ColorSpaceManager](js-apis-colorSpaceManager.md#colorspacemanager) | 是   | 图像广色域信息。|

**示例:**

```js
import colorSpaceManager from '@ohos.graphics.colorSpaceManager';
async function Demo() {
    var csm = colorSpaceManager.create(colorSpaceName);
    pixelmap.setColorSpace(csm);
}
```

Z
zengyueyang 已提交
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
### marshalling<sup>10+</sup>

marshalling(sequence: rpc.MessageSequence): void

将PixelMap序列化后写入MessageSequence。

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名                 | 类型                                                  | 必填 | 说明                                     |
| ---------------------- | ------------------------------------------------------ | ---- | ---------------------------------------- |
| sequence               | [rpc.MessageSequence](js-apis-rpc.md#messagesequence9)  | 是   | 新创建的MessageSequence。                 |

**示例:**

```js
import image from '@ohos.multimedia.image'
import rpc from '@ohos.rpc'
class MySequence {
    pixel_map;
    constructor(pixelmap) {
        this.pixel_map = pixelmap;
    }
    marshalling(messageSequence) {
        this.pixel_map.marshalling(messageSequence);
        return true;
    }
    async unmarshalling(messageSequence) {
        await image.unmarshalling(messageSequence).then(async (pixelMap) => {
            this.pixel_map = pixelMap;
        })
        return true;
    }
}
async function Demo() {
    let parcelable = new MySequence(pixelMap);
    let data = rpc.MessageSequence.create();
    data.writeParcelable(parcelable);
}
```

### unmarshalling<sup>10+</sup>

unmarshalling(sequence: rpc.MessageSequence): Promise\<PixelMap>

从MessageSequence中获取PixelMap。

**系统能力:** SystemCapability.Multimedia.Image.Core

**参数:**

| 参数名                 | 类型                                                  | 必填 | 说明                                     |
| ---------------------- | ----------------------------------------------------- | ---- | ---------------------------------------- |
| sequence               | [rpc.MessageSequence](js-apis-rpc.md#messagesequence9) | 是   | 保存有PixelMap信息的MessageSequence。      |

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
| Promise\<[PixelMap](#pixelmap7)> | 异步返回Promise对象。 |

**示例:**

```js
import image from '@ohos.multimedia.image'
import rpc from '@ohos.rpc'
class MySequence {
    pixel_map;
    constructor(pixelmap) {
        this.pixel_map = pixelmap;
    }
    marshalling(messageSequence) {
        this.pixel_map.marshalling(messageSequence);
        return true;
    }
    async unmarshalling(messageSequence) {
        await image.unmarshalling(messageSequence).then(async (pixelMap) => {
            this.pixel_map = pixelMap;
        })
        return true;
    }
}
async function Demo() {
    let pixel_map = undefined;
    let ret = new MySequence(pixel_map);
    await data.readParcelable(ret);
}
```

Z
zengyawen 已提交
1018
### release<sup>7+</sup>
X
xiaok 已提交
1019

Z
zengyawen 已提交
1020
release():Promise\<void>
X
xiaok 已提交
1021

1022
释放PixelMap对象,使用Promise形式返回释放结果。
X
xiaok 已提交
1023

X
xu-rui-w 已提交
1024
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
1025

Z
zengyawen 已提交
1026
**返回值:**
X
xiaok 已提交
1027

X
xu-rui-w 已提交
1028 1029 1030
| 类型           | 说明                            |
| -------------- | ------------------------------- |
| Promise\<void> | Promise实例,异步返回释放结果。 |
X
xiaok 已提交
1031 1032 1033 1034

**示例:**

```js
F
fengzewu 已提交
1035 1036 1037 1038
pixelmap.release().then(() => {
	console.log('Succeeded in releasing pixelmap object.');
}).catch(error => {
	console.log('Failed to release pixelmap object.');
X
xu-rui-w 已提交
1039
})
X
xiaok 已提交
1040 1041
```

Z
zengyawen 已提交
1042
### release<sup>7+</sup>
X
xiaok 已提交
1043

Z
zengyawen 已提交
1044
release(callback: AsyncCallback\<void>): void
X
xiaok 已提交
1045

1046
释放PixelMap对象,使用callback形式返回释放结果。
X
xiaok 已提交
1047

X
xu-rui-w 已提交
1048
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
1049 1050 1051

**参数:**

1052
| 参数名   | 类型                 | 必填 | 说明               |
Z
zengyawen 已提交
1053 1054
| -------- | -------------------- | ---- | ------------------ |
| callback | AsyncCallback\<void> | 是   | 异步返回释放结果。 |
X
xiaok 已提交
1055 1056 1057 1058

**示例:**

```js
F
fengzewu 已提交
1059 1060
pixelmap.release(() => {
    console.log('Succeeded in releasing pixelmap object.');
X
xu-rui-w 已提交
1061
})
X
xiaok 已提交
1062 1063
```

Z
zengyawen 已提交
1064
## image.createImageSource
X
xiaok 已提交
1065

Z
zengyawen 已提交
1066
createImageSource(uri: string): ImageSource
X
xiaok 已提交
1067

Z
zengyawen 已提交
1068
通过传入的uri创建图片源实例。
X
xiaok 已提交
1069

X
xu-rui-w 已提交
1070
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1071 1072 1073

**参数:**

Z
zengyawen 已提交
1074 1075
| 参数名 | 类型   | 必填 | 说明                               |
| ------ | ------ | ---- | ---------------------------------- |
1076
| uri    | string | 是   | 图片路径,当前仅支持应用沙箱路径。</br>当前支持格式有:.jpg .png .gif .bmp .webp RAW [SVG<sup>10+</sup>](#svg标签说明)。 |
X
xiaok 已提交
1077 1078 1079

**返回值:**

1080 1081 1082
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1083 1084 1085 1086

**示例:**

```js
F
fengzewu 已提交
1087 1088
//Stage模型
const context = getContext(this);
Z
zhangqiang183 已提交
1089
const path = context.cacheDir + "/test.jpg";
F
fengzewu 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098
const imageSourceApi = image.createImageSource(path);
```

```js
//FA模型
import featureAbility from '@ohos.ability.featureAbility';

const context = featureAbility.getContext();
const path = context.getCacheDir() + "/test.jpg";
Z
zhang-xiaobo1997 已提交
1099
const imageSourceApi = image.createImageSource(path);
X
xiaok 已提交
1100 1101
```

X
xu-rui-w 已提交
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
## image.createImageSource<sup>9+</sup>

createImageSource(uri: string, options: SourceOptions): ImageSource

通过传入的uri创建图片源实例。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
1114
| uri     | string                          | 是   | 图片路径,当前仅支持应用沙箱路径。</br>当前支持格式有:.jpg .png .gif .bmp .webp RAW [SVG<sup>10+</sup>](#svg标签说明)。 |
1115
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125

**返回值:**

| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |

**示例:**

```js
X
xu-rui-w 已提交
1126 1127
var sourceOptions = { sourceDensity: 120 };
let imageSource = image.createImageSource('test.png', sourceOptions);
X
xu-rui-w 已提交
1128 1129
```

Z
zengyawen 已提交
1130
## image.createImageSource<sup>7+</sup>
X
xiaok 已提交
1131

Z
zengyawen 已提交
1132
createImageSource(fd: number): ImageSource
X
xiaok 已提交
1133

Z
zengyawen 已提交
1134
通过传入文件描述符来创建图片源实例。
X
xiaok 已提交
1135

X
xu-rui-w 已提交
1136
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1137 1138 1139

**参数:**

X
xu-rui-w 已提交
1140 1141 1142
| 参数名 | 类型   | 必填 | 说明          |
| ------ | ------ | ---- | ------------- |
| fd     | number | 是   | 文件描述符fd。|
X
xiaok 已提交
1143 1144 1145

**返回值:**

1146 1147 1148
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1149 1150 1151 1152

**示例:**

```js
X
xu-rui-w 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
const imageSourceApi = image.createImageSource(0);
```

## image.createImageSource<sup>9+</sup>

createImageSource(fd: number, options: SourceOptions): ImageSource

通过传入文件描述符来创建图片源实例。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
| fd      | number                          | 是   | 文件描述符fd。                      |
1169
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179

**返回值:**

| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |

**示例:**

```js
F
fengzewu 已提交
1180 1181
var sourceOptions = { sourceDensity: 120 };
const imageSourceApi = image.createImageSource(0, sourceOptions);
X
xu-rui-w 已提交
1182 1183 1184
```

## image.createImageSource<sup>9+</sup>
X
xiaok 已提交
1185

X
xu-rui-w 已提交
1186
createImageSource(buf: ArrayBuffer): ImageSource
X
xiaok 已提交
1187

X
xu-rui-w 已提交
1188
通过缓冲区创建图片源实例。
X
xiaok 已提交
1189

X
xu-rui-w 已提交
1190
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1191 1192 1193

**参数:**

X
xu-rui-w 已提交
1194 1195 1196
| 参数名 | 类型        | 必填 | 说明             |
| ------ | ----------- | ---- | ---------------- |
| buf    | ArrayBuffer | 是   | 图像缓冲区数组。 |
X
xiaok 已提交
1197 1198 1199 1200

**示例:**

```js
X
xu-rui-w 已提交
1201
const buf = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
X
xu-rui-w 已提交
1202
const imageSourceApi = image.createImageSource(buf);
X
xiaok 已提交
1203 1204
```

X
xu-rui-w 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
## image.createImageSource<sup>9+</sup>

createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource

通过缓冲区创建图片源实例。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名 | 类型                             | 必填 | 说明                                 |
| ------ | -------------------------------- | ---- | ------------------------------------ |
| buf    | ArrayBuffer                      | 是   | 图像缓冲区数组。                     |
1218
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228

**返回值:**

| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |

**示例:**

```js
X
xu-rui-w 已提交
1229 1230
const data = new ArrayBuffer(112);
const imageSourceApi = image.createImageSource(data);
X
xu-rui-w 已提交
1231 1232
```

1233
## image.CreateIncrementalSource<sup>9+</sup>
X
xu-rui-w 已提交
1234

1235
CreateIncrementalSource(buf: ArrayBuffer): ImageSource
X
xu-rui-w 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255

通过缓冲区以增量的方式创建图片源实例。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名  | 类型        | 必填 | 说明      |
| ------- | ------------| ---- | ----------|
| buf     | ArrayBuffer | 是   | 增量数据。|

**返回值:**

| 类型                        | 说明                              |
| --------------------------- | --------------------------------- |
| [ImageSource](#imagesource) | 返回图片源,失败时返回undefined。 |

**示例:**

```js
X
xu-rui-w 已提交
1256
const buf = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
1257
const imageSourceIncrementalSApi = image.CreateIncrementalSource(buf);
X
xu-rui-w 已提交
1258 1259
```

1260
## image.CreateIncrementalSource<sup>9+</sup>
X
xu-rui-w 已提交
1261

1262
CreateIncrementalSource(buf: ArrayBuffer, options?: SourceOptions): ImageSource
X
xu-rui-w 已提交
1263

X
xu-rui-w 已提交
1264
通过缓冲区以增量的方式创建图片源实例。
X
xu-rui-w 已提交
1265

X
xu-rui-w 已提交
1266
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1267 1268 1269 1270 1271

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                 |
| ------- | ------------------------------- | ---- | ------------------------------------ |
X
xu-rui-w 已提交
1272
| buf     | ArrayBuffer                     | 是   | 增量数据。                           |
1273
| options | [SourceOptions](#sourceoptions9) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283

**返回值:**

| 类型                        | 说明                              |
| --------------------------- | --------------------------------- |
| [ImageSource](#imagesource) | 返回图片源,失败时返回undefined。 |

**示例:**

```js
X
xu-rui-w 已提交
1284
const buf = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
1285
const imageSourceIncrementalSApi = image.CreateIncrementalSource(buf);
X
xiaok 已提交
1286 1287
```

Z
zengyawen 已提交
1288
## ImageSource
X
xiaok 已提交
1289

Z
zengyawen 已提交
1290 1291 1292 1293
图片源类,用于获取图片相关信息。在调用ImageSource的方法前,需要先通过createImageSource构建一个ImageSource实例。

### 属性

X
xu-rui-w 已提交
1294
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zhang-xiaobo1997 已提交
1295

Z
zengyawen 已提交
1296 1297
| 名称             | 类型           | 可读 | 可写 | 说明                                                         |
| ---------------- | -------------- | ---- | ---- | ------------------------------------------------------------ |
X
xu-rui-w 已提交
1298
| supportedFormats | Array\<string> | 是   | 否   | 支持的图片格式,包括:png,jpeg,bmp,gif,webp,RAW。 |
Z
zengyawen 已提交
1299 1300 1301 1302

### getImageInfo

getImageInfo(index: number, callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
1303 1304 1305

获取指定序号的图片信息,使用callback形式返回图片信息。

X
xu-rui-w 已提交
1306
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1307 1308 1309

**参数:**

Z
zengyawen 已提交
1310 1311 1312 1313
| 参数名   | 类型                                   | 必填 | 说明                                     |
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
| index    | number                                 | 是   | 创建图片源时的序号。                     |
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1314 1315 1316 1317

**示例:**

```js
X
xu-rui-w 已提交
1318 1319 1320 1321 1322 1323 1324
imageSourceApi.getImageInfo(0,(error, imageInfo) => { 
    if(error) {
        console.log('getImageInfo failed.');
    } else {
        console.log('getImageInfo succeeded.');
    }
})
X
xiaok 已提交
1325 1326
```

Z
zengyawen 已提交
1327
### getImageInfo
X
xiaok 已提交
1328

Z
zengyawen 已提交
1329
getImageInfo(callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
1330

Z
zengyawen 已提交
1331
获取图片信息,使用callback形式返回图片信息。
X
xiaok 已提交
1332

X
xu-rui-w 已提交
1333
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1334 1335 1336

**参数:**

1337
| 参数名   | 类型                                   | 必填 | 说明                                     |
X
xiaok 已提交
1338
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
Z
zengyawen 已提交
1339
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1340 1341 1342 1343

**示例:**

```js
X
xu-rui-w 已提交
1344
imageSourceApi.getImageInfo(imageInfo => { 
X
xu-rui-w 已提交
1345
    console.log('Succeeded in obtaining the image information.');
X
xu-rui-w 已提交
1346
})
X
xiaok 已提交
1347 1348
```

Z
zengyawen 已提交
1349
### getImageInfo
X
xiaok 已提交
1350

Z
zengyawen 已提交
1351
getImageInfo(index?: number): Promise\<ImageInfo>
X
xiaok 已提交
1352 1353 1354

获取图片信息,使用Promise形式返回图片信息。

X
xu-rui-w 已提交
1355
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1356 1357 1358

**参数:**

1359
| 参数名| 类型   | 必填 | 说明                                  |
Z
zengyawen 已提交
1360 1361
| ----- | ------ | ---- | ------------------------------------- |
| index | number | 否   | 创建图片源时的序号,不选择时默认为0。 |
X
xiaok 已提交
1362 1363 1364

**返回值:**

Z
zengyawen 已提交
1365 1366 1367
| 类型                             | 说明                   |
| -------------------------------- | ---------------------- |
| Promise<[ImageInfo](#imageinfo)> | 返回获取到的图片信息。 |
X
xiaok 已提交
1368 1369 1370 1371 1372

**示例:**

```js
imageSourceApi.getImageInfo(0)
X
xu-rui-w 已提交
1373
    .then(imageInfo => {
X
xu-rui-w 已提交
1374
		console.log('Succeeded in obtaining the image information.');
X
xu-rui-w 已提交
1375
	}).catch(error => {
X
xu-rui-w 已提交
1376
		console.log('Failed to obtain the image information.');
X
xu-rui-w 已提交
1377
	})
X
xiaok 已提交
1378 1379
```

Z
zengyawen 已提交
1380
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1381

Z
zengyawen 已提交
1382
getImageProperty(key:string, options?: GetImagePropertyOptions): Promise\<string>
X
xiaok 已提交
1383

Z
zengyawen 已提交
1384
获取图片中给定索引处图像的指定属性键的值,用Promise形式返回结果。
X
xiaok 已提交
1385

X
xu-rui-w 已提交
1386
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1387 1388 1389

 **参数:**

1390
| 参数名  | 类型                                                 | 必填 | 说明                                 |
Z
zengyawen 已提交
1391 1392 1393
| ------- | ---------------------------------------------------- | ---- | ------------------------------------ |
| key     | string                                               | 是   | 图片属性名。                         |
| options | [GetImagePropertyOptions](#getimagepropertyoptions7) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xiaok 已提交
1394 1395 1396

**返回值:**

X
xu-rui-w 已提交
1397 1398
| 类型             | 说明                                                              |
| ---------------- | ----------------------------------------------------------------- |
Z
zengyawen 已提交
1399
| Promise\<string> | Promise实例,用于异步获取图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1400 1401 1402 1403

**示例:**

```js
1404
imageSourceApi.getImageProperty("BitsPerSample")
X
xu-rui-w 已提交
1405
    .then(data => {
X
xu-rui-w 已提交
1406
		console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1407
	})
X
xiaok 已提交
1408 1409
```

Z
zengyawen 已提交
1410
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1411

Z
zengyawen 已提交
1412
getImageProperty(key:string, callback: AsyncCallback\<string>): void
X
xiaok 已提交
1413

Z
zengyawen 已提交
1414
获取图片中给定索引处图像的指定属性键的值,用callback形式返回结果。
X
xiaok 已提交
1415

X
xu-rui-w 已提交
1416
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1417 1418 1419

 **参数:**

Z
zengyawen 已提交
1420 1421 1422 1423
| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| key      | string                 | 是   | 图片属性名。                                                 |
| callback | AsyncCallback\<string> | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1424 1425 1426 1427

**示例:**

```js
X
xu-rui-w 已提交
1428 1429
imageSourceApi.getImageProperty("BitsPerSample",(error,data) => { 
    if(error) {
X
xu-rui-w 已提交
1430
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1431
    } else {
X
xu-rui-w 已提交
1432
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1433 1434
    }
})
X
xiaok 已提交
1435 1436
```

Z
zengyawen 已提交
1437
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1438

Z
zengyawen 已提交
1439
getImageProperty(key:string, options: GetImagePropertyOptions, callback: AsyncCallback\<string>): void
X
xiaok 已提交
1440 1441 1442

获取图片指定属性键的值,callback形式返回结果。

X
xu-rui-w 已提交
1443
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1444 1445 1446

**参数:**

X
xu-rui-w 已提交
1447 1448 1449 1450 1451
| 参数名   | 类型                                                 | 必填 | 说明                                                          |
| -------- | ---------------------------------------------------- | ---- | ------------------------------------------------------------- |
| key      | string                                               | 是   | 图片属性名。                                                  |
| options  | [GetImagePropertyOptions](#getimagepropertyoptions7) | 是   | 图片属性,包括图片序号与默认属性值。                          |
| callback | AsyncCallback\<string>                               | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。|
X
xiaok 已提交
1452 1453 1454 1455

**示例:**

```js
F
fengzewu 已提交
1456
let property = { index: 0, defaultValue: '9999' }
X
xu-rui-w 已提交
1457
imageSourceApi.getImageProperty("BitsPerSample",property,(error,data) => { 
X
xu-rui-w 已提交
1458
    if(error) {
X
xu-rui-w 已提交
1459
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1460
    } else {
X
xu-rui-w 已提交
1461
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1462 1463
    }
})
X
xiaok 已提交
1464 1465
```

X
xu-rui-w 已提交
1466
### modifyImageProperty<sup>9+</sup>
X
xu-rui-w 已提交
1467

X
xu-rui-w 已提交
1468
modifyImageProperty(key: string, value: string): Promise\<void>
X
xu-rui-w 已提交
1469

X
xu-rui-w 已提交
1470
通过指定的键修改图片属性的值,使用Promise形式返回结果。
X
xu-rui-w 已提交
1471

X
xu-rui-w 已提交
1472
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482

**参数:**

| 参数名  | 类型   | 必填 | 说明         |
| ------- | ------ | ---- | ------------ |
| key     | string | 是   | 图片属性名。 |
| value   | string | 是   | 属性值。     |

**返回值:**

X
xu-rui-w 已提交
1483 1484 1485
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
1486 1487 1488 1489

**示例:**

```js
F
fengzewu 已提交
1490 1491 1492 1493
imageSourceApi.modifyImageProperty("ImageWidth", "120").then(() => {
    const w = imageSourceApi.getImageProperty("ImageWidth")
    console.info('w', w);
})
X
xu-rui-w 已提交
1494 1495
```

X
xu-rui-w 已提交
1496
### modifyImageProperty<sup>9+</sup>
X
xu-rui-w 已提交
1497

X
xu-rui-w 已提交
1498
modifyImageProperty(key: string, value: string, callback: AsyncCallback\<void>): void
X
xu-rui-w 已提交
1499

X
xu-rui-w 已提交
1500
通过指定的键修改图片属性的值,callback形式返回结果。
X
xu-rui-w 已提交
1501

X
xu-rui-w 已提交
1502
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1503 1504 1505 1506 1507 1508 1509

**参数:**

| 参数名   | 类型                | 必填 | 说明                           |
| -------- | ------------------- | ---- | ------------------------------ |
| key      | string              | 是   | 图片属性名。                   |
| value    | string              | 是   | 属性值。                       |
1510
| callback | AsyncCallback\<void> | 是   | 修改属性值,callback返回结果。 |
X
xu-rui-w 已提交
1511 1512 1513 1514

**示例:**

```js
X
xu-rui-w 已提交
1515
imageSourceApi.modifyImageProperty("ImageWidth", "120",() => {})
X
xu-rui-w 已提交
1516 1517
```

X
xu-rui-w 已提交
1518
### updateData<sup>9+</sup>
X
xu-rui-w 已提交
1519

X
xu-rui-w 已提交
1520
updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number): Promise\<void>
X
xu-rui-w 已提交
1521

X
xu-rui-w 已提交
1522
更新增量数据,使用Promise形式返回结果。
X
xu-rui-w 已提交
1523

X
xu-rui-w 已提交
1524
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1525 1526 1527

**参数:**

1528
| 参数名     | 类型        | 必填 | 说明         |
X
xu-rui-w 已提交
1529 1530 1531
| ---------- | ----------- | ---- | ------------ |
| buf        | ArrayBuffer | 是   | 增量数据。   |
| isFinished | boolean     | 是   | 是否更新完。 |
1532 1533
| value      | number      | 是   | 偏移量。     |
| length     | number      | 是   | 数组长。     |
X
xu-rui-w 已提交
1534 1535 1536

**返回值:**

X
xu-rui-w 已提交
1537 1538 1539
| 类型           | 说明                       |
| -------------- | -------------------------- |
| Promise\<void> | Promise实例,异步返回结果。|
X
xu-rui-w 已提交
1540 1541 1542 1543 1544

**示例:**

```js
const array = new ArrayBuffer(100);
F
fengzewu 已提交
1545 1546 1547
imageSourceApi.updateData(array, false, 0, 10).then(data => {
    console.info('Succeeded in updating data.');
})
X
xu-rui-w 已提交
1548 1549 1550
```


X
xu-rui-w 已提交
1551
### updateData<sup>9+</sup>
X
xu-rui-w 已提交
1552

X
xu-rui-w 已提交
1553
updateData(buf: ArrayBuffer, isFinished: boolean, value: number, length: number, callback: AsyncCallback\<void>): void
X
xu-rui-w 已提交
1554

X
xu-rui-w 已提交
1555
更新增量数据,callback形式返回结果。
X
xu-rui-w 已提交
1556

X
xu-rui-w 已提交
1557
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1558 1559 1560

**参数:**

1561
| 参数名     | 类型                | 必填 | 说明                 |
X
xu-rui-w 已提交
1562 1563 1564
| ---------- | ------------------- | ---- | -------------------- |
| buf        | ArrayBuffer         | 是   | 增量数据。           |
| isFinished | boolean             | 是   | 是否更新完。         |
1565 1566
| value      | number              | 是   | 偏移量。             |
| length     | number              | 是   | 数组长。             |
1567
| callback   | AsyncCallback\<void> | 是   | 回调表示成功或失败。 |
X
xu-rui-w 已提交
1568 1569 1570 1571 1572

**示例:**

```js
const array = new ArrayBuffer(100);
F
fengzewu 已提交
1573 1574 1575 1576 1577
imageSourceApi.updateData(array, false, 0, 10,(error,data )=> {
    if(data !== undefined){
        console.info('Succeeded in updating data.');     
    }
})
X
xu-rui-w 已提交
1578 1579
```

Z
zengyawen 已提交
1580
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1581

Z
zengyawen 已提交
1582
createPixelMap(options?: DecodingOptions): Promise\<PixelMap>
X
xiaok 已提交
1583

1584
通过图片解码参数创建PixelMap对象。
X
xiaok 已提交
1585

X
xu-rui-w 已提交
1586
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1587 1588 1589

**参数:**

1590
| 参数名  | 类型                                 | 必填 | 说明       |
Z
zengyawen 已提交
1591 1592 1593 1594 1595 1596 1597 1598
| ------- | ------------------------------------ | ---- | ---------- |
| options | [DecodingOptions](#decodingoptions7) | 否   | 解码参数。 |

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
| Promise\<[PixelMap](#pixelmap7)> | 异步返回Promise对象。 |
X
xiaok 已提交
1599 1600 1601 1602

**示例:**

```js
X
xu-rui-w 已提交
1603
imageSourceApi.createPixelMap().then(pixelmap => {
X
xu-rui-w 已提交
1604
    console.log('Succeeded in creating pixelmap object through image decoding parameters.');
X
xu-rui-w 已提交
1605
}).catch(error => {
X
xu-rui-w 已提交
1606
    console.log('Failed to create pixelmap object through image decoding parameters.');
X
xu-rui-w 已提交
1607
})
X
xiaok 已提交
1608 1609
```

Z
zengyawen 已提交
1610
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1611

Z
zengyawen 已提交
1612
createPixelMap(callback: AsyncCallback\<PixelMap>): void
X
xiaok 已提交
1613

1614
通过默认参数创建PixelMap对象,使用callback形式返回结果。
X
xiaok 已提交
1615

X
xu-rui-w 已提交
1616
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1617 1618 1619

**参数:**

1620
| 参数名     | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1621 1622
| -------- | ------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1623 1624 1625 1626

**示例:**

```js
X
xu-rui-w 已提交
1627
imageSourceApi.createPixelMap((err, pixelmap) => {
R
renhongwei 已提交
1628 1629
    console.info('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1630 1631
```

Z
zengyawen 已提交
1632
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1633

Z
zengyawen 已提交
1634
createPixelMap(options: DecodingOptions, callback: AsyncCallback\<PixelMap>): void
X
xiaok 已提交
1635

Z
zengyawen 已提交
1636
通过图片解码参数创建PixelMap对象。
X
xiaok 已提交
1637

X
xu-rui-w 已提交
1638
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1639 1640 1641

**参数:**

1642
| 参数名   | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1643
| -------- | ------------------------------------- | ---- | -------------------------- |
1644
| options  | [DecodingOptions](#decodingoptions7)  | 是   | 解码参数。                 |
Z
zengyawen 已提交
1645
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1646 1647 1648 1649

**示例:**

```js
F
fengzewu 已提交
1650 1651 1652 1653 1654 1655 1656 1657 1658
let decodingOptions = {
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 1, height: 2 },
    rotate: 10,
    desiredPixelFormat: 3,
    desiredRegion: { size: { height: 1, width: 2 }, x: 0, y: 0 },
    index: 0
};
X
xu-rui-w 已提交
1659
imageSourceApi.createPixelMap(decodingOptions, pixelmap => { 
X
xu-rui-w 已提交
1660 1661
    console.log('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1662 1663
```

R
renhongwei 已提交
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
### createPixelMapList<sup>10+</sup>

createPixelMapList(options?: DecodingOptions): Promise<Array\<PixelMap>>;

通过图片解码参数创建PixelMap数组。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名   | 类型                                  | 必填 | 说明                       |
| -------- | ------------------------------------- | ---- | -------------------------- |
| options  | [DecodingOptions](#decodingoptions7)  | 否   | 解码参数。                 |

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
| Promise<Array<[PixelMap](#pixelmap7)>> | 异步返回PixeMap数组。 |

**示例:**

```js
let decodeOpts = {
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1692
    desiredPixelFormat: 3,
R
renhongwei 已提交
1693 1694
    index: 0,
};
1695
let pixelmaplist = imageSourceApi.createPixelMapList(decodeOpts);
R
renhongwei 已提交
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
```

### createPixelMapList<sup>10+</sup>

createPixelMapList(callback: AsyncCallback<Array\<PixelMap>>): void

通过默认参数创建PixelMap数组,使用callback形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名     | 类型                                  | 必填 | 说明                       |
| -------- | ------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<Array<[PixelMap](#pixelmap7)>> | 是   | 通过回调返回PixelMap数组。 |

**示例:**

```js
imageSourceApi.createPixelMap( pixelmaplist => {
    console.info('Succeeded in creating pixelmaplist object.');
})
```

### createPixelMapList<sup>10+</sup>

createPixelMapList(options: DecodingOptions, callback: AsyncCallback<Array\<PixelMap>>): void;

通过图片解码参数创建PixelMap数组,使用callback形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名   | 类型                 | 必填 | 说明                               |
| -------- | -------------------- | ---- | ---------------------------------- |
| options | [DecodingOptions](#decodingoptions7) | 是 | 解码参数。 |
| callback | AsyncCallback<Array<[PixelMap](#pixelmap7)>> | 是   | 通过回调返回PixelMap数组。 |

**示例:**

```js
let decodeOpts = {
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1743
    desiredPixelFormat: 3,
R
renhongwei 已提交
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
    index: 0,
};
imageSourceApi.createPixelMap(decodeOpts, pixelmaplist => { 
    console.log('Succeeded in creating pixelmaplist object.');
})
```

### getDelayTime<sup>10+</sup>

getDelayTime(callback: AsyncCallback<Array\<number>>): void;

获取图像延迟时间数组,使用callback形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名   | 类型                 | 必填 | 说明                               |
| -------- | -------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback<Array\<number>> | 是   | 通过回调返回延迟时间数组。 |

**示例:**

```js
imageSourceApi.getDelayTime( delayTimes => {
    console.log('Succeeded in getting delay time.');
});
```

### getDelayTime<sup>10+</sup>

getDelayTime(): Promise<Array\<number>>;

获取图像延迟时间数组,使用Promise形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**返回值:**

| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise<Array\<number>> | Promise实例,异步返回延迟时间数组。 |

**示例:**

```js
1790
let delayTimes = imageSourceApi.getDelayTime();
R
renhongwei 已提交
1791 1792 1793 1794
```

### getFrameCount<sup>10+</sup>

Z
zengyawen 已提交
1795
getFrameCount(callback: AsyncCallback\<number>): void;
R
renhongwei 已提交
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831

获取图像帧数,使用callback形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**参数:**

| 参数名   | 类型                 | 必填 | 说明                               |
| -------- | -------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<number> | 是   | 通过回调返回图像帧数。 |

**示例:**

```js
imageSourceApi.getFrameCount( frameCount => {
    console.log('Succeeded in getting frame count.');
});
```

### getFrameCount<sup>10+</sup>

getFrameCount(): Promise\<number>;

获取图像帧数,使用Promise形式返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageSource

**返回值:**

| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<number> | Promise实例,异步返回图像帧数。 |

**示例:**

```js
1832
let frameCount = imageSourceApi.getFrameCount();
R
renhongwei 已提交
1833 1834
```

Z
zengyawen 已提交
1835
### release
X
xiaok 已提交
1836

Z
zengyawen 已提交
1837
release(callback: AsyncCallback\<void>): void
X
xiaok 已提交
1838

Z
zengyawen 已提交
1839
释放图片源实例,使用callback形式返回结果。
X
xiaok 已提交
1840

X
xu-rui-w 已提交
1841
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1842 1843 1844

**参数:**

1845
| 参数名   | 类型                 | 必填 | 说明                               |
Z
zengyawen 已提交
1846 1847
| -------- | -------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<void> | 是   | 资源释放回调,失败时返回错误信息。 |
X
xiaok 已提交
1848 1849 1850 1851

**示例:**

```js
X
xu-rui-w 已提交
1852 1853 1854
imageSourceApi.release(() => { 
    console.log('release succeeded.');
})
X
xiaok 已提交
1855 1856
```

Z
zengyawen 已提交
1857
### release
X
xiaok 已提交
1858

Z
zengyawen 已提交
1859
release(): Promise\<void>
X
xiaok 已提交
1860

Z
zengyawen 已提交
1861
释放图片源实例,使用Promise形式返回结果。
X
xiaok 已提交
1862

X
xu-rui-w 已提交
1863
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1864

Z
zengyawen 已提交
1865 1866 1867 1868 1869 1870
**返回值:**

| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |

X
xiaok 已提交
1871 1872 1873
**示例:**

```js
X
xu-rui-w 已提交
1874
imageSourceApi.release().then(()=>{
X
xu-rui-w 已提交
1875
    console.log('Succeeded in releasing the image source instance.');
X
xu-rui-w 已提交
1876
}).catch(error => {
X
xu-rui-w 已提交
1877
    console.log('Failed to release the image source instance.');
X
xu-rui-w 已提交
1878
})
X
xiaok 已提交
1879 1880
```

Z
zengyawen 已提交
1881
## image.createImagePacker
X
xiaok 已提交
1882 1883 1884

createImagePacker(): ImagePacker

Z
zengyawen 已提交
1885
创建ImagePacker实例。
X
xiaok 已提交
1886

X
xu-rui-w 已提交
1887
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
1888 1889 1890

**返回值:**

Z
zengyawen 已提交
1891 1892 1893
| 类型                        | 说明                  |
| --------------------------- | --------------------- |
| [ImagePacker](#imagepacker) | 返回ImagePacker实例。 |
X
xiaok 已提交
1894 1895 1896 1897 1898 1899 1900

**示例:**

```js
const imagePackerApi = image.createImagePacker();
```

Z
zengyawen 已提交
1901 1902
## ImagePacker

X
xu-rui-w 已提交
1903
图片打包器类,用于图片压缩和打包。在调用ImagePacker的方法前,需要先通过createImagePacker构建一个ImagePacker实例,当前支持格式有:jpeg webp。
X
xiaok 已提交
1904

Z
zengyawen 已提交
1905 1906
### 属性

X
xu-rui-w 已提交
1907
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
Z
zhang-xiaobo1997 已提交
1908 1909 1910 1911

| 名称             | 类型           | 可读 | 可写 | 说明                       |
| ---------------- | -------------- | ---- | ---- | -------------------------- |
| supportedFormats | Array\<string> | 是   | 否   | 图片打包支持的格式,jpeg。 |
Z
zengyawen 已提交
1912 1913 1914

### packing

1915
packing(source: ImageSource, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
X
xiaok 已提交
1916 1917 1918

图片压缩或重新打包,使用callback形式返回结果。

X
xu-rui-w 已提交
1919
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
1920 1921 1922

**参数:**

Z
zengyawen 已提交
1923 1924 1925
| 参数名   | 类型                               | 必填 | 说明                               |
| -------- | ---------------------------------- | ---- | ---------------------------------- |
| source   | [ImageSource](#imagesource)        | 是   | 打包的图片源。                     |
X
xu-rui-w 已提交
1926
| option   | [PackingOption](#packingoption)    | 是   | 设置打包参数。                      |
1927
| callback | AsyncCallback\<ArrayBuffer>        | 是   | 获取图片打包回调,返回打包后数据。 |
X
xiaok 已提交
1928 1929 1930 1931

**示例:**

```js
F
fengzewu 已提交
1932
const imageSourceApi = image.createImageSource(0);
X
xu-rui-w 已提交
1933
let packOpts = { format:"image/jpeg", quality:98 };
X
xu-rui-w 已提交
1934
imagePackerApi.packing(imageSourceApi, packOpts, data => {})
X
xiaok 已提交
1935 1936
```

Z
zengyawen 已提交
1937
### packing
X
xiaok 已提交
1938

1939
packing(source: ImageSource, option: PackingOption): Promise\<ArrayBuffer>
X
xiaok 已提交
1940

Z
zengyawen 已提交
1941
图片压缩或重新打包,使用Promise形式返回结果。
X
xiaok 已提交
1942

X
xu-rui-w 已提交
1943
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
1944 1945 1946 1947 1948

**参数:**

| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
1949 1950
| source | [ImageSource](#imagesource)     | 是   | 打包的图片源。 |
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。 |
X
xiaok 已提交
1951 1952 1953

**返回值:**

Z
zengyawen 已提交
1954
| 类型                         | 说明                                          |
X
xu-rui-w 已提交
1955 1956
| ---------------------------- | --------------------------------------------- |
| Promise\<ArrayBuffer>        | Promise实例,用于异步获取压缩或打包后的数据。 |
X
xiaok 已提交
1957 1958 1959 1960

**示例:**

```js
F
fengzewu 已提交
1961
const imageSourceApi = image.createImageSource(0);
X
xu-rui-w 已提交
1962
let packOpts = { format:"image/jpeg", quality:98 }
X
xu-rui-w 已提交
1963
imagePackerApi.packing(imageSourceApi, packOpts)
X
xu-rui-w 已提交
1964 1965 1966 1967 1968
    .then( data => {
        console.log('packing succeeded.');
	}).catch(error => {
	    console.log('packing failed.');
	})
1969 1970
```

1971
### packing<sup>8+</sup>
1972

Z
zengyawen 已提交
1973
packing(source: PixelMap, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
1974 1975 1976

图片压缩或重新打包,使用callback形式返回结果。

X
xu-rui-w 已提交
1977
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
1978 1979 1980 1981 1982 1983 1984

**参数:**

| 参数名   | 类型                            | 必填 | 说明                               |
| -------- | ------------------------------- | ---- | ---------------------------------- |
| source   | [PixelMap](#pixelmap)           | 是   | 打包的PixelMap资源。               |
| option   | [PackingOption](#packingoption) | 是   | 设置打包参数。                     |
Z
zengyawen 已提交
1985
| callback | AsyncCallback\<ArrayBuffer>     | 是   | 获取图片打包回调,返回打包后数据。 |
1986 1987 1988 1989

**示例:**

```js
X
xu-rui-w 已提交
1990
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
F
fengzewu 已提交
1991 1992 1993 1994
let bufferArr = new Uint8Array(color);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts).then((pixelmap) => {
    let packOpts = { format:"image/jpeg", quality:98 }
冯泽悟 已提交
1995
    imagePackerApi.packing(pixelmap, packOpts, data => { 
F
fengzewu 已提交
1996 1997
        console.log('Succeeded in packing the image.');
    })
X
xu-rui-w 已提交
1998
})
1999 2000
```

2001
### packing<sup>8+</sup>
2002

2003
packing(source: PixelMap, option: PackingOption): Promise\<ArrayBuffer>
2004 2005 2006

图片压缩或重新打包,使用Promise形式返回结果。

X
xu-rui-w 已提交
2007
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
2008 2009 2010

**参数:**

Z
zhang-xiaobo1997 已提交
2011 2012
| 参数名 | 类型                            | 必填 | 说明               |
| ------ | ------------------------------- | ---- | ------------------ |
2013
| source | [PixelMap](#pixelmap)           | 是   | 打包的PixelMap源。 |
Z
zhang-xiaobo1997 已提交
2014
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。     |
2015 2016 2017

**返回值:**

X
xu-rui-w 已提交
2018 2019 2020
| 类型                  | 说明                                         |
| --------------------- | -------------------------------------------- |
| Promise\<ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。|
2021 2022 2023 2024

**示例:**

```js
X
xu-rui-w 已提交
2025
const color = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
F
fengzewu 已提交
2026 2027 2028 2029
let bufferArr = new Uint8Array(color);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts).then((pixelmap) => {
    let packOpts = { format:"image/jpeg", quality:98 }
冯泽悟 已提交
2030
    imagePackerApi.packing(pixelmap, packOpts)
F
fengzewu 已提交
2031
        .then( data => {
F
fengzewu 已提交
2032 2033 2034 2035
            console.log('Succeeded in packing the image.');
        }).catch(error => {
            console.log('Failed to pack the image..');
        })
F
fengzewu 已提交
2036
})
X
xiaok 已提交
2037 2038
```

Z
zengyawen 已提交
2039
### release
X
xiaok 已提交
2040

Z
zengyawen 已提交
2041
release(callback: AsyncCallback\<void>): void
X
xiaok 已提交
2042

Z
zengyawen 已提交
2043
释放图片打包实例,使用callback形式返回结果。
X
xiaok 已提交
2044

X
xu-rui-w 已提交
2045
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2046 2047 2048

**参数:**

Z
zengyawen 已提交
2049 2050 2051
| 参数名   | 类型                 | 必填 | 说明                           |
| -------- | -------------------- | ---- | ------------------------------ |
| callback | AsyncCallback\<void> | 是   | 释放回调,失败时返回错误信息。 |
X
xiaok 已提交
2052 2053 2054 2055

**示例:**

```js
X
xu-rui-w 已提交
2056
imagePackerApi.release(()=>{ 
X
xu-rui-w 已提交
2057
    console.log('Succeeded in releasing image packaging.');
X
xu-rui-w 已提交
2058
})
X
xiaok 已提交
2059 2060
```

Z
zengyawen 已提交
2061
### release
X
xiaok 已提交
2062

Z
zengyawen 已提交
2063
release(): Promise\<void>
X
xiaok 已提交
2064

Z
zengyawen 已提交
2065
释放图片打包实例,使用Promise形式返回释放结果。
X
xiaok 已提交
2066

X
xu-rui-w 已提交
2067
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2068

Z
zengyawen 已提交
2069 2070
**返回值:**

X
xu-rui-w 已提交
2071 2072 2073
| 类型           | 说明                                                   |
| -------------- | ------------------------------------------------------ |
| Promise\<void> | Promise实例,用于异步获取释放结果,失败时返回错误信息。|
Z
zengyawen 已提交
2074

X
xiaok 已提交
2075 2076 2077
**示例:**

```js
X
xu-rui-w 已提交
2078
imagePackerApi.release().then(()=>{
X
xu-rui-w 已提交
2079
    console.log('Succeeded in releasing image packaging.');
X
xu-rui-w 已提交
2080
}).catch((error)=>{ 
X
xu-rui-w 已提交
2081
    console.log('Failed to release image packaging.'); 
X
xu-rui-w 已提交
2082
}) 
X
xiaok 已提交
2083 2084
```

Z
zhang-xiaobo1997 已提交
2085 2086
## image.createImageReceiver<sup>9+</sup>

Z
zengyawen 已提交
2087
createImageReceiver(width: number, height: number, format: number, capacity: number): ImageReceiver
Z
zhang-xiaobo1997 已提交
2088

Z
zengyawen 已提交
2089
通过宽、高、图片格式、容量创建ImageReceiver实例。
Z
zhang-xiaobo1997 已提交
2090

Z
zengyawen 已提交
2091
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2092 2093 2094

**参数:**

2095
| 参数名   | 类型   | 必填 | 说明                   |
Z
zengyawen 已提交
2096 2097 2098
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
Z
zhangqiang183 已提交
2099
| format   | number | 是   | 图像格式,取值为[ImageFormat](#imageformat9)常量(目前仅支持 ImageFormat:JPEG 和 4)。  |
Z
zengyawen 已提交
2100
| capacity | number | 是   | 同时访问的最大图像数。 |
Z
zhang-xiaobo1997 已提交
2101 2102 2103

**返回值:**

Z
zengyawen 已提交
2104 2105 2106
| 类型                             | 说明                                    |
| -------------------------------- | --------------------------------------- |
| [ImageReceiver](#imagereceiver9) | 如果操作成功,则返回ImageReceiver实例。 |
Z
zhang-xiaobo1997 已提交
2107 2108 2109 2110

**示例:**

```js
X
xu-rui-w 已提交
2111
var receiver = image.createImageReceiver(8192, 8, 2000, 8);
Z
zhang-xiaobo1997 已提交
2112
```
Z
zhang-xiaobo1997 已提交
2113

Z
zhang-xiaobo1997 已提交
2114 2115
## ImageReceiver<sup>9+</sup>

Z
zengyawen 已提交
2116 2117 2118
图像接收类,用于获取组件surface id,接收最新的图片和读取下一张图片,以及释放ImageReceiver实例。

在调用以下方法前需要先创建ImageReceiver实例。
Z
zhang-xiaobo1997 已提交
2119 2120 2121

### 属性

X
xu-rui-w 已提交
2122
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2123

X
xu-rui-w 已提交
2124 2125 2126 2127 2128
| 名称     | 类型                         | 可读 | 可写 | 说明               |
| -------- | ---------------------------- | ---- | ---- | ------------------ |
| size     | [Size](#size)                | 是   | 否   | 图片大小。         |
| capacity | number                       | 是   | 否   | 同时访问的图像数。 |
| format   | [ImageFormat](#imageformat9) | 是   | 否   | 图像格式。         |
Z
zhang-xiaobo1997 已提交
2129

Z
zhang-xiaobo1997 已提交
2130
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2131

Z
zhang-xiaobo1997 已提交
2132
getReceivingSurfaceId(callback: AsyncCallback\<string>): void
Z
zhang-xiaobo1997 已提交
2133

Z
zengyawen 已提交
2134
用于获取一个surface id供Camera或其他组件使用。使用callback返回结果。
Z
zhang-xiaobo1997 已提交
2135

Z
zengyawen 已提交
2136
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2137 2138 2139

**参数:**

2140
| 参数名   | 类型                   | 必填 | 说明                       |
Z
zengyawen 已提交
2141 2142
| -------- | ---------------------- | ---- | -------------------------- |
| callback | AsyncCallback\<string> | 是   | 回调函数,返回surface id。 |
Z
zhang-xiaobo1997 已提交
2143 2144 2145 2146

**示例:**

```js
X
xu-rui-w 已提交
2147
receiver.getReceivingSurfaceId((err, id) => { 
X
xu-rui-w 已提交
2148 2149 2150 2151 2152 2153
    if(err) {
        console.log('getReceivingSurfaceId failed.');
    } else {
        console.log('getReceivingSurfaceId succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2154 2155
```

Z
zhang-xiaobo1997 已提交
2156
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2157

Z
zhang-xiaobo1997 已提交
2158
getReceivingSurfaceId(): Promise\<string>
Z
zhang-xiaobo1997 已提交
2159

Z
zengyawen 已提交
2160
用于获取一个surface id供Camera或其他组件使用。使用promise返回结果。
Z
zhang-xiaobo1997 已提交
2161

Z
zengyawen 已提交
2162
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2163 2164 2165

**返回值:**

Z
zhang-xiaobo1997 已提交
2166 2167 2168
| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<string> | 异步返回surface id。 |
Z
zhang-xiaobo1997 已提交
2169 2170 2171 2172 2173

**示例:**

```js
receiver.getReceivingSurfaceId().then( id => { 
X
xu-rui-w 已提交
2174 2175 2176 2177
    console.log('getReceivingSurfaceId succeeded.');
}).catch(error => {
    console.log('getReceivingSurfaceId failed.');
})
Z
zhang-xiaobo1997 已提交
2178 2179
```

Z
zhang-xiaobo1997 已提交
2180
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2181

Z
zhang-xiaobo1997 已提交
2182
readLatestImage(callback: AsyncCallback\<Image>): void
Z
zhang-xiaobo1997 已提交
2183

Z
zengyawen 已提交
2184
从ImageReceiver读取最新的图片,并使用callback返回结果。
Z
zhang-xiaobo1997 已提交
2185

Z
zengyawen 已提交
2186
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2187 2188 2189

**参数:**

2190
| 参数名     | 类型                            | 必填 | 说明                     |
Z
zengyawen 已提交
2191 2192
| -------- | ------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回最新图像。 |
Z
zhang-xiaobo1997 已提交
2193 2194 2195 2196

**示例:**

```js
X
xu-rui-w 已提交
2197 2198 2199 2200 2201 2202 2203
receiver.readLatestImage((err, img) => { 
    if(err) {
        console.log('readLatestImage failed.');
    } else {
        console.log('readLatestImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2204 2205
```

Z
zhang-xiaobo1997 已提交
2206
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2207

Z
zhang-xiaobo1997 已提交
2208
readLatestImage(): Promise\<Image>
Z
zhang-xiaobo1997 已提交
2209

Z
zengyawen 已提交
2210
从ImageReceiver读取最新的图片,并使用promise返回结果。
Z
zhang-xiaobo1997 已提交
2211

Z
zengyawen 已提交
2212
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2213 2214 2215 2216 2217

**返回值:**

| 类型                      | 说明               |
| ------------------------- | ------------------ |
2218
| Promise<[Image](#image9)> | 异步返回最新图片。 |
Z
zhang-xiaobo1997 已提交
2219 2220 2221 2222

**示例:**

```js
X
xu-rui-w 已提交
2223 2224 2225 2226 2227
receiver.readLatestImage().then(img => {
    console.log('readLatestImage succeeded.');
}).catch(error => {
    console.log('readLatestImage failed.');
})
Z
zhang-xiaobo1997 已提交
2228 2229
```

Z
zhang-xiaobo1997 已提交
2230
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2231

Z
zhang-xiaobo1997 已提交
2232
readNextImage(callback: AsyncCallback\<Image>): void
Z
zhang-xiaobo1997 已提交
2233

Z
zengyawen 已提交
2234
从ImageReceiver读取下一张图片,并使用callback返回结果。
Z
zhang-xiaobo1997 已提交
2235

Z
zengyawen 已提交
2236
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2237 2238 2239

**参数:**

2240
| 参数名   | 类型                            | 必填 | 说明                       |
Z
zengyawen 已提交
2241 2242
| -------- | ------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2243 2244 2245 2246

**示例:**

```js
X
xu-rui-w 已提交
2247 2248 2249 2250 2251 2252 2253
receiver.readNextImage((err, img) => { 
    if(err) {
        console.log('readNextImage failed.');
    } else {
        console.log('readNextImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2254 2255
```

Z
zhang-xiaobo1997 已提交
2256
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2257

Z
zhang-xiaobo1997 已提交
2258
readNextImage(): Promise\<Image>
Z
zhang-xiaobo1997 已提交
2259

Z
zengyawen 已提交
2260
从ImageReceiver读取下一张图片,并使用promise返回结果。
Z
zhang-xiaobo1997 已提交
2261

Z
zengyawen 已提交
2262
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2263 2264 2265 2266 2267

**返回值:**

| 类型                      | 说明                 |
| ------------------------- | -------------------- |
Z
zengyawen 已提交
2268
| Promise<[Image](#image9)> | 异步返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2269 2270 2271 2272

**示例:**

```js
X
xu-rui-w 已提交
2273 2274 2275 2276 2277
receiver.readNextImage().then(img => {
    console.log('readNextImage succeeded.');
}).catch(error => {
    console.log('readNextImage failed.');
})
Z
zhang-xiaobo1997 已提交
2278 2279
```

X
xu-rui-w 已提交
2280
### on<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2281

Z
zhang-xiaobo1997 已提交
2282
on(type: 'imageArrival', callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2283 2284 2285

接收图片时注册回调。

Z
zengyawen 已提交
2286
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2287 2288 2289

**参数:**

2290
| 参数名   | 类型                 | 必填 | 说明                                                   |
Z
zhang-xiaobo1997 已提交
2291
| -------- | -------------------- | ---- | ------------------------------------------------------ |
Z
zengyawen 已提交
2292
| type     | string               | 是   | 注册事件的类型,固定为'imageArrival',接收图片时触发。 |
Z
zhang-xiaobo1997 已提交
2293
| callback | AsyncCallback\<void> | 是   | 注册的事件回调。                                       |
Z
zhang-xiaobo1997 已提交
2294 2295 2296 2297

**示例:**

```js
X
xu-rui-w 已提交
2298
receiver.on('imageArrival', () => {})
Z
zhang-xiaobo1997 已提交
2299 2300
```

Z
zhang-xiaobo1997 已提交
2301
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2302

Z
zengyawen 已提交
2303
release(callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2304 2305 2306

释放ImageReceiver实例并使用回调返回结果。

Z
zengyawen 已提交
2307
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2308 2309 2310

**参数:**

2311
| 参数名   | 类型                 | 必填 | 说明                     |
Z
zengyawen 已提交
2312 2313
| -------- | -------------------- | ---- | ------------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数,返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2314 2315 2316 2317

**示例:**

```js
X
xu-rui-w 已提交
2318
receiver.release(() => {})
Z
zhang-xiaobo1997 已提交
2319 2320
```

Z
zhang-xiaobo1997 已提交
2321
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2322

Z
zhang-xiaobo1997 已提交
2323
release(): Promise\<void>
Z
zhang-xiaobo1997 已提交
2324 2325 2326

释放ImageReceiver实例并使用promise返回结果。

Z
zengyawen 已提交
2327
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2328 2329 2330

**返回值:**

Z
zengyawen 已提交
2331 2332 2333
| 类型           | 说明               |
| -------------- | ------------------ |
| Promise\<void> | 异步返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2334 2335 2336 2337

**示例:**

```js
X
xu-rui-w 已提交
2338 2339 2340 2341 2342
receiver.release().then(() => {
    console.log('release succeeded.');
}).catch(error => {
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2343 2344
```

R
renhongwei 已提交
2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
## image.createImageCreator<sup>9+</sup>

createImageCreator(width: number, height: number, format: number, capacity: number): ImageCreator

通过宽、高、图片格式、容量创建ImageCreator实例。

**系统能力:** SystemCapability.Multimedia.Image.ImageCreator

**参数:**

2355
| 参数名   | 类型   | 必填 | 说明                   |
R
renhongwei 已提交
2356 2357 2358
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
X
xu-rui-w 已提交
2359
| format   | number | 是   | 图像格式,如YCBCR_422_SP,JPEG。             |
R
renhongwei 已提交
2360 2361 2362 2363 2364 2365
| capacity | number | 是   | 同时访问的最大图像数。 |

**返回值:**

| 类型                           | 说明                                    |
| ------------------------------ | --------------------------------------- |
X
xu-rui-w 已提交
2366
| [ImageCreator](#imagecreator9) | 如果操作成功,则返回ImageCreator实例。 |    
R
renhongwei 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375 2376

**示例:**

```js
var creator = image.createImageCreator(8192, 8, 4, 8);
```

## ImageCreator<sup>9+</sup>

图像创建模块,用于请求图像原生数据区域,并开放给应用编译原生图像数据的能力。
2377
在调用以下方法前需要先创建ImageCreator实例,ImageCreator不支持多线程。
R
renhongwei 已提交
2378 2379 2380

### 属性

X
xu-rui-w 已提交
2381
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391

| 名称     | 类型                         | 可读 | 可写 | 说明               |
| -------- | ---------------------------- | ---- | ---- | ------------------ |
| capacity | number                       | 是   | 否   | 同时访问的图像数。 |
| format   | [ImageFormat](#imageformat9) | 是   | 否   | 图像格式。         |

### dequeueImage<sup>9+</sup>

dequeueImage(callback: AsyncCallback\<Image>): void

X
xu-rui-w 已提交
2392
从空闲队列中获取buffer图片,用于绘制UI内容,并使用callback返回结果。
R
renhongwei 已提交
2393

X
xu-rui-w 已提交
2394
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2395 2396 2397

**参数:**

2398
| 参数名        | 类型                                    | 必填 | 说明                 |
R
renhongwei 已提交
2399 2400 2401 2402 2403 2404
| ------------- | ---------------------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<Image>                   | 是   | 回调函数,返回最新图片。 |

**示例:**

```js
X
xu-rui-w 已提交
2405 2406
creator.dequeueImage((err, img) => {
    if (err) {
2407
        console.info('dequeueImage failded.');
X
xu-rui-w 已提交
2408
    }
2409
    console.info('dequeueImage succeeded.');
X
xu-rui-w 已提交
2410
});
R
renhongwei 已提交
2411 2412 2413 2414 2415 2416
```

### dequeueImage<sup>9+</sup>

dequeueImage(): Promise\<Image>

X
xu-rui-w 已提交
2417
从空闲队列中获取buffer图片,用于绘制UI内容,并使用promise返回结果。
R
renhongwei 已提交
2418

X
xu-rui-w 已提交
2419
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429

**返回值:**

| 类型             | 说明           |
| --------------- | ------------- |
| Promise\<Image> | 返回绘制的图像。 |

**示例:**

```js
X
xu-rui-w 已提交
2430 2431 2432 2433 2434
creator.dequeueImage().then(img => {
    console.info('dequeueImage succeeded.');
}).catch(error => {
    console.log('dequeueImage failed: ' + error);
})
R
renhongwei 已提交
2435 2436
```

X
xu-rui-w 已提交
2437
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2438 2439 2440

queueImage(interface: Image, callback: AsyncCallback\<void>): void

X
xu-rui-w 已提交
2441
将绘制好的图片放入Dirty队列,并使用callback返回结果。
R
renhongwei 已提交
2442

X
xu-rui-w 已提交
2443
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2444 2445 2446

**参数:**

2447
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2448 2449 2450 2451 2452 2453 2454
| ------------- | -------------------------| ---- | -------------------- |
| interface     | Image                    | 是   | 绘制好的buffer图像。 |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
2455 2456
creator.dequeueImage().then(img => {
    //绘制图片
2457 2458 2459 2460 2461 2462 2463 2464 2465
    img.getComponent(4).then(component => {
        var bufferArr = new Uint8Array(component.byteBuffer);
        for (var i = 0; i < bufferArr.length; i += 4) {
            bufferArr[i] = 0; //B
            bufferArr[i + 1] = 0; //G
            bufferArr[i + 2] = 255; //R
            bufferArr[i + 3] = 255; //A
        }
    })
2466 2467 2468 2469 2470 2471
    creator.queueImage(img, (err) => {
        if (err) {
            console.info('queueImage failed: ' + err);
        }
        console.info('queueImage succeeded');
    })
2472 2473
})

R
renhongwei 已提交
2474 2475
```

X
xu-rui-w 已提交
2476
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2477 2478 2479

queueImage(interface: Image): Promise\<void>

X
xu-rui-w 已提交
2480
将绘制好的图片放入Dirty队列,并使用promise返回结果。
R
renhongwei 已提交
2481

X
xu-rui-w 已提交
2482
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2483 2484 2485

**参数:**

2486
| 参数名          | 类型     | 必填 | 说明                |
R
renhongwei 已提交
2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498
| ------------- | --------| ---- | ------------------- |
| interface     | Image   | 是   | 绘制好的buffer图像。 |

**返回值:**

| 类型            | 说明           |
| -------------- | ------------- |
| Promise\<void> | 获取回调,失败时返回错误信息。 |

**示例:**

```js
2499 2500
creator.dequeueImage().then(img => {
    //绘制图片
2501 2502 2503 2504 2505 2506 2507 2508 2509
    img.getComponent(4).then(component => {
        var bufferArr = new Uint8Array(component.byteBuffer);
        for (var i = 0; i < bufferArr.length; i += 4) {
            bufferArr[i] = 0; //B
            bufferArr[i + 1] = 0; //G
            bufferArr[i + 2] = 255; //R
            bufferArr[i + 3] = 255; //A
        }
    })
2510 2511 2512 2513 2514
    creator.queueImage(img).then(() => {
        console.info('queueImage succeeded.');
    }).catch(error => {
        console.info('queueImage failed: ' + error);
    })
X
xu-rui-w 已提交
2515
})
2516

R
renhongwei 已提交
2517 2518 2519 2520 2521 2522 2523 2524
```

### on<sup>9+</sup>

on(type: 'imageRelease', callback: AsyncCallback\<void>): void

监听imageRelease事件,并使用callback返回结果。

X
xu-rui-w 已提交
2525
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2526 2527 2528

**参数:**

2529
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2530
| ------------- | -------------------------| ---- | -------------------- |
X
xu-rui-w 已提交
2531
| type          | string                   | 是   | 监听事件类型,如'imageRelease'。 |
R
renhongwei 已提交
2532 2533 2534 2535 2536
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
X
xu-rui-w 已提交
2537 2538 2539 2540 2541 2542
creator.on('imageRelease', (err) => {
    if (err) {
        console.info('on faild' + err);
    }
    console.info('on succeeded');
})
R
renhongwei 已提交
2543 2544 2545 2546 2547 2548 2549 2550
```

### release<sup>9+</sup>

release(callback: AsyncCallback\<void>): void

释放当前图像,并使用callback返回结果。

X
xu-rui-w 已提交
2551
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2552 2553 2554

**参数:**

2555
| 参数名           | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2556 2557 2558 2559 2560 2561
| ------------- | -------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
X
xu-rui-w 已提交
2562 2563 2564 2565 2566 2567
creator.release((err) => {
    if (err) {
        console.info('release failed: ' + err);
    }
    console.info('release succeeded');
});
R
renhongwei 已提交
2568 2569 2570 2571 2572
```
### release<sup>9+</sup>

release(): Promise\<void>

X
xu-rui-w 已提交
2573 2574 2575
释放当前图像,并使用promise返回结果。

**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2576 2577 2578 2579 2580 2581 2582 2583 2584 2585

**返回值:**

| 类型            | 说明           |
| -------------- | ------------- |
| Promise\<void> | 获取回调,失败时返回错误信息。 |

**示例:**

```js
X
xu-rui-w 已提交
2586 2587 2588 2589 2590
creator.release().then(() => {
    console.info('release succeeded');
}).catch(error => {
    console.info('release failed');
})
R
renhongwei 已提交
2591 2592
```

Z
zhang-xiaobo1997 已提交
2593
## Image<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2594

Z
zengyawen 已提交
2595
提供基本的图像操作,包括获取图像信息、读写图像数据。调用[readNextImage](#readnextimage9)[readLatestImage](#readlatestimage9)接口时会返回image。
Z
zhang-xiaobo1997 已提交
2596 2597 2598

### 属性

X
xu-rui-w 已提交
2599
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2600

X
xu-rui-w 已提交
2601 2602 2603
| 名称     | 类型               | 可读 | 可写 | 说明                                               |
| -------- | ------------------ | ---- | ---- | -------------------------------------------------- |
| clipRect | [Region](#region7) | 是   | 是   | 要裁剪的图像区域。                                 |
X
xu-rui-w 已提交
2604
| size     | [Size](#size)      | 是   | 否   | 图像大小。                                         |
X
xu-rui-w 已提交
2605
| format   | number             | 是   | 否   | 图像格式,参考[PixelMapFormat](#pixelmapformat7)。 |
Z
zhang-xiaobo1997 已提交
2606

Z
zhang-xiaobo1997 已提交
2607
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2608

Z
zhang-xiaobo1997 已提交
2609
getComponent(componentType: ComponentType, callback: AsyncCallback\<Component>): void
Z
zhang-xiaobo1997 已提交
2610

Z
zhang-xiaobo1997 已提交
2611
根据图像的组件类型从图像中获取组件缓存并使用callback返回结果。
Z
zhang-xiaobo1997 已提交
2612

Z
zengyawen 已提交
2613
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2614 2615 2616

**参数:**

2617
| 参数名        | 类型                                    | 必填 | 说明                 |
Z
zhang-xiaobo1997 已提交
2618
| ------------- | --------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
2619 2620
| componentType | [ComponentType](#componenttype9)        | 是   | 图像的组件类型。     |
| callback      | AsyncCallback<[Component](#component9)> | 是   | 用于返回组件缓冲区。 |
Z
zhang-xiaobo1997 已提交
2621 2622 2623 2624

**示例:**

```js
X
xu-rui-w 已提交
2625 2626 2627 2628 2629 2630 2631
img.getComponent(4, (err, component) => {
    if(err) {
        console.log('getComponent failed.');
    } else {
        console.log('getComponent succeeded.');
    }
})
Z
zhang-xiaobo1997 已提交
2632 2633
```

Z
zhang-xiaobo1997 已提交
2634
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2635

Z
zhang-xiaobo1997 已提交
2636
getComponent(componentType: ComponentType): Promise\<Component>
Z
zhang-xiaobo1997 已提交
2637

Z
zengyawen 已提交
2638
根据图像的组件类型从图像中获取组件缓存并使用Promise方式返回结果。
Z
zhang-xiaobo1997 已提交
2639

Z
zengyawen 已提交
2640
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2641 2642 2643

**参数:**

2644
| 参数名        | 类型                             | 必填 | 说明             |
Z
zhang-xiaobo1997 已提交
2645
| ------------- | -------------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
2646
| componentType | [ComponentType](#componenttype9) | 是   | 图像的组件类型。 |
Z
zhang-xiaobo1997 已提交
2647 2648 2649 2650 2651

**返回值:**

| 类型                              | 说明                              |
| --------------------------------- | --------------------------------- |
Z
zengyawen 已提交
2652
| Promise<[Component](#component9)> | 用于返回组件缓冲区的promise实例。 |
Z
zhang-xiaobo1997 已提交
2653 2654 2655 2656 2657 2658 2659

**示例:**

```js
img.getComponent(4).then(component => { })
```

Z
zhang-xiaobo1997 已提交
2660
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2661

Z
zhang-xiaobo1997 已提交
2662
release(callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2663

Z
zengyawen 已提交
2664 2665 2666
释放当前图像并使用callback返回结果。

在接收另一个图像前必须先释放对应资源。
Z
zhang-xiaobo1997 已提交
2667

Z
zengyawen 已提交
2668
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2669 2670 2671

**参数:**

2672
| 参数名   | 类型                 | 必填 | 说明           |
Z
zhang-xiaobo1997 已提交
2673 2674
| -------- | -------------------- | ---- | -------------- |
| callback | AsyncCallback\<void> | 是   | 返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2675 2676 2677 2678

**示例:**

```js
X
xu-rui-w 已提交
2679 2680 2681
img.release(() =>{ 
    console.log('release succeeded.');
}) 
Z
zhang-xiaobo1997 已提交
2682 2683
```

Z
zhang-xiaobo1997 已提交
2684
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2685

Z
zhang-xiaobo1997 已提交
2686
release(): Promise\<void>
Z
zhang-xiaobo1997 已提交
2687

Z
zengyawen 已提交
2688 2689 2690
释放当前图像并使用Promise方式返回结果。

在接收另一个图像前必须先释放对应资源。
Z
zhang-xiaobo1997 已提交
2691

Z
zengyawen 已提交
2692
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2693 2694 2695

**返回值:**

Z
zhang-xiaobo1997 已提交
2696 2697 2698
| 类型           | 说明                  |
| -------------- | --------------------- |
| Promise\<void> | promise返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2699 2700 2701 2702 2703

**示例:**

```js
img.release().then(() =>{
X
xu-rui-w 已提交
2704 2705 2706 2707
    console.log('release succeeded.');
}).catch(error => {
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2708 2709
```

Z
zengyawen 已提交
2710 2711 2712 2713
## PositionArea<sup>7+</sup>

表示图片指定区域内的数据。

X
xu-rui-w 已提交
2714
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2715

2716 2717 2718 2719
| 名称   | 类型               | 可读 | 可写 | 说明                                                         |
| ------ | ------------------ | ---- | ---- | ------------------------------------------------------------ |
| pixels | ArrayBuffer        | 是   | 否   | 像素。                                                       |
| offset | number             | 是   | 否   | 偏移量。                                                     |
X
xu-rui-w 已提交
2720
| stride | number             | 是   | 否   | 像素间距,stride >= region.size.width*4。                   |
X
xu-rui-w 已提交
2721
| region | [Region](#region7) | 是   | 否   | 区域,按照区域读写。写入的区域宽度加X坐标不能大于原图的宽度,写入的区域高度加Y坐标不能大于原图的高度。 |
X
xiaok 已提交
2722

Z
zengyawen 已提交
2723
## ImageInfo
X
xiaok 已提交
2724

Z
zengyawen 已提交
2725
表示图片信息。
X
xiaok 已提交
2726

X
xu-rui-w 已提交
2727
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
2728

Z
zengyawen 已提交
2729 2730 2731
| 名称 | 类型          | 可读 | 可写 | 说明       |
| ---- | ------------- | ---- | ---- | ---------- |
| size | [Size](#size) | 是   | 是   | 图片大小。 |
X
xu-rui-w 已提交
2732
| density<sup>9+</sup> | number | 是   | 是   | 像素密度,单位为ppi。 |
X
xiaok 已提交
2733

Z
zengyawen 已提交
2734
## Size
X
xiaok 已提交
2735

Z
zengyawen 已提交
2736 2737
表示图片尺寸。

X
xu-rui-w 已提交
2738
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2739 2740 2741 2742 2743 2744 2745

| 名称   | 类型   | 可读 | 可写 | 说明           |
| ------ | ------ | ---- | ---- | -------------- |
| height | number | 是   | 是   | 输出图片的高。 |
| width  | number | 是   | 是   | 输出图片的宽。 |

## PixelMapFormat<sup>7+</sup>
X
xiaok 已提交
2746

Z
zengyawen 已提交
2747
枚举,图片像素格式。
X
xiaok 已提交
2748

X
xu-rui-w 已提交
2749
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2750

2751
| 名称                   |   值   | 说明              |
X
xu-rui-w 已提交
2752 2753 2754
| ---------------------- | ------ | ----------------- |
| UNKNOWN                | 0      | 未知格式。        |
| RGB_565                | 2      | 格式为RGB_565     |
X
xu-rui-w 已提交
2755 2756 2757 2758 2759 2760 2761
| RGBA_8888              | 3      | 格式为RGBA_8888 |
| BGRA_8888<sup>9+</sup> | 4      | 格式为BGRA_8888 |
| RGB_888<sup>9+</sup>   | 5      | 格式为RGB_888   |
| ALPHA_8<sup>9+</sup>   | 6      | 格式为ALPHA_8   |
| RGBA_F16<sup>9+</sup>  | 7      | 格式为RGBA_F16  |
| NV21<sup>9+</sup>      | 8      | 格式为NV21      |
| NV12<sup>9+</sup>      | 9      | 格式为NV12      |
Z
zengyawen 已提交
2762

2763
## AlphaType<sup>9+</sup>
X
xiaok 已提交
2764

Z
zengyawen 已提交
2765
枚举,图像的透明度类型。
X
xiaok 已提交
2766

X
xu-rui-w 已提交
2767
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2768

2769
| 名称     |   值   | 说明                    |
Z
zengyawen 已提交
2770 2771 2772
| -------- | ------ | ----------------------- |
| UNKNOWN  | 0      | 未知透明度。            |
| OPAQUE   | 1      | 没有alpha或图片全透明。 |
X
xu-rui-w 已提交
2773 2774
| PREMUL   | 2      | RGB前乘alpha。         |
| UNPREMUL | 3      | RGB不前乘alpha。       |
X
xiaok 已提交
2775

2776
## ScaleMode<sup>9+</sup>
X
xiaok 已提交
2777

Z
zengyawen 已提交
2778
枚举,图像的缩放模式。
X
xiaok 已提交
2779

X
xu-rui-w 已提交
2780
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
2781

2782
| 名称            |   值   | 说明                                               |
Z
zengyawen 已提交
2783 2784
| --------------- | ------ | -------------------------------------------------- |
| CENTER_CROP     | 1      | 缩放图像以填充目标图像区域并居中裁剪区域外的效果。 |
X
xu-rui-w 已提交
2785
| FIT_TARGET_SIZE | 0      | 图像适合目标尺寸的效果。                           |
X
xiaok 已提交
2786

X
xu-rui-w 已提交
2787 2788 2789 2790
## SourceOptions<sup>9+</sup>

ImageSource的初始化选项。

X
xu-rui-w 已提交
2791
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xu-rui-w 已提交
2792

X
xu-rui-w 已提交
2793 2794 2795 2796 2797
| 名称              | 类型                               | 可读 | 可写 | 说明               |
| ----------------- | ---------------------------------- | ---- | ---- | ------------------ |
| sourceDensity     | number                             | 是   | 是   | ImageSource的密度。|
| sourcePixelFormat | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 图片像素格式。     |
| sourceSize        | [Size](#size)                      | 是   | 是   | 图像像素大小。     |
X
xu-rui-w 已提交
2798 2799


Z
zengyawen 已提交
2800
## InitializationOptions<sup>8+</sup>
X
xiaok 已提交
2801

Z
zengyawen 已提交
2802 2803
PixelMap的初始化选项。

X
xu-rui-w 已提交
2804
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2805

X
xu-rui-w 已提交
2806 2807 2808
| 名称                     | 类型                               | 可读 | 可写 | 说明           |
| ------------------------ | ---------------------------------- | ---- | ---- | -------------- |
| alphaType<sup>9+</sup>   | [AlphaType](#alphatype9)           | 是   | 是   | 透明度。       |
X
xu-rui-w 已提交
2809 2810
| editable                 | boolean                            | 是   | 是   | 是否可编辑。   |
| pixelFormat              | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 像素格式。     |
X
xu-rui-w 已提交
2811
| scaleMode<sup>9+</sup>   | [ScaleMode](#scalemode9)           | 是   | 是   | 缩略值。       |
X
xu-rui-w 已提交
2812
| size                     | [Size](#size)                      | 是   | 是   | 创建图片大小。 |
Z
zengyawen 已提交
2813 2814

## DecodingOptions<sup>7+</sup>
X
xiaok 已提交
2815

Z
zengyawen 已提交
2816
图像解码设置选项。
X
xiaok 已提交
2817

X
xu-rui-w 已提交
2818
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
2819 2820 2821 2822

| 名称               | 类型                               | 可读 | 可写 | 说明             |
| ------------------ | ---------------------------------- | ---- | ---- | ---------------- |
| sampleSize         | number                             | 是   | 是   | 缩略图采样大小。 |
Z
zengyawen 已提交
2823
| rotate             | number                             | 是   | 是   | 旋转角度。       |
Z
zengyawen 已提交
2824 2825
| editable           | boolean                            | 是   | 是   | 是否可编辑。     |
| desiredSize        | [Size](#size)                      | 是   | 是   | 期望输出大小。   |
2826
| desiredRegion      | [Region](#region7)                 | 是   | 是   | 解码区域。       |
Z
zengyawen 已提交
2827
| desiredPixelFormat | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 解码的像素格式。 |
X
xu-rui-w 已提交
2828
| index              | number                             | 是   | 是   | 解码图片序号。   |
X
xu-rui-w 已提交
2829
| fitDensity<sup>9+</sup> | number                        | 是   | 是   | 图像像素密度,单位为ppi。   |
Z
zengyawen 已提交
2830

2831
## Region<sup>7+</sup>
Z
zengyawen 已提交
2832 2833 2834

表示区域信息。

X
xu-rui-w 已提交
2835
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2836

2837 2838 2839 2840 2841
| 名称 | 类型          | 可读 | 可写 | 说明         |
| ---- | ------------- | ---- | ---- | ------------ |
| size | [Size](#size) | 是   | 是   | 区域大小。   |
| x    | number        | 是   | 是   | 区域横坐标。 |
| y    | number        | 是   | 是   | 区域纵坐标。 |
Z
zengyawen 已提交
2842 2843 2844 2845 2846

## PackingOption

表示图片打包选项。

X
xu-rui-w 已提交
2847
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
Z
zengyawen 已提交
2848

X
xu-rui-w 已提交
2849 2850
| 名称    | 类型   | 可读 | 可写 | 说明                                                |
| ------- | ------ | ---- | ---- | --------------------------------------------------- |
R
renhongwei 已提交
2851
| format  | string | 是   | 是   | 目标格式。</br>当前只支持jpg和webp。 |
X
xu-rui-w 已提交
2852
| quality | number | 是   | 是   | JPEG编码中设定输出图片质量的参数,取值范围为1-100。 |
X
xu-rui-w 已提交
2853
| bufferSize<sup>9+</sup> | number | 是   | 是   | 用于设置图片大小,默认为10M |
Z
zengyawen 已提交
2854 2855 2856 2857 2858

## GetImagePropertyOptions<sup>7+</sup>

表示查询图片属性的索引。

X
xu-rui-w 已提交
2859
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
2860 2861 2862 2863 2864 2865 2866 2867 2868 2869

| 名称         | 类型   | 可读 | 可写 | 说明         |
| ------------ | ------ | ---- | ---- | ------------ |
| index        | number | 是   | 是   | 图片序号。   |
| defaultValue | string | 是   | 是   | 默认属性值。 |

## PropertyKey<sup>7+</sup>

枚举,Exif(Exchangeable image file format)图片信息。

X
xu-rui-w 已提交
2870
**系统能力:** SystemCapability.Multimedia.Image.Core
2871

2872
| 名称              |   值                    | 说明                     |
X
xu-rui-w 已提交
2873 2874 2875 2876 2877 2878 2879
| ----------------- | ----------------------- | ------------------------ |
| BITS_PER_SAMPLE   | "BitsPerSample"         | 每个像素比特数。         |
| ORIENTATION       | "Orientation"           | 图片方向。               |
| IMAGE_LENGTH      | "ImageLength"           | 图片长度。               |
| IMAGE_WIDTH       | "ImageWidth"            | 图片宽度。               |
| GPS_LATITUDE      | "GPSLatitude"           | 图片纬度。               |
| GPS_LONGITUDE     | "GPSLongitude"          | 图片经度。               |
X
xu-rui-w 已提交
2880 2881
| GPS_LATITUDE_REF  | "GPSLatitudeRef"        | 纬度引用,例如N或S。    |
| GPS_LONGITUDE_REF | "GPSLongitudeRef"       | 经度引用,例如W或E。    |
X
xu-rui-w 已提交
2882 2883
| DATE_TIME_ORIGINAL<sup>9+</sup> | "DateTimeOriginal" | 拍摄时间,例如2022:09:06 15:48:00     |
| EXPOSURE_TIME<sup>9+</sup>      | "ExposureTime"     | 曝光时间,例如1/33 sec.|
X
xu-rui-w 已提交
2884
| SCENE_TYPE<sup>9+</sup>         | "SceneType"        | 拍摄场景模式,例如人像、风光、运动、夜景等。     |
X
xu-rui-w 已提交
2885 2886
| ISO_SPEED_RATINGS<sup>9+</sup>  | "ISOSpeedRatings"  | ISO感光度,例如400     |
| F_NUMBER<sup>9+</sup>           | "FNumber"          | 光圈值,例如f/1.8     |
R
renhongwei 已提交
2887

2888

Z
zhang-xiaobo1997 已提交
2889
## ImageFormat<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2890 2891 2892

枚举,图片格式。

X
xu-rui-w 已提交
2893
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2894

2895
| 名称         |   值   | 说明                 |
Z
zengyawen 已提交
2896 2897 2898
| ------------ | ------ | -------------------- |
| YCBCR_422_SP | 1000   | YCBCR422半平面格式。 |
| JPEG         | 2000   | JPEG编码格式。       |
Z
zhang-xiaobo1997 已提交
2899

Z
zengyawen 已提交
2900
## ComponentType<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2901 2902 2903

枚举,图像的组件类型。

X
xu-rui-w 已提交
2904
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2905

2906
| 名称  |   值   | 说明        |
Z
zhang-xiaobo1997 已提交
2907 2908 2909 2910
| ----- | ------ | ----------- |
| YUV_Y | 1      | 亮度信息。  |
| YUV_U | 2      | 色度信息。  |
| YUV_V | 3      | 色度信息。  |
X
xu-rui-w 已提交
2911
| JPEG  | 4      | JPEG 类型。 |
Z
zhang-xiaobo1997 已提交
2912

Z
zengyawen 已提交
2913
## Component<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2914 2915 2916

描述图像颜色分量。

X
xu-rui-w 已提交
2917
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2918 2919 2920

| 名称          | 类型                             | 可读 | 可写 | 说明         |
| ------------- | -------------------------------- | ---- | ---- | ------------ |
Z
zengyawen 已提交
2921
| componentType | [ComponentType](#componenttype9) | 是   | 否   | 组件类型。   |
Z
zhang-xiaobo1997 已提交
2922 2923 2924 2925
| rowStride     | number                           | 是   | 否   | 行距。       |
| pixelStride   | number                           | 是   | 否   | 像素间距。   |
| byteBuffer    | ArrayBuffer                      | 是   | 否   | 组件缓冲区。 |

2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969
## 补充说明
### SVG标签说明

从API verison 10开始支持SVG标签,使用版本为(SVG) 1.1,当前支持的标签列表有:
- a
- circla
- clipPath
- defs
- ellipse
- feBlend
- feColorMatrix
- feComposite
- feDiffuseLighting
- feDisplacementMap
- feDistantLight
- feFlood
- feGaussianBlur
- feImage
- feMorphology
- feOffset
- fePointLight
- feSpecularLighting
- feSpotLight
- feTurbulence
- filter
- g
- image
- line
- linearGradient
- mask
- path
- pattern
- polygon
- polyline
- radialGradient
- rect
- stop
- svg
- text
- textPath
- tspan
- use

### ResponseCode说明
X
xu-rui-w 已提交
2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009

编译错误返回的响应码。

| 名称                                | 值       | 说明                                                |
| ----------------------------------- | -------- | --------------------------------------------------- |
| ERR_MEDIA_INVALID_VALUE             | -1       | 无效大小。                                          |
| SUCCESS                             | 0        | 操作成功。                                          |
| ERROR                               | 62980096 | 操作失败。                                          |
| ERR_IPC                             | 62980097 | ipc错误。                                           |
| ERR_SHAMEM_NOT_EXIST                | 62980098 | 共享内存错误。                                      |
| ERR_SHAMEM_DATA_ABNORMAL            | 62980099 | 共享内存错误。                                      |
| ERR_IMAGE_DECODE_ABNORMAL           | 62980100 | 图像解码错误。                                      |
| ERR_IMAGE_DATA_ABNORMAL             | 62980101 | 图像输入数据错误。                                  |
| ERR_IMAGE_MALLOC_ABNORMAL           | 62980102 | 图像malloc错误。                                    |
| ERR_IMAGE_DATA_UNSUPPORT            | 62980103 | 不支持图像类型。                                    |
| ERR_IMAGE_INIT_ABNORMAL             | 62980104 | 图像初始化错误。                                    |
| ERR_IMAGE_GET_DATA_ABNORMAL         | 62980105 | 图像获取数据错误。                                  |
| ERR_IMAGE_TOO_LARGE                 | 62980106 | 图像数据太大。                                      |
| ERR_IMAGE_TRANSFORM                 | 62980107 | 图像转换错误。                                      |
| ERR_IMAGE_COLOR_CONVERT             | 62980108 | 图像颜色转换错误。                                  |
| ERR_IMAGE_CROP                      | 62980109 | 裁剪错误。                                          |
| ERR_IMAGE_SOURCE_DATA               | 62980110 | 图像源数据错误。                                    |
| ERR_IMAGE_SOURCE_DATA_INCOMPLETE    | 62980111 | 图像源数据不完整。                                  |
| ERR_IMAGE_MISMATCHED_FORMAT         | 62980112 | 图像格式不匹配。                                    |
| ERR_IMAGE_UNKNOWN_FORMAT            | 62980113 | 图像未知格式。                                      |
| ERR_IMAGE_SOURCE_UNRESOLVED         | 62980114 | 图像源未解析。                                      |
| ERR_IMAGE_INVALID_PARAMETER         | 62980115 | 图像无效参数。                                      |
| ERR_IMAGE_DECODE_FAILED             | 62980116 | 解码失败。                                          |
| ERR_IMAGE_PLUGIN_REGISTER_FAILED    | 62980117 | 注册插件失败。                                      |
| ERR_IMAGE_PLUGIN_CREATE_FAILED      | 62980118 | 创建插件失败。                                      |
| ERR_IMAGE_ENCODE_FAILED             | 62980119 | 图像编码失败。                                      |
| ERR_IMAGE_ADD_PIXEL_MAP_FAILED      | 62980120 | 图像添加像素映射失败。                              |
| ERR_IMAGE_HW_DECODE_UNSUPPORT       | 62980121 | 不支持图像硬件解码。                                |
| ERR_IMAGE_DECODE_HEAD_ABNORMAL      | 62980122 | 图像解码头错误。                                    |
| ERR_IMAGE_DECODE_EXIF_UNSUPPORT     | 62980123 | 图像解码exif取消支持。                              |
| ERR_IMAGE_PROPERTY_NOT_EXIST        | 62980124 | 图像属性不存在;错误代码被媒体占用,图像从150开始。 |
| ERR_IMAGE_READ_PIXELMAP_FAILED      | 62980246 | 读取像素地图失败。                                  |
| ERR_IMAGE_WRITE_PIXELMAP_FAILED     | 62980247 | 写入像素映射失败。                                  |
| ERR_IMAGE_PIXELMAP_NOT_ALLOW_MODIFY | 62980248 | pixelmap不允许修改。                                |
| ERR_IMAGE_CONFIG_FAILED             | 62980259 | 配置错误。                                          |