js-apis-image.md 109.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
39
import {BusinessError} from '@ohos.base'
40 41 42 43 44
const color : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
let bufferArr : Uint8Array = new Uint8Array(color);
let opts : image.InitializationOptions = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
  console.log('Succeeded in creating pixelmap.');
45
}).catch((error : BusinessError) => {
46
  console.log('Failed to create pixelmap.');
F
fengzewu 已提交
47
})
X
xiaok 已提交
48 49
```

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

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

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

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

**参数:**

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

**示例:**

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

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

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

 ### 属性

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

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
125
### readPixelsToBuffer<sup>7+</sup>
X
xiaok 已提交
126

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

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

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

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
153
### readPixels<sup>7+</sup>
X
xiaok 已提交
154

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
190
### readPixels<sup>7+</sup>
X
xiaok 已提交
191

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

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

X
xu-rui-w 已提交
196
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
197 198 199

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
226
### writePixels<sup>7+</sup>
X
xiaok 已提交
227

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

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

X
xu-rui-w 已提交
232
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
233 234 235

**参数:** 

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

**返回值:**

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

**示例:**

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

        pixelmap.writePixels(area).then(() => {
F
fengzewu 已提交
269
		    console.info('Succeeded to write pixelmap into the specified area.');
270
        })
271
    }).catch((error : BusinessError) => {
272 273
        console.log('error: ' + error);
    })
X
xiaok 已提交
274 275
```

Z
zengyawen 已提交
276
### writePixels<sup>7+</sup>
X
xiaok 已提交
277

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

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

X
xu-rui-w 已提交
282
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
283 284 285

**参数:** 

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

**示例:**

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

Z
zengyawen 已提交
312
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
313

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

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

X
xu-rui-w 已提交
318
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
319 320 321

**参数:**

Z
zengyawen 已提交
322 323 324
| 参数名 | 类型        | 必填 | 说明           |
| ------ | ----------- | ---- | -------------- |
| src    | ArrayBuffer | 是   | 图像像素数据。 |
X
xiaok 已提交
325 326 327

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
348
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
349

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

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

X
xu-rui-w 已提交
354
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
355 356 357

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
381
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
382

Z
zengyawen 已提交
383
getImageInfo(): Promise\<ImageInfo>
X
xiaok 已提交
384 385 386

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

X
xu-rui-w 已提交
387
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
388 389 390

**返回值:**

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

**示例:**

```js
398 399 400
const color : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
let opts : image.InitializationOptions = { editable: true, pixelFormat: 2, size: { height: 6, width: 8 } }
image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
F
fengzewu 已提交
401 402 403
    if (pixelmap == undefined) {
        console.error("Failed to obtain the image pixel map information.");
    }
404
    pixelmap.getImageInfo().then((imageInfo : image.ImageInfo) => {
F
fengzewu 已提交
405 406 407 408 409 410 411 412
        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 已提交
413 414
```

Z
zengyawen 已提交
415
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
416

Z
zengyawen 已提交
417
getImageInfo(callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
418 419 420

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

X
xu-rui-w 已提交
421
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
422 423 424

**参数:**

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

**示例:**

```js
432 433 434
const color : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
let opts : image.InitializationOptions = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts, (err, pixelmap : image.PixelMap) => {
F
fengzewu 已提交
435 436 437
    if (pixelmap == undefined) {
        console.error("Failed to obtain the image pixel map information.");
    }
438
    pixelmap.getImageInfo((err, imageInfo : image.ImageInfo) => {
F
fengzewu 已提交
439 440 441 442 443 444 445
        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 已提交
446
})
X
xiaok 已提交
447 448
```

Z
zengyawen 已提交
449
### getBytesNumberPerRow<sup>7+</sup>
X
xiaok 已提交
450

Z
zengyawen 已提交
451
getBytesNumberPerRow(): number
X
xiaok 已提交
452 453 454

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

X
xu-rui-w 已提交
455
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
456 457 458

**返回值:**

Z
zengyawen 已提交
459 460 461
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的行字节数。 |
X
xiaok 已提交
462 463 464 465

**示例:**

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

Z
zengyawen 已提交
474
### getPixelBytesNumber<sup>7+</sup>
X
xiaok 已提交
475

Z
zengyawen 已提交
476
getPixelBytesNumber(): number
X
xiaok 已提交
477 478 479

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

X
xu-rui-w 已提交
480
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
481 482 483

**返回值:**

Z
zengyawen 已提交
484 485 486
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的总字节数。 |
X
xiaok 已提交
487 488 489 490

**示例:**

```js
491
let pixelBytesNumber : number = pixelmap.getPixelBytesNumber();
X
xiaok 已提交
492 493
```

X
xu-rui-w 已提交
494 495 496 497
### getDensity<sup>9+</sup>

getDensity():number

X
xu-rui-w 已提交
498
获取当前图像像素的密度。
X
xu-rui-w 已提交
499 500 501 502 503

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

**返回值:**

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

**示例:**

```js
511
let getDensity : number = pixelmap.getDensity();
X
xu-rui-w 已提交
512 513 514 515 516 517
```

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

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

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

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

**参数:**

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

**示例:**

```js
F
fengzewu 已提交
532 533 534 535 536 537 538 539 540
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 已提交
541 542 543 544 545 546
```

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

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

X
xu-rui-w 已提交
547
通过设置透明比率来让PixelMap达到对应的透明效果,使用Promise形式返回。
X
xu-rui-w 已提交
548 549 550 551 552 553 554

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

**参数:**

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

**返回值:**

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

**示例:**

```js
F
fengzewu 已提交
566
async function Demo() {
F
fengzewu 已提交
567
    await pixelmap.opacity(0.5);
X
xu-rui-w 已提交
568
}
X
xu-rui-w 已提交
569 570 571 572 573 574
```

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

createAlphaPixelmap(): Promise\<PixelMap>

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

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

**返回值:**

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

**示例:**

```js
F
fengzewu 已提交
588
async function Demo() {
F
fengzewu 已提交
589 590
    await pixelmap.createAlphaPixelmap();
}   
X
xu-rui-w 已提交
591 592 593 594 595 596
```

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

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

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

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

**参数:**

X
xu-rui-w 已提交
603 604 605
| 参数名   | 类型                     | 必填 | 说明                     |
| -------- | ------------------------ | ---- | ------------------------ |
| callback | AsyncCallback\<PixelMap> | 是   | 获取回调,异步返回结果。 |
X
xu-rui-w 已提交
606 607 608 609

**示例:**

```js
610
pixelmap.createAlphaPixelmap((err, alphaPixelMap : image.PixelMap) => {
F
fengzewu 已提交
611 612 613 614 615 616
    if (alphaPixelMap == undefined) {
        console.info('Failed to obtain new pixel map.');
    } else {
        console.info('Succeed in obtaining new pixel map.');
    }
})
X
xu-rui-w 已提交
617 618 619 620 621 622
```

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

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

X
xu-rui-w 已提交
623
根据输入的宽高对图片进行缩放,使用callback形式返回。
X
xu-rui-w 已提交
624 625 626 627 628

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

**参数:**

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

**示例:**

```js
F
fengzewu 已提交
638
async function Demo() {
F
fengzewu 已提交
639
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
640
}
X
xu-rui-w 已提交
641 642 643 644 645 646
```

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

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

X
xu-rui-w 已提交
647
根据输入的宽高对图片进行缩放,使用Promise形式返回。
X
xu-rui-w 已提交
648 649 650 651 652

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

**参数:**

X
xu-rui-w 已提交
653 654 655 656
| 参数名 | 类型   | 必填 | 说明                            |
| ------ | ------ | ---- | ------------------------------- |
| x      | number | 是   | 宽度的缩放值,其值为输入的倍数。|
| y      | number | 是   | 高度的缩放值,其值为输入的倍数。|
X
xu-rui-w 已提交
657 658 659

**返回值:**

X
xu-rui-w 已提交
660 661 662
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
663 664 665 666

**示例:**

```js
F
fengzewu 已提交
667
async function Demo() {
F
fengzewu 已提交
668
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
669
}
X
xu-rui-w 已提交
670 671 672 673 674 675
```

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

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

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

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

**参数:**

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

**示例:**

```js
F
fengzewu 已提交
691
async function Demo() {
F
fengzewu 已提交
692
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
693
}
X
xu-rui-w 已提交
694 695 696 697 698 699
```

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

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

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

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
713 714 715
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
716 717 718 719

**示例:**

```js
F
fengzewu 已提交
720
async function Demo() {
F
fengzewu 已提交
721
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
722
}
X
xu-rui-w 已提交
723 724 725 726 727 728
```

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

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

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

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

**参数:**

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

**示例:**

```js
Y
yaozhupeng 已提交
743 744 745 746 747 748 749 750 751
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 已提交
752 753 754 755 756 757
```

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

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

X
xu-rui-w 已提交
758
根据输入的角度对图片进行旋转,使用Promise形式返回。
X
xu-rui-w 已提交
759 760 761 762 763 764 765 766 767 768 769

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
770 771 772
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
773 774 775 776

**示例:**

```js
F
fengzewu 已提交
777
async function Demo() {
F
fengzewu 已提交
778
	await pixelmap.rotate(90.0);
X
xu-rui-w 已提交
779
}
X
xu-rui-w 已提交
780 781 782 783 784 785
```

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

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

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

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

**参数:**

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

**示例:**

```js
F
fengzewu 已提交
801
async function Demo() {
F
fengzewu 已提交
802
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
803
}
X
xu-rui-w 已提交
804 805 806 807 808 809
```

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

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

X
xu-rui-w 已提交
810
根据输入的条件对图片进行翻转,使用Promise形式返回。
X
xu-rui-w 已提交
811 812 813 814 815 816 817 818 819 820 821 822

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
823 824 825
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
826 827 828 829

**示例:**

```js
F
fengzewu 已提交
830
async function Demo() {
F
fengzewu 已提交
831
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
832
}
X
xu-rui-w 已提交
833 834 835 836 837 838
```

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

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

X
xu-rui-w 已提交
839
根据输入的尺寸对图片进行裁剪,使用callback形式返回。
X
xu-rui-w 已提交
840 841 842 843 844 845 846

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

**参数:**

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

**示例:**

```js
F
fengzewu 已提交
853
async function Demo() {
F
fengzewu 已提交
854
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } });
X
xu-rui-w 已提交
855
}
X
xu-rui-w 已提交
856 857 858 859 860 861
```

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

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

X
xu-rui-w 已提交
862
根据输入的尺寸对图片进行裁剪,使用Promise形式返回。
X
xu-rui-w 已提交
863 864 865 866 867

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

**参数:**

X
xu-rui-w 已提交
868 869 870
| 参数名 | 类型               | 必填 | 说明        |
| ------ | ------------------ | ---- | ----------- |
| region | [Region](#region7) | 是   | 裁剪的尺寸。|
X
xu-rui-w 已提交
871 872 873

**返回值:**

X
xu-rui-w 已提交
874 875 876
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
877 878 879 880

**示例:**

```js
F
fengzewu 已提交
881
async function Demo() {
F
fengzewu 已提交
882
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } });
X
xu-rui-w 已提交
883
}
X
xu-rui-w 已提交
884 885
```

F
fengzewu 已提交
886 887 888 889 890 891 892 893 894 895 896 897 898 899
### getColorSpace<sup>10+</sup>

getColorSpace(): colorSpaceManager.ColorSpaceManager

获取图像广色域信息。

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

**返回值:**

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

黄开兴 已提交
900 901 902 903 904 905 906 907 908 909
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980101| If the image data abnormal              |
| 62980103| If the image data unsupport              |
| 62980115| If the image parameter invalid             |

F
fengzewu 已提交
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
**示例:**

```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) | 是   | 图像广色域信息。|

黄开兴 已提交
933 934 935 936 937 938 939 940 941
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980111| If the operation invalid              |
| 62980115| If the image parameter invalid             |

黄开兴 已提交
942 943
**示例:**

F
fengzewu 已提交
944 945 946
```js
import colorSpaceManager from '@ohos.graphics.colorSpaceManager';
async function Demo() {
947
    let colorSpaceName = colorSpaceManager.ColorSpace.SRGB;
F
fengzewu 已提交
948 949 950 951 952
    var csm = colorSpaceManager.create(colorSpaceName);
    pixelmap.setColorSpace(csm);
}
```

Z
zengyueyang 已提交
953 954 955 956 957 958 959 960 961 962 963 964 965 966
### marshalling<sup>10+</sup>

marshalling(sequence: rpc.MessageSequence): void

将PixelMap序列化后写入MessageSequence。

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

**参数:**

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

967 968
**错误码:**

黄开兴 已提交
969
以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)
970 971 972 973 974 975

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980115 | If the input parameter invalid              |
| 62980097 | If the ipc error              |

Z
zengyueyang 已提交
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
**示例:**

```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) {
991 992
        let pixelParcel : image.PixelMap = await image.createPixelMap(new ArrayBuffer(96), {size: { height:4, width: 6}});
        await pixelParcel.unmarshalling(messageSequence).then(async (pixelMap : image.PixelMap) => {
993
            this.pixel_map = pixelMap;
Z
zengyueyang 已提交
994 995 996 997 998
        })
        return true;
    }
}
async function Demo() {
999 1000
    let parcelable : MySequence = new MySequence(pixelmap);
    let data : rpc.MessageSequence = rpc.MessageSequence.create();
Z
zengyueyang 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
    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对象。 |

1025 1026
**错误码:**

黄开兴 已提交
1027
以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)
1028 1029 1030 1031 1032

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980115 | If the input parameter invalid              |
| 62980097 | If the ipc error              |
1033
| 62980096 | If the Operation failed             |
1034

Z
zengyueyang 已提交
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
**示例:**

```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) {
1050 1051
        let pixelParcel : image.PixelMap = await image.createPixelMap(new ArrayBuffer(96), {size: { height:4, width: 6}});
        await pixelParcel.unmarshalling(messageSequence).then(async (pixelMap : image.PixelMap) => {
1052
            this.pixel_map = pixelMap;
Z
zengyueyang 已提交
1053 1054 1055 1056 1057 1058
        })
        return true;
    }
}
async function Demo() {
    let pixel_map = undefined;
1059 1060
    let ret : MySequence = new MySequence(pixel_map);
    let data : rpc.MessageSequence = rpc.MessageSequence.create();
Z
zengyueyang 已提交
1061 1062 1063 1064
    await data.readParcelable(ret);
}
```

Z
zengyawen 已提交
1065
### release<sup>7+</sup>
X
xiaok 已提交
1066

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

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

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

Z
zengyawen 已提交
1073
**返回值:**
X
xiaok 已提交
1074

X
xu-rui-w 已提交
1075 1076 1077
| 类型           | 说明                            |
| -------------- | ------------------------------- |
| Promise\<void> | Promise实例,异步返回释放结果。 |
X
xiaok 已提交
1078 1079 1080 1081

**示例:**

```js
1082
import {BusinessError} from '@ohos.base'
F
fengzewu 已提交
1083 1084
pixelmap.release().then(() => {
	console.log('Succeeded in releasing pixelmap object.');
1085
}).catch((error : BusinessError) => {
F
fengzewu 已提交
1086
	console.log('Failed to release pixelmap object.');
X
xu-rui-w 已提交
1087
})
X
xiaok 已提交
1088 1089
```

Z
zengyawen 已提交
1090
### release<sup>7+</sup>
X
xiaok 已提交
1091

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

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

X
xu-rui-w 已提交
1096
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
1097 1098 1099

**参数:**

1100
| 参数名   | 类型                 | 必填 | 说明               |
Z
zengyawen 已提交
1101 1102
| -------- | -------------------- | ---- | ------------------ |
| callback | AsyncCallback\<void> | 是   | 异步返回释放结果。 |
X
xiaok 已提交
1103 1104 1105 1106

**示例:**

```js
F
fengzewu 已提交
1107 1108
pixelmap.release(() => {
    console.log('Succeeded in releasing pixelmap object.');
X
xu-rui-w 已提交
1109
})
X
xiaok 已提交
1110 1111
```

Z
zengyawen 已提交
1112
## image.createImageSource
X
xiaok 已提交
1113

Z
zengyawen 已提交
1114
createImageSource(uri: string): ImageSource
X
xiaok 已提交
1115

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

X
xu-rui-w 已提交
1118
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1119 1120 1121

**参数:**

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

**返回值:**

1128 1129 1130
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1131 1132 1133 1134

**示例:**

```js
F
fengzewu 已提交
1135
//Stage模型
1136 1137 1138
const context : Context = getContext(this);
const path : string= context.cacheDir + "/test.jpg";
const imageSourceApi : image.ImageSource = image.createImageSource(path);
F
fengzewu 已提交
1139 1140 1141 1142 1143 1144
```

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

1145 1146 1147
const context : Context = featureAbility.getContext();
const path : string= context.getCacheDir() + "/test.jpg";
const imageSourceApi : image.ImageSource = image.createImageSource(path);
X
xiaok 已提交
1148 1149
```

X
xu-rui-w 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
## image.createImageSource<sup>9+</sup>

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

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

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
1162
| uri     | string                          | 是   | 图片路径,当前仅支持应用沙箱路径。</br>当前支持格式有:.jpg .png .gif .bmp .webp RAW [SVG<sup>10+</sup>](#svg标签说明)。 |
1163
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173

**返回值:**

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

**示例:**

```js
1174 1175
var sourceOptions : image.SourceOptions = { sourceDensity: 120 };
let imageSource : image.ImageSource = image.createImageSource('test.png', sourceOptions);
X
xu-rui-w 已提交
1176 1177
```

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

Z
zengyawen 已提交
1180
createImageSource(fd: number): ImageSource
X
xiaok 已提交
1181

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

X
xu-rui-w 已提交
1184
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1185 1186 1187

**参数:**

X
xu-rui-w 已提交
1188 1189 1190
| 参数名 | 类型   | 必填 | 说明          |
| ------ | ------ | ---- | ------------- |
| fd     | number | 是   | 文件描述符fd。|
X
xiaok 已提交
1191 1192 1193

**返回值:**

1194 1195 1196
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1197 1198 1199 1200

**示例:**

```js
1201
const imageSourceApi : image.ImageSource = image.createImageSource(0);
X
xu-rui-w 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
```

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

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

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

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
| fd      | number                          | 是   | 文件描述符fd。                      |
1217
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1218 1219 1220 1221 1222 1223 1224 1225 1226 1227

**返回值:**

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

**示例:**

```js
1228 1229
var sourceOptions : image.SourceOptions = { sourceDensity: 120 };
const imageSourceApi : image.ImageSource = image.createImageSource(0, sourceOptions);
X
xu-rui-w 已提交
1230 1231 1232
```

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

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

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

X
xu-rui-w 已提交
1238
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1239 1240 1241

**参数:**

X
xu-rui-w 已提交
1242 1243 1244
| 参数名 | 类型        | 必填 | 说明             |
| ------ | ----------- | ---- | ---------------- |
| buf    | ArrayBuffer | 是   | 图像缓冲区数组。 |
X
xiaok 已提交
1245 1246 1247 1248

**示例:**

```js
1249 1250
const buf : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
const imageSourceApi : image.ImageSource = image.createImageSource(buf);
X
xiaok 已提交
1251 1252
```

X
xu-rui-w 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
## image.createImageSource<sup>9+</sup>

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

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

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

**参数:**

| 参数名 | 类型                             | 必填 | 说明                                 |
| ------ | -------------------------------- | ---- | ------------------------------------ |
| buf    | ArrayBuffer                      | 是   | 图像缓冲区数组。                     |
1266
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276

**返回值:**

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

**示例:**

```js
1277 1278
const data : ArrayBuffer= new ArrayBuffer(112);
const imageSourceApi : image.ImageSource = image.createImageSource(data);
X
xu-rui-w 已提交
1279 1280
```

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

1283
CreateIncrementalSource(buf: ArrayBuffer): ImageSource
X
xu-rui-w 已提交
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

X
xu-rui-w 已提交
1314
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1315 1316 1317 1318 1319

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                 |
| ------- | ------------------------------- | ---- | ------------------------------------ |
X
xu-rui-w 已提交
1320
| buf     | ArrayBuffer                     | 是   | 增量数据。                           |
1321
| options | [SourceOptions](#sourceoptions9) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331

**返回值:**

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

**示例:**

```js
1332 1333
const buf : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
const imageSourceIncrementalSApi : image.ImageSource = image.CreateIncrementalSource(buf);
X
xiaok 已提交
1334 1335
```

Z
zengyawen 已提交
1336
## ImageSource
X
xiaok 已提交
1337

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

### 属性

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

Z
zengyawen 已提交
1344 1345
| 名称             | 类型           | 可读 | 可写 | 说明                                                         |
| ---------------- | -------------- | ---- | ---- | ------------------------------------------------------------ |
X
xu-rui-w 已提交
1346
| supportedFormats | Array\<string> | 是   | 否   | 支持的图片格式,包括:png,jpeg,bmp,gif,webp,RAW。 |
Z
zengyawen 已提交
1347 1348 1349 1350

### getImageInfo

getImageInfo(index: number, callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
1351 1352 1353

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

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

**参数:**

Z
zengyawen 已提交
1358 1359 1360 1361
| 参数名   | 类型                                   | 必填 | 说明                                     |
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
| index    | number                                 | 是   | 创建图片源时的序号。                     |
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1362 1363 1364 1365

**示例:**

```js
1366
imageSourceApi.getImageInfo(0,(error, imageInfo : image.ImageInfo) => { 
X
xu-rui-w 已提交
1367 1368 1369 1370 1371 1372
    if(error) {
        console.log('getImageInfo failed.');
    } else {
        console.log('getImageInfo succeeded.');
    }
})
X
xiaok 已提交
1373 1374
```

Z
zengyawen 已提交
1375
### getImageInfo
X
xiaok 已提交
1376

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

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

X
xu-rui-w 已提交
1381
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1382 1383 1384

**参数:**

1385
| 参数名   | 类型                                   | 必填 | 说明                                     |
X
xiaok 已提交
1386
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
Z
zengyawen 已提交
1387
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1388 1389 1390 1391

**示例:**

```js
1392
imageSourceApi.getImageInfo((imageInfo : image.ImageInfo) => { 
X
xu-rui-w 已提交
1393
    console.log('Succeeded in obtaining the image information.');
X
xu-rui-w 已提交
1394
})
X
xiaok 已提交
1395 1396
```

Z
zengyawen 已提交
1397
### getImageInfo
X
xiaok 已提交
1398

Z
zengyawen 已提交
1399
getImageInfo(index?: number): Promise\<ImageInfo>
X
xiaok 已提交
1400 1401 1402

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

X
xu-rui-w 已提交
1403
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1404 1405 1406

**参数:**

1407
| 参数名| 类型   | 必填 | 说明                                  |
Z
zengyawen 已提交
1408 1409
| ----- | ------ | ---- | ------------------------------------- |
| index | number | 否   | 创建图片源时的序号,不选择时默认为0。 |
X
xiaok 已提交
1410 1411 1412

**返回值:**

Z
zengyawen 已提交
1413 1414 1415
| 类型                             | 说明                   |
| -------------------------------- | ---------------------- |
| Promise<[ImageInfo](#imageinfo)> | 返回获取到的图片信息。 |
X
xiaok 已提交
1416 1417 1418 1419

**示例:**

```js
1420
import {BusinessError} from '@ohos.base'
X
xiaok 已提交
1421
imageSourceApi.getImageInfo(0)
1422
    .then((imageInfo : image.ImageInfo) => {
X
xu-rui-w 已提交
1423
		console.log('Succeeded in obtaining the image information.');
1424
	}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
1425
		console.log('Failed to obtain the image information.');
X
xu-rui-w 已提交
1426
	})
X
xiaok 已提交
1427 1428
```

Z
zengyawen 已提交
1429
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1430

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

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

X
xu-rui-w 已提交
1435
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1436 1437 1438

 **参数:**

1439
| 参数名  | 类型                                                 | 必填 | 说明                                 |
Z
zengyawen 已提交
1440 1441 1442
| ------- | ---------------------------------------------------- | ---- | ------------------------------------ |
| key     | string                                               | 是   | 图片属性名。                         |
| options | [GetImagePropertyOptions](#getimagepropertyoptions7) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xiaok 已提交
1443 1444 1445

**返回值:**

X
xu-rui-w 已提交
1446 1447
| 类型             | 说明                                                              |
| ---------------- | ----------------------------------------------------------------- |
Z
zengyawen 已提交
1448
| Promise\<string> | Promise实例,用于异步获取图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1449 1450 1451 1452

**示例:**

```js
1453
imageSourceApi.getImageProperty("BitsPerSample")
1454
    .then((data : string) => {
X
xu-rui-w 已提交
1455
		console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1456
	})
X
xiaok 已提交
1457 1458
```

Z
zengyawen 已提交
1459
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1460

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

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

X
xu-rui-w 已提交
1465
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1466 1467 1468

 **参数:**

Z
zengyawen 已提交
1469 1470 1471 1472
| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| key      | string                 | 是   | 图片属性名。                                                 |
| callback | AsyncCallback\<string> | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1473 1474 1475 1476

**示例:**

```js
1477
imageSourceApi.getImageProperty("BitsPerSample",(error, data : string) => { 
X
xu-rui-w 已提交
1478
    if(error) {
X
xu-rui-w 已提交
1479
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1480
    } else {
X
xu-rui-w 已提交
1481
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1482 1483
    }
})
X
xiaok 已提交
1484 1485
```

Z
zengyawen 已提交
1486
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1487

Z
zengyawen 已提交
1488
getImageProperty(key:string, options: GetImagePropertyOptions, callback: AsyncCallback\<string>): void
X
xiaok 已提交
1489 1490 1491

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

X
xu-rui-w 已提交
1492
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1493 1494 1495

**参数:**

X
xu-rui-w 已提交
1496 1497 1498 1499 1500
| 参数名   | 类型                                                 | 必填 | 说明                                                          |
| -------- | ---------------------------------------------------- | ---- | ------------------------------------------------------------- |
| key      | string                                               | 是   | 图片属性名。                                                  |
| options  | [GetImagePropertyOptions](#getimagepropertyoptions7) | 是   | 图片属性,包括图片序号与默认属性值。                          |
| callback | AsyncCallback\<string>                               | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。|
X
xiaok 已提交
1501 1502 1503 1504

**示例:**

```js
1505
let property : image.GetImagePropertyOptions = { index: 0, defaultValue: '9999' }
1506
imageSourceApi.getImageProperty("BitsPerSample",property,(error, data : string) => { 
X
xu-rui-w 已提交
1507
    if(error) {
X
xu-rui-w 已提交
1508
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1509
    } else {
X
xu-rui-w 已提交
1510
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1511 1512
    }
})
X
xiaok 已提交
1513 1514
```

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

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

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

X
xu-rui-w 已提交
1521
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
1532 1533 1534
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
1535 1536 1537 1538

**示例:**

```js
F
fengzewu 已提交
1539
imageSourceApi.modifyImageProperty("ImageWidth", "120").then(() => {
1540
    const w : string = imageSourceApi.getImageProperty("ImageWidth");
F
fengzewu 已提交
1541 1542
    console.info('w', w);
})
X
xu-rui-w 已提交
1543 1544
```

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

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

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

X
xu-rui-w 已提交
1551
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1552 1553 1554 1555 1556 1557 1558

**参数:**

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

**示例:**

```js
X
xu-rui-w 已提交
1564
imageSourceApi.modifyImageProperty("ImageWidth", "120",() => {})
X
xu-rui-w 已提交
1565 1566
```

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

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

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

X
xu-rui-w 已提交
1573
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1574 1575 1576

**参数:**

1577
| 参数名     | 类型        | 必填 | 说明         |
X
xu-rui-w 已提交
1578 1579 1580
| ---------- | ----------- | ---- | ------------ |
| buf        | ArrayBuffer | 是   | 增量数据。   |
| isFinished | boolean     | 是   | 是否更新完。 |
1581 1582
| value      | number      | 是   | 偏移量。     |
| length     | number      | 是   | 数组长。     |
X
xu-rui-w 已提交
1583 1584 1585

**返回值:**

X
xu-rui-w 已提交
1586 1587 1588
| 类型           | 说明                       |
| -------------- | -------------------------- |
| Promise\<void> | Promise实例,异步返回结果。|
X
xu-rui-w 已提交
1589 1590 1591 1592

**示例:**

```js
1593
const array : ArrayBuffer = new ArrayBuffer(100);
F
fengzewu 已提交
1594 1595 1596
imageSourceApi.updateData(array, false, 0, 10).then(data => {
    console.info('Succeeded in updating data.');
})
X
xu-rui-w 已提交
1597 1598 1599
```


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

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

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

X
xu-rui-w 已提交
1606
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1607 1608 1609

**参数:**

1610
| 参数名     | 类型                | 必填 | 说明                 |
X
xu-rui-w 已提交
1611 1612 1613
| ---------- | ------------------- | ---- | -------------------- |
| buf        | ArrayBuffer         | 是   | 增量数据。           |
| isFinished | boolean             | 是   | 是否更新完。         |
1614 1615
| value      | number              | 是   | 偏移量。             |
| length     | number              | 是   | 数组长。             |
1616
| callback   | AsyncCallback\<void> | 是   | 回调表示成功或失败。 |
X
xu-rui-w 已提交
1617 1618 1619 1620

**示例:**

```js
1621
const array : ArrayBuffer = new ArrayBuffer(100);
F
fengzewu 已提交
1622 1623 1624 1625 1626
imageSourceApi.updateData(array, false, 0, 10,(error,data )=> {
    if(data !== undefined){
        console.info('Succeeded in updating data.');     
    }
})
X
xu-rui-w 已提交
1627 1628
```

Z
zengyawen 已提交
1629
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1630

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

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

X
xu-rui-w 已提交
1635
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1636 1637 1638

**参数:**

1639
| 参数名  | 类型                                 | 必填 | 说明       |
Z
zengyawen 已提交
1640 1641 1642 1643 1644 1645 1646 1647
| ------- | ------------------------------------ | ---- | ---------- |
| options | [DecodingOptions](#decodingoptions7) | 否   | 解码参数。 |

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
| Promise\<[PixelMap](#pixelmap7)> | 异步返回Promise对象。 |
X
xiaok 已提交
1648 1649 1650 1651

**示例:**

```js
1652
import {BusinessError} from '@ohos.base'
1653
imageSourceApi.createPixelMap().then((pixelmap : image.PixelMap) => {
X
xu-rui-w 已提交
1654
    console.log('Succeeded in creating pixelmap object through image decoding parameters.');
1655
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
1656
    console.log('Failed to create pixelmap object through image decoding parameters.');
X
xu-rui-w 已提交
1657
})
X
xiaok 已提交
1658 1659
```

Z
zengyawen 已提交
1660
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1661

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

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

X
xu-rui-w 已提交
1666
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1667 1668 1669

**参数:**

1670
| 参数名     | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1671 1672
| -------- | ------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1673 1674 1675 1676

**示例:**

```js
1677
imageSourceApi.createPixelMap((err, pixelmap : image.PixelMap) => {
R
renhongwei 已提交
1678 1679
    console.info('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1680 1681
```

Z
zengyawen 已提交
1682
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1683

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

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

X
xu-rui-w 已提交
1688
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1689 1690 1691

**参数:**

1692
| 参数名   | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1693
| -------- | ------------------------------------- | ---- | -------------------------- |
1694
| options  | [DecodingOptions](#decodingoptions7)  | 是   | 解码参数。                 |
Z
zengyawen 已提交
1695
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1696 1697 1698 1699

**示例:**

```js
1700
let decodingOptions : image.DecodingOptions = {
F
fengzewu 已提交
1701 1702 1703 1704 1705 1706 1707 1708
    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
};
1709
imageSourceApi.createPixelMap(decodingOptions, pixelmap : image.PixelMap => { 
X
xu-rui-w 已提交
1710 1711
    console.log('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1712 1713
```

R
renhongwei 已提交
1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
### createPixelMapList<sup>10+</sup>

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

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

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

**参数:**

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

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
黄开兴 已提交
1732 1733 1734 1735 1736 1737 1738 1739
| Promise<Array<[PixelMap](#pixelmap7)>> | 异步返回PixeMap数组。 |

**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1740
| 62980096| If the operation failed              |
黄开兴 已提交
1741 1742 1743 1744
| 62980103| If the image data unsupport             |
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980118| If the image plugin create failed             |
R
renhongwei 已提交
1745 1746 1747 1748

**示例:**

```js
1749
let decodeOpts : image.DecodingOptions = {
R
renhongwei 已提交
1750 1751 1752 1753
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1754
    desiredPixelFormat: 3,
R
renhongwei 已提交
1755 1756
    index: 0,
};
1757
let pixelmaplist : Array<image.PixelMap> = imageSourceApi.createPixelMapList(decodeOpts);
R
renhongwei 已提交
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
```

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

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

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

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

**参数:**

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

黄开兴 已提交
1774 1775 1776 1777 1778 1779
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1780
| 62980096| If the operation failed              |
黄开兴 已提交
1781 1782 1783 1784 1785
| 62980103| If the image data unsupport             |
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980118| If the image plugin create failed             |

R
renhongwei 已提交
1786 1787 1788
**示例:**

```js
1789
imageSourceApi.createPixelMapList( (pixelmaplist : Array<image.PixelMap>) => {
R
renhongwei 已提交
1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
    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数组。 |

黄开兴 已提交
1809 1810 1811 1812 1813 1814
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1815
| 62980096| If the operation failed              |
黄开兴 已提交
1816 1817 1818 1819 1820
| 62980103| If the image data unsupport             |
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980118| If the image plugin create failed             |

R
renhongwei 已提交
1821 1822 1823
**示例:**

```js
1824
let decodeOpts : image.DecodingOptions = {
R
renhongwei 已提交
1825 1826 1827 1828
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1829
    desiredPixelFormat: 3,
R
renhongwei 已提交
1830 1831
    index: 0,
};
1832
imageSourceApi.createPixelMapList(decodeOpts, (pixelmaplist : Array<image.PixelMap>) => { 
R
renhongwei 已提交
1833 1834 1835 1836
    console.log('Succeeded in creating pixelmaplist object.');
})
```

1837
### getDelayTimeList<sup>10+</sup>
R
renhongwei 已提交
1838

1839
getDelayTimeList(callback: AsyncCallback<Array\<number>>): void;
R
renhongwei 已提交
1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850

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

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

**参数:**

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

黄开兴 已提交
1851 1852 1853 1854 1855 1856
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1857
| 62980096| If the operation failed              |
黄开兴 已提交
1858 1859 1860 1861 1862 1863 1864
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980113| If the image format unknown            |
| 62980116| If the image decode failed            |
| 62980118| If the image plugin create failed             |
| 62980122| If the image decode head abnormal             |

R
renhongwei 已提交
1865 1866 1867
**示例:**

```js
1868
imageSourceApi.getDelayTimeList( (delayTimes : Array<number>) => {
R
renhongwei 已提交
1869 1870 1871 1872
    console.log('Succeeded in getting delay time.');
});
```

1873
### getDelayTimeList<sup>10+</sup>
R
renhongwei 已提交
1874

1875
getDelayTimeList(): Promise<Array\<number>>;
R
renhongwei 已提交
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886

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

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

**返回值:**

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

黄开兴 已提交
1887 1888 1889 1890 1891 1892
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1893
| 62980096| If the operation failed              |
黄开兴 已提交
1894 1895 1896 1897 1898 1899 1900
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980113| If the image format unknown            |
| 62980116| If the image decode failed            |
| 62980118| If the image plugin create failed             |
| 62980122| If the image decode head abnormal             |

R
renhongwei 已提交
1901 1902 1903
**示例:**

```js
1904
let delayTimes : Array<number> = imageSourceApi.getDelayTimeList();
R
renhongwei 已提交
1905 1906 1907 1908
```

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

Z
zengyawen 已提交
1909
getFrameCount(callback: AsyncCallback\<number>): void;
R
renhongwei 已提交
1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920

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

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

**参数:**

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

黄开兴 已提交
1921 1922 1923 1924 1925 1926
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1927
| 62980096| If the operation failed              |
黄开兴 已提交
1928 1929 1930 1931 1932 1933 1934
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980113| If the image format unknown            |
| 62980116| If the image decode failed            |
| 62980118| If the image plugin create failed             |
| 62980122| If the image decode head abnormal             |

R
renhongwei 已提交
1935 1936 1937
**示例:**

```js
1938
imageSourceApi.getFrameCount( (frameCount : number) => {
R
renhongwei 已提交
1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
    console.log('Succeeded in getting frame count.');
});
```

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

getFrameCount(): Promise\<number>;

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

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

**返回值:**

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

1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
**错误码:**

以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980096| If the operation failed              |
| 62980110| If the image source data error              |
| 62980111| If the image source data incomplete            |
| 62980113| If the image format unknown            |
| 62980116| If the image decode failed            |
| 62980118| If the image plugin create failed             |
| 62980122| If the image decode head abnormal             |

R
renhongwei 已提交
1971 1972 1973
**示例:**

```js
1974
let frameCount : number = imageSourceApi.getFrameCount();
R
renhongwei 已提交
1975 1976
```

Z
zengyawen 已提交
1977
### release
X
xiaok 已提交
1978

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

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

X
xu-rui-w 已提交
1983
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1984 1985 1986

**参数:**

1987
| 参数名   | 类型                 | 必填 | 说明                               |
Z
zengyawen 已提交
1988 1989
| -------- | -------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<void> | 是   | 资源释放回调,失败时返回错误信息。 |
X
xiaok 已提交
1990 1991 1992 1993

**示例:**

```js
X
xu-rui-w 已提交
1994 1995 1996
imageSourceApi.release(() => { 
    console.log('release succeeded.');
})
X
xiaok 已提交
1997 1998
```

Z
zengyawen 已提交
1999
### release
X
xiaok 已提交
2000

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

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

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

Z
zengyawen 已提交
2007 2008 2009 2010 2011 2012
**返回值:**

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

X
xiaok 已提交
2013 2014 2015
**示例:**

```js
2016
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2017
imageSourceApi.release().then(()=>{
X
xu-rui-w 已提交
2018
    console.log('Succeeded in releasing the image source instance.');
2019
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2020
    console.log('Failed to release the image source instance.');
X
xu-rui-w 已提交
2021
})
X
xiaok 已提交
2022 2023
```

Z
zengyawen 已提交
2024
## image.createImagePacker
X
xiaok 已提交
2025 2026 2027

createImagePacker(): ImagePacker

Z
zengyawen 已提交
2028
创建ImagePacker实例。
X
xiaok 已提交
2029

X
xu-rui-w 已提交
2030
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2031 2032 2033

**返回值:**

Z
zengyawen 已提交
2034 2035 2036
| 类型                        | 说明                  |
| --------------------------- | --------------------- |
| [ImagePacker](#imagepacker) | 返回ImagePacker实例。 |
X
xiaok 已提交
2037 2038 2039 2040

**示例:**

```js
2041
const imagePackerApi : image.ImagePacker = image.createImagePacker();
X
xiaok 已提交
2042 2043
```

Z
zengyawen 已提交
2044 2045
## ImagePacker

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

Z
zengyawen 已提交
2048 2049
### 属性

X
xu-rui-w 已提交
2050
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
Z
zhang-xiaobo1997 已提交
2051 2052 2053 2054

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

### packing

2058
packing(source: ImageSource, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
X
xiaok 已提交
2059 2060 2061

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

X
xu-rui-w 已提交
2062
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2063 2064 2065

**参数:**

Z
zengyawen 已提交
2066 2067 2068
| 参数名   | 类型                               | 必填 | 说明                               |
| -------- | ---------------------------------- | ---- | ---------------------------------- |
| source   | [ImageSource](#imagesource)        | 是   | 打包的图片源。                     |
X
xu-rui-w 已提交
2069
| option   | [PackingOption](#packingoption)    | 是   | 设置打包参数。                      |
2070
| callback | AsyncCallback\<ArrayBuffer>        | 是   | 获取图片打包回调,返回打包后数据。 |
X
xiaok 已提交
2071 2072 2073 2074

**示例:**

```js
2075 2076 2077
const imageSourceApi : image.ImageSource = image.createImageSource(0);
let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 };
imagePackerApi.packing(imageSourceApi, packOpts, data : ArrayBuffer => {})
X
xiaok 已提交
2078 2079
```

Z
zengyawen 已提交
2080
### packing
X
xiaok 已提交
2081

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

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

X
xu-rui-w 已提交
2086
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2087 2088 2089 2090 2091

**参数:**

| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2092 2093
| source | [ImageSource](#imagesource)     | 是   | 打包的图片源。 |
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。 |
X
xiaok 已提交
2094 2095 2096

**返回值:**

Z
zengyawen 已提交
2097
| 类型                         | 说明                                          |
X
xu-rui-w 已提交
2098 2099
| ---------------------------- | --------------------------------------------- |
| Promise\<ArrayBuffer>        | Promise实例,用于异步获取压缩或打包后的数据。 |
X
xiaok 已提交
2100 2101 2102 2103

**示例:**

```js
2104
import {BusinessError} from '@ohos.base'
2105 2106
const imageSourceApi : image.ImageSource = image.createImageSource(0);
let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 }
X
xu-rui-w 已提交
2107
imagePackerApi.packing(imageSourceApi, packOpts)
2108
    .then( data : ArrayBuffer => {
X
xu-rui-w 已提交
2109
        console.log('packing succeeded.');
2110
	}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2111 2112
	    console.log('packing failed.');
	})
2113 2114
```

2115
### packing<sup>8+</sup>
2116

Z
zengyawen 已提交
2117
packing(source: PixelMap, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
2118 2119 2120

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

X
xu-rui-w 已提交
2121
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
2122 2123 2124 2125 2126 2127 2128

**参数:**

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

**示例:**

```js
2134 2135 2136 2137 2138 2139
const color : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
let bufferArr : Uint8Array = new Uint8Array(color);
let opts : image.InitializationOptions = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts).then((pixelmap : image.image.PixelMap) => {
    let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 }
    imagePackerApi.packing(pixelmap, packOpts, data : ArrayBuffer => { 
F
fengzewu 已提交
2140 2141
        console.log('Succeeded in packing the image.');
    })
X
xu-rui-w 已提交
2142
})
2143 2144
```

2145
### packing<sup>8+</sup>
2146

2147
packing(source: PixelMap, option: PackingOption): Promise\<ArrayBuffer>
2148 2149 2150

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

X
xu-rui-w 已提交
2151
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
2152 2153 2154

**参数:**

Z
zhang-xiaobo1997 已提交
2155 2156
| 参数名 | 类型                            | 必填 | 说明               |
| ------ | ------------------------------- | ---- | ------------------ |
2157
| source | [PixelMap](#pixelmap)           | 是   | 打包的PixelMap源。 |
Z
zhang-xiaobo1997 已提交
2158
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。     |
2159 2160 2161

**返回值:**

X
xu-rui-w 已提交
2162 2163 2164
| 类型                  | 说明                                         |
| --------------------- | -------------------------------------------- |
| Promise\<ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。|
2165 2166 2167 2168

**示例:**

```js
2169
import {BusinessError} from '@ohos.base'
2170 2171 2172 2173 2174
const color : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
let bufferArr : Uint8Array = new Uint8Array(color);
let opts : image.InitializationOptions = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } }
image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
    let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 }
冯泽悟 已提交
2175
    imagePackerApi.packing(pixelmap, packOpts)
2176
        .then( data : ArrayBuffer => {
F
fengzewu 已提交
2177
            console.log('Succeeded in packing the image.');
2178
        }).catch((error : BusinessError) => {
F
fengzewu 已提交
2179 2180
            console.log('Failed to pack the image..');
        })
F
fengzewu 已提交
2181
})
X
xiaok 已提交
2182 2183
```

Z
zengyawen 已提交
2184
### release
X
xiaok 已提交
2185

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

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

X
xu-rui-w 已提交
2190
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2191 2192 2193

**参数:**

Z
zengyawen 已提交
2194 2195 2196
| 参数名   | 类型                 | 必填 | 说明                           |
| -------- | -------------------- | ---- | ------------------------------ |
| callback | AsyncCallback\<void> | 是   | 释放回调,失败时返回错误信息。 |
X
xiaok 已提交
2197 2198 2199 2200

**示例:**

```js
X
xu-rui-w 已提交
2201
imagePackerApi.release(()=>{ 
X
xu-rui-w 已提交
2202
    console.log('Succeeded in releasing image packaging.');
X
xu-rui-w 已提交
2203
})
X
xiaok 已提交
2204 2205
```

Z
zengyawen 已提交
2206
### release
X
xiaok 已提交
2207

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

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

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

Z
zengyawen 已提交
2214 2215
**返回值:**

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

X
xiaok 已提交
2220 2221 2222
**示例:**

```js
2223
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2224
imagePackerApi.release().then(()=>{
X
xu-rui-w 已提交
2225
    console.log('Succeeded in releasing image packaging.');
2226
}).catch((error : BusinessError)=>{ 
X
xu-rui-w 已提交
2227
    console.log('Failed to release image packaging.'); 
X
xu-rui-w 已提交
2228
}) 
X
xiaok 已提交
2229 2230
```

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

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

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

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

**参数:**

2241
| 参数名   | 类型   | 必填 | 说明                   |
Z
zengyawen 已提交
2242 2243 2244
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
Z
zhangqiang183 已提交
2245
| format   | number | 是   | 图像格式,取值为[ImageFormat](#imageformat9)常量(目前仅支持 ImageFormat:JPEG 和 4)。  |
Z
zengyawen 已提交
2246
| capacity | number | 是   | 同时访问的最大图像数。 |
Z
zhang-xiaobo1997 已提交
2247 2248 2249

**返回值:**

Z
zengyawen 已提交
2250 2251 2252
| 类型                             | 说明                                    |
| -------------------------------- | --------------------------------------- |
| [ImageReceiver](#imagereceiver9) | 如果操作成功,则返回ImageReceiver实例。 |
Z
zhang-xiaobo1997 已提交
2253 2254 2255 2256

**示例:**

```js
2257
var receiver image.ImageReceiver = image.createImageReceiver(8192, 8, 2000, 8);
Z
zhang-xiaobo1997 已提交
2258
```
Z
zhang-xiaobo1997 已提交
2259

Z
zhang-xiaobo1997 已提交
2260 2261
## ImageReceiver<sup>9+</sup>

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

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

### 属性

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

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

Z
zhang-xiaobo1997 已提交
2276
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2277

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

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

Z
zengyawen 已提交
2282
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2283 2284 2285

**参数:**

2286
| 参数名   | 类型                   | 必填 | 说明                       |
Z
zengyawen 已提交
2287 2288
| -------- | ---------------------- | ---- | -------------------------- |
| callback | AsyncCallback\<string> | 是   | 回调函数,返回surface id。 |
Z
zhang-xiaobo1997 已提交
2289 2290 2291 2292

**示例:**

```js
2293
receiver.getReceivingSurfaceId((err, id : string) => { 
X
xu-rui-w 已提交
2294 2295 2296 2297 2298 2299
    if(err) {
        console.log('getReceivingSurfaceId failed.');
    } else {
        console.log('getReceivingSurfaceId succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2300 2301
```

Z
zhang-xiaobo1997 已提交
2302
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2303

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

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

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

**返回值:**

Z
zhang-xiaobo1997 已提交
2312 2313 2314
| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<string> | 异步返回surface id。 |
Z
zhang-xiaobo1997 已提交
2315 2316 2317 2318

**示例:**

```js
2319
import {BusinessError} from '@ohos.base'
2320
receiver.getReceivingSurfaceId().then( (id : string) => { 
X
xu-rui-w 已提交
2321
    console.log('getReceivingSurfaceId succeeded.');
2322
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2323 2324
    console.log('getReceivingSurfaceId failed.');
})
Z
zhang-xiaobo1997 已提交
2325 2326
```

Z
zhang-xiaobo1997 已提交
2327
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2328

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

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

Z
zengyawen 已提交
2333
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2334 2335 2336

**参数:**

2337
| 参数名     | 类型                            | 必填 | 说明                     |
Z
zengyawen 已提交
2338 2339
| -------- | ------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回最新图像。 |
Z
zhang-xiaobo1997 已提交
2340 2341 2342 2343

**示例:**

```js
2344
receiver.readLatestImage((err, img : image.Image) => { 
X
xu-rui-w 已提交
2345 2346 2347 2348 2349 2350
    if(err) {
        console.log('readLatestImage failed.');
    } else {
        console.log('readLatestImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2351 2352
```

Z
zhang-xiaobo1997 已提交
2353
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2354

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

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

Z
zengyawen 已提交
2359
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2360 2361 2362 2363 2364

**返回值:**

| 类型                      | 说明               |
| ------------------------- | ------------------ |
2365
| Promise<[Image](#image9)> | 异步返回最新图片。 |
Z
zhang-xiaobo1997 已提交
2366 2367 2368 2369

**示例:**

```js
2370
import {BusinessError} from '@ohos.base'
2371
receiver.readLatestImage().then((img : image.Image) => {
X
xu-rui-w 已提交
2372
    console.log('readLatestImage succeeded.');
2373
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2374 2375
    console.log('readLatestImage failed.');
})
Z
zhang-xiaobo1997 已提交
2376 2377
```

Z
zhang-xiaobo1997 已提交
2378
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2379

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

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

Z
zengyawen 已提交
2384
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2385 2386 2387

**参数:**

2388
| 参数名   | 类型                            | 必填 | 说明                       |
Z
zengyawen 已提交
2389 2390
| -------- | ------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2391 2392 2393 2394

**示例:**

```js
2395
receiver.readNextImage((err, img : image.Image) => { 
X
xu-rui-w 已提交
2396 2397 2398 2399 2400 2401
    if(err) {
        console.log('readNextImage failed.');
    } else {
        console.log('readNextImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2402 2403
```

Z
zhang-xiaobo1997 已提交
2404
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2405

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

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

Z
zengyawen 已提交
2410
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2411 2412 2413 2414 2415

**返回值:**

| 类型                      | 说明                 |
| ------------------------- | -------------------- |
Z
zengyawen 已提交
2416
| Promise<[Image](#image9)> | 异步返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2417 2418 2419 2420

**示例:**

```js
2421
import {BusinessError} from '@ohos.base'
2422
receiver.readNextImage().then((img : image.Image) => {
X
xu-rui-w 已提交
2423
    console.log('readNextImage succeeded.');
2424
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2425 2426
    console.log('readNextImage failed.');
})
Z
zhang-xiaobo1997 已提交
2427 2428
```

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

Z
zhang-xiaobo1997 已提交
2431
on(type: 'imageArrival', callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2432 2433 2434

接收图片时注册回调。

Z
zengyawen 已提交
2435
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2436 2437 2438

**参数:**

2439
| 参数名   | 类型                 | 必填 | 说明                                                   |
Z
zhang-xiaobo1997 已提交
2440
| -------- | -------------------- | ---- | ------------------------------------------------------ |
Z
zengyawen 已提交
2441
| type     | string               | 是   | 注册事件的类型,固定为'imageArrival',接收图片时触发。 |
Z
zhang-xiaobo1997 已提交
2442
| callback | AsyncCallback\<void> | 是   | 注册的事件回调。                                       |
Z
zhang-xiaobo1997 已提交
2443 2444 2445 2446

**示例:**

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

Z
zhang-xiaobo1997 已提交
2450
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2451

Z
zengyawen 已提交
2452
release(callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2453 2454 2455

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

Z
zengyawen 已提交
2456
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2457 2458 2459

**参数:**

2460
| 参数名   | 类型                 | 必填 | 说明                     |
Z
zengyawen 已提交
2461 2462
| -------- | -------------------- | ---- | ------------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数,返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2463 2464 2465 2466

**示例:**

```js
X
xu-rui-w 已提交
2467
receiver.release(() => {})
Z
zhang-xiaobo1997 已提交
2468 2469
```

Z
zhang-xiaobo1997 已提交
2470
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2471

Z
zhang-xiaobo1997 已提交
2472
release(): Promise\<void>
Z
zhang-xiaobo1997 已提交
2473 2474 2475

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

Z
zengyawen 已提交
2476
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2477 2478 2479

**返回值:**

Z
zengyawen 已提交
2480 2481 2482
| 类型           | 说明               |
| -------------- | ------------------ |
| Promise\<void> | 异步返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2483 2484 2485 2486

**示例:**

```js
2487
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2488 2489
receiver.release().then(() => {
    console.log('release succeeded.');
2490
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2491 2492
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2493 2494
```

R
renhongwei 已提交
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
## image.createImageCreator<sup>9+</sup>

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

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

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

**参数:**

2505
| 参数名   | 类型   | 必填 | 说明                   |
R
renhongwei 已提交
2506 2507 2508
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
X
xu-rui-w 已提交
2509
| format   | number | 是   | 图像格式,如YCBCR_422_SP,JPEG。             |
R
renhongwei 已提交
2510 2511 2512 2513 2514 2515
| capacity | number | 是   | 同时访问的最大图像数。 |

**返回值:**

| 类型                           | 说明                                    |
| ------------------------------ | --------------------------------------- |
X
xu-rui-w 已提交
2516
| [ImageCreator](#imagecreator9) | 如果操作成功,则返回ImageCreator实例。 |    
R
renhongwei 已提交
2517 2518 2519 2520

**示例:**

```js
2521
var creator : image.ImageCreator = image.createImageCreator(8192, 8, 4, 8);
R
renhongwei 已提交
2522 2523 2524 2525 2526
```

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

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

### 属性

X
xu-rui-w 已提交
2531
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2532 2533 2534 2535 2536 2537 2538 2539 2540 2541

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

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

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

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

X
xu-rui-w 已提交
2544
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2545 2546 2547

**参数:**

2548
| 参数名        | 类型                                    | 必填 | 说明                 |
R
renhongwei 已提交
2549 2550 2551 2552 2553 2554
| ------------- | ---------------------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<Image>                   | 是   | 回调函数,返回最新图片。 |

**示例:**

```js
2555
creator.dequeueImage((err, img : image.Image) => {
X
xu-rui-w 已提交
2556
    if (err) {
黄开兴 已提交
2557
        console.info('dequeueImage failed.');
X
xu-rui-w 已提交
2558
    }
2559
    console.info('dequeueImage succeeded.');
X
xu-rui-w 已提交
2560
});
R
renhongwei 已提交
2561 2562 2563 2564 2565 2566
```

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

dequeueImage(): Promise\<Image>

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

X
xu-rui-w 已提交
2569
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2570 2571 2572 2573 2574 2575 2576 2577 2578 2579

**返回值:**

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

**示例:**

```js
2580
import {BusinessError} from '@ohos.base'
2581
creator.dequeueImage().then((img : image.Image) => {
X
xu-rui-w 已提交
2582
    console.info('dequeueImage succeeded.');
2583
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2584 2585
    console.log('dequeueImage failed: ' + error);
})
R
renhongwei 已提交
2586 2587
```

X
xu-rui-w 已提交
2588
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2589 2590 2591

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

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

X
xu-rui-w 已提交
2594
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2595 2596 2597

**参数:**

2598
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2599 2600 2601 2602 2603 2604 2605
| ------------- | -------------------------| ---- | -------------------- |
| interface     | Image                    | 是   | 绘制好的buffer图像。 |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
2606
creator.dequeueImage().then((img : image.Image) => {
2607
    //绘制图片
2608 2609
    img.getComponent(4).then(component : image.Component => {
        var bufferArr : Uint8Array = new Uint8Array(component.byteBuffer);
2610 2611 2612 2613 2614 2615 2616
        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
        }
    })
2617 2618 2619 2620 2621 2622
    creator.queueImage(img, (err) => {
        if (err) {
            console.info('queueImage failed: ' + err);
        }
        console.info('queueImage succeeded');
    })
2623 2624
})

R
renhongwei 已提交
2625 2626
```

X
xu-rui-w 已提交
2627
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2628 2629 2630

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

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

X
xu-rui-w 已提交
2633
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2634 2635 2636

**参数:**

2637
| 参数名          | 类型     | 必填 | 说明                |
R
renhongwei 已提交
2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649
| ------------- | --------| ---- | ------------------- |
| interface     | Image   | 是   | 绘制好的buffer图像。 |

**返回值:**

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

**示例:**

```js
2650
import {BusinessError} from '@ohos.base'
2651
creator.dequeueImage().then((img : image.Image) => {
2652
    //绘制图片
2653 2654
    img.getComponent(4).then(component : image.Component => {
        var bufferArr : Uint8Array = new Uint8Array(component.byteBuffer);
2655 2656 2657 2658 2659 2660 2661
        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
        }
    })
2662 2663
    creator.queueImage(img).then(() => {
        console.info('queueImage succeeded.');
2664
    }).catch((error : BusinessError) => {
2665 2666
        console.info('queueImage failed: ' + error);
    })
X
xu-rui-w 已提交
2667
})
2668

R
renhongwei 已提交
2669 2670 2671 2672 2673 2674 2675 2676
```

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

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

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

X
xu-rui-w 已提交
2677
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2678 2679 2680

**参数:**

2681
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2682
| ------------- | -------------------------| ---- | -------------------- |
X
xu-rui-w 已提交
2683
| type          | string                   | 是   | 监听事件类型,如'imageRelease'。 |
R
renhongwei 已提交
2684 2685 2686 2687 2688
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
X
xu-rui-w 已提交
2689 2690 2691 2692 2693 2694
creator.on('imageRelease', (err) => {
    if (err) {
        console.info('on faild' + err);
    }
    console.info('on succeeded');
})
R
renhongwei 已提交
2695 2696 2697 2698 2699 2700 2701 2702
```

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

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

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

X
xu-rui-w 已提交
2703
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2704 2705 2706

**参数:**

2707
| 参数名           | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2708 2709 2710 2711 2712 2713
| ------------- | -------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

```js
X
xu-rui-w 已提交
2714 2715 2716 2717 2718 2719
creator.release((err) => {
    if (err) {
        console.info('release failed: ' + err);
    }
    console.info('release succeeded');
});
R
renhongwei 已提交
2720 2721 2722 2723 2724
```
### release<sup>9+</sup>

release(): Promise\<void>

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

**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2728 2729 2730 2731 2732 2733 2734 2735 2736 2737

**返回值:**

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

**示例:**

```js
2738
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2739 2740
creator.release().then(() => {
    console.info('release succeeded');
2741
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2742 2743
    console.info('release failed');
})
R
renhongwei 已提交
2744 2745
```

Z
zhang-xiaobo1997 已提交
2746
## Image<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2747

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

### 属性

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

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

Z
zhang-xiaobo1997 已提交
2760
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2761

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

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

Z
zengyawen 已提交
2766
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2767 2768 2769

**参数:**

2770
| 参数名        | 类型                                    | 必填 | 说明                 |
Z
zhang-xiaobo1997 已提交
2771
| ------------- | --------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
2772 2773
| componentType | [ComponentType](#componenttype9)        | 是   | 图像的组件类型。     |
| callback      | AsyncCallback<[Component](#component9)> | 是   | 用于返回组件缓冲区。 |
Z
zhang-xiaobo1997 已提交
2774 2775 2776 2777

**示例:**

```js
2778
img.getComponent(4, (err, component : image.Component) => {
X
xu-rui-w 已提交
2779 2780 2781 2782 2783 2784
    if(err) {
        console.log('getComponent failed.');
    } else {
        console.log('getComponent succeeded.');
    }
})
Z
zhang-xiaobo1997 已提交
2785 2786
```

Z
zhang-xiaobo1997 已提交
2787
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2788

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

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

Z
zengyawen 已提交
2793
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2794 2795 2796

**参数:**

2797
| 参数名        | 类型                             | 必填 | 说明             |
Z
zhang-xiaobo1997 已提交
2798
| ------------- | -------------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
2799
| componentType | [ComponentType](#componenttype9) | 是   | 图像的组件类型。 |
Z
zhang-xiaobo1997 已提交
2800 2801 2802 2803 2804

**返回值:**

| 类型                              | 说明                              |
| --------------------------------- | --------------------------------- |
Z
zengyawen 已提交
2805
| Promise<[Component](#component9)> | 用于返回组件缓冲区的promise实例。 |
Z
zhang-xiaobo1997 已提交
2806 2807 2808 2809

**示例:**

```js
2810
img.getComponent(4).then((component : image.Component) => { })
Z
zhang-xiaobo1997 已提交
2811 2812
```

Z
zhang-xiaobo1997 已提交
2813
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2814

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

Z
zengyawen 已提交
2817 2818 2819
释放当前图像并使用callback返回结果。

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

Z
zengyawen 已提交
2821
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2822 2823 2824

**参数:**

2825
| 参数名   | 类型                 | 必填 | 说明           |
Z
zhang-xiaobo1997 已提交
2826 2827
| -------- | -------------------- | ---- | -------------- |
| callback | AsyncCallback\<void> | 是   | 返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2828 2829 2830 2831

**示例:**

```js
X
xu-rui-w 已提交
2832 2833 2834
img.release(() =>{ 
    console.log('release succeeded.');
}) 
Z
zhang-xiaobo1997 已提交
2835 2836
```

Z
zhang-xiaobo1997 已提交
2837
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2838

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

Z
zengyawen 已提交
2841 2842 2843
释放当前图像并使用Promise方式返回结果。

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

Z
zengyawen 已提交
2845
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2846 2847 2848

**返回值:**

Z
zhang-xiaobo1997 已提交
2849 2850 2851
| 类型           | 说明                  |
| -------------- | --------------------- |
| Promise\<void> | promise返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2852 2853 2854 2855

**示例:**

```js
2856
import {BusinessError} from '@ohos.base'
Z
zhang-xiaobo1997 已提交
2857
img.release().then(() =>{
X
xu-rui-w 已提交
2858
    console.log('release succeeded.');
2859
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2860 2861
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2862 2863
```

Z
zengyawen 已提交
2864 2865 2866 2867
## PositionArea<sup>7+</sup>

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

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

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

Z
zengyawen 已提交
2877
## ImageInfo
X
xiaok 已提交
2878

Z
zengyawen 已提交
2879
表示图片信息。
X
xiaok 已提交
2880

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

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

Z
zengyawen 已提交
2888
## Size
X
xiaok 已提交
2889

Z
zengyawen 已提交
2890 2891
表示图片尺寸。

X
xu-rui-w 已提交
2892
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2893 2894 2895 2896 2897 2898 2899

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

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

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

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

2905
| 名称                   |   值   | 说明              |
X
xu-rui-w 已提交
2906 2907 2908
| ---------------------- | ------ | ----------------- |
| UNKNOWN                | 0      | 未知格式。        |
| RGB_565                | 2      | 格式为RGB_565     |
X
xu-rui-w 已提交
2909 2910 2911 2912 2913 2914 2915
| 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 已提交
2916

2917
## AlphaType<sup>9+</sup>
X
xiaok 已提交
2918

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

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

2923
| 名称     |   值   | 说明                    |
Z
zengyawen 已提交
2924 2925 2926
| -------- | ------ | ----------------------- |
| UNKNOWN  | 0      | 未知透明度。            |
| OPAQUE   | 1      | 没有alpha或图片全透明。 |
X
xu-rui-w 已提交
2927 2928
| PREMUL   | 2      | RGB前乘alpha。         |
| UNPREMUL | 3      | RGB不前乘alpha。       |
X
xiaok 已提交
2929

2930
## ScaleMode<sup>9+</sup>
X
xiaok 已提交
2931

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

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

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

X
xu-rui-w 已提交
2941 2942 2943 2944
## SourceOptions<sup>9+</sup>

ImageSource的初始化选项。

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

X
xu-rui-w 已提交
2947 2948 2949 2950 2951
| 名称              | 类型                               | 可读 | 可写 | 说明               |
| ----------------- | ---------------------------------- | ---- | ---- | ------------------ |
| sourceDensity     | number                             | 是   | 是   | ImageSource的密度。|
| sourcePixelFormat | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 图片像素格式。     |
| sourceSize        | [Size](#size)                      | 是   | 是   | 图像像素大小。     |
X
xu-rui-w 已提交
2952 2953


Z
zengyawen 已提交
2954
## InitializationOptions<sup>8+</sup>
X
xiaok 已提交
2955

Z
zengyawen 已提交
2956 2957
PixelMap的初始化选项。

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

X
xu-rui-w 已提交
2960 2961 2962
| 名称                     | 类型                               | 可读 | 可写 | 说明           |
| ------------------------ | ---------------------------------- | ---- | ---- | -------------- |
| alphaType<sup>9+</sup>   | [AlphaType](#alphatype9)           | 是   | 是   | 透明度。       |
X
xu-rui-w 已提交
2963 2964
| editable                 | boolean                            | 是   | 是   | 是否可编辑。   |
| pixelFormat              | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 像素格式。     |
X
xu-rui-w 已提交
2965
| scaleMode<sup>9+</sup>   | [ScaleMode](#scalemode9)           | 是   | 是   | 缩略值。       |
X
xu-rui-w 已提交
2966
| size                     | [Size](#size)                      | 是   | 是   | 创建图片大小。 |
Z
zengyawen 已提交
2967 2968

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

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

X
xu-rui-w 已提交
2972
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
2973 2974 2975

| 名称               | 类型                               | 可读 | 可写 | 说明             |
| ------------------ | ---------------------------------- | ---- | ---- | ---------------- |
2976
| sampleSize         | number                             | 是   | 是   | 缩略图采样大小,当前只能取1。 |
Z
zengyawen 已提交
2977
| rotate             | number                             | 是   | 是   | 旋转角度。       |
2978
| editable           | boolean                            | 是   | 是   | 是否可编辑。当取值为false时,图片不可二次编辑,如crop等操作将失败。  |
Z
zengyawen 已提交
2979
| desiredSize        | [Size](#size)                      | 是   | 是   | 期望输出大小。   |
2980
| desiredRegion      | [Region](#region7)                 | 是   | 是   | 解码区域。       |
Z
zengyawen 已提交
2981
| desiredPixelFormat | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 解码的像素格式。 |
X
xu-rui-w 已提交
2982
| index              | number                             | 是   | 是   | 解码图片序号。   |
X
xu-rui-w 已提交
2983
| fitDensity<sup>9+</sup> | number                        | 是   | 是   | 图像像素密度,单位为ppi。   |
Z
zengyawen 已提交
2984

2985
## Region<sup>7+</sup>
Z
zengyawen 已提交
2986 2987 2988

表示区域信息。

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

2991 2992 2993 2994 2995
| 名称 | 类型          | 可读 | 可写 | 说明         |
| ---- | ------------- | ---- | ---- | ------------ |
| size | [Size](#size) | 是   | 是   | 区域大小。   |
| x    | number        | 是   | 是   | 区域横坐标。 |
| y    | number        | 是   | 是   | 区域纵坐标。 |
Z
zengyawen 已提交
2996 2997 2998 2999 3000

## PackingOption

表示图片打包选项。

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

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

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

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

X
xu-rui-w 已提交
3013
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023

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

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

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

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

3026
| 名称              |   值                    | 说明                     |
X
xu-rui-w 已提交
3027 3028 3029 3030 3031 3032 3033
| ----------------- | ----------------------- | ------------------------ |
| BITS_PER_SAMPLE   | "BitsPerSample"         | 每个像素比特数。         |
| ORIENTATION       | "Orientation"           | 图片方向。               |
| IMAGE_LENGTH      | "ImageLength"           | 图片长度。               |
| IMAGE_WIDTH       | "ImageWidth"            | 图片宽度。               |
| GPS_LATITUDE      | "GPSLatitude"           | 图片纬度。               |
| GPS_LONGITUDE     | "GPSLongitude"          | 图片经度。               |
X
xu-rui-w 已提交
3034 3035
| GPS_LATITUDE_REF  | "GPSLatitudeRef"        | 纬度引用,例如N或S。    |
| GPS_LONGITUDE_REF | "GPSLongitudeRef"       | 经度引用,例如W或E。    |
3036 3037 3038 3039 3040 3041 3042 3043 3044 3045
| DATE_TIME_ORIGINAL<sup>9+</sup> | "DateTimeOriginal" | 拍摄时间,例如2022:09:06 15:48:00。当前为只读属性。     |
| EXPOSURE_TIME<sup>9+</sup>      | "ExposureTime"     | 曝光时间,例如1/33 sec。当前为只读属性。 |
| SCENE_TYPE<sup>9+</sup>         | "SceneType"        | 拍摄场景模式,例如人像、风光、运动、夜景等。当前为只读属性。      |
| ISO_SPEED_RATINGS<sup>9+</sup>  | "ISOSpeedRatings"  | ISO感光度,例如400。当前为只读属性。      |
| F_NUMBER<sup>9+</sup>           | "FNumber"          | 光圈值,例如f/1.8。当前为只读属性。      |
| DATE_TIME<sup>10+</sup>                  | "DateTime"             | 日期时间,当前为只读属性。                |
| GPS_TIME_STAMP<sup>10+</sup>             | "GPSTimeStamp"         | GPS时间戳,当前为只读属性。         |
| GPS_DATE_STAMP<sup>10+</sup>             | "GPSDateStamp"         | GPS日期戳,当前为只读属性。          |
| IMAGE_DESCRIPTION<sup>10+</sup>          | "ImageDescription"     | 图像信息描述,当前为只读属性。               |
| MAKE<sup>10+</sup>                       | "Make"                 | 生产商,当前为只读属性。                  |
3046
| MODEL<sup>10+</sup>                      | "Model"                | 设备型号,当前为只读属性。                  |
3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064
| PHOTO_MODE<sup>10+</sup>                 | "PhotoMode "           | 拍照模式,当前为只读属性。              |
| SENSITIVITY_TYPE<sup>10+</sup>           | "SensitivityType"      | 灵敏度类型,当前为只读属性。             |
| STANDARD_OUTPUT_SENSITIVITY<sup>10+</sup>           | "StandardOutputSensitivity"          | 标准输出灵敏度,当前为只读属性。    |
| RECOMMENDED_EXPOSURE_INDEX<sup>10+</sup>            | "RecommendedExposureIndex"          | 推荐曝光指数,当前为只读属性。    |
| ISO_SPEED<sup>10+</sup>                             | "ISOSpeedRatings"          | ISO速度等级,当前为只读属性。    |
| APERTURE_VALUE<sup>10+</sup>             | "ApertureValue"            | 光圈值,当前为只读属性。    |
| EXPOSURE_BIAS_VALUE<sup>10+</sup>        | "ExposureBiasValue"        | 曝光偏差值,当前为只读属性。    |
| METERING_MODE<sup>10+</sup>              | "MeteringMode"             | 测光模式,当前为只读属性。    |
| LIGHT_SOURCE<sup>10+</sup>               | "LightSource"              | 光源,当前为只读属性。    |
| FLASH <sup>10+</sup>                     | "Flash"                    | 闪光灯,记录闪光灯状态,当前为只读属性。    |
| FOCAL_LENGTH <sup>10+</sup>              | "FocalLength"              | 焦距,当前为只读属性。    |
| USER_COMMENT <sup>10+</sup>               | "UserComment"              | 用户注释,当前为只读属性。    |
| PIXEL_X_DIMENSION <sup>10+</sup>          | "PixelXDimension"          | 像素X尺寸,当前为只读属性。   |
| PIXEL_Y_DIMENSION<sup>10+</sup>           | "PixelYDimension"          | 像素Y尺寸,当前为只读属性。    |
| WHITE_BALANCE <sup>10+</sup>              | "WhiteBalance"             | 白平衡,当前为只读属性。    |
| FOCAL_LENGTH_IN_35_MM_FILM <sup>10+</sup> | "FocalLengthIn35mmFilm"    | 焦距35毫米胶片,当前为只读属性。    |
| CAPTURE_MODE <sup>10+</sup>               | "HwMnoteCaptureMode"       | 捕获模式,当前为只读属性。    |
| PHYSICAL_APERTURE <sup>10+</sup>          | "HwMnotePhysicalAperture"  | 物理孔径,光圈大小,当前为只读属性。   |
3065

Z
zhang-xiaobo1997 已提交
3066
## ImageFormat<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3067 3068 3069

枚举,图片格式。

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

3072
| 名称         |   值   | 说明                 |
Z
zengyawen 已提交
3073 3074 3075
| ------------ | ------ | -------------------- |
| YCBCR_422_SP | 1000   | YCBCR422半平面格式。 |
| JPEG         | 2000   | JPEG编码格式。       |
Z
zhang-xiaobo1997 已提交
3076

Z
zengyawen 已提交
3077
## ComponentType<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3078 3079 3080

枚举,图像的组件类型。

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

3083
| 名称  |   值   | 说明        |
Z
zhang-xiaobo1997 已提交
3084 3085 3086 3087
| ----- | ------ | ----------- |
| YUV_Y | 1      | 亮度信息。  |
| YUV_U | 2      | 色度信息。  |
| YUV_V | 3      | 色度信息。  |
X
xu-rui-w 已提交
3088
| JPEG  | 4      | JPEG 类型。 |
Z
zhang-xiaobo1997 已提交
3089

Z
zengyawen 已提交
3090
## Component<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3091 3092 3093

描述图像颜色分量。

X
xu-rui-w 已提交
3094
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
3095 3096 3097

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

3103 3104 3105
## 补充说明
### SVG标签说明

黄开兴 已提交
3106
从API version 10开始支持SVG标签,使用版本为(SVG) 1.1,当前支持的标签列表有:
3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144
- 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