js-apis-image.md 112.3 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

10
```ts
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
```ts
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
```ts
69
import {BusinessError} from '@ohos.base'
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 } }
73
image.createPixelMap(color, opts, (error : BusinessError, pixelmap : image.PixelMap) => {
X
xu-rui-w 已提交
74 75 76 77 78 79
    if(error) {
        console.log('Failed to create pixelmap.');
    } else {
        console.log('Succeeded in creating pixelmap.');
    }
})
X
xiaok 已提交
80 81
```

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

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

86
### 属性
Z
zengyawen 已提交
87

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

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

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

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

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

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

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

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
155
### readPixels<sup>7+</sup>
X
xiaok 已提交
156

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
192
### readPixels<sup>7+</sup>
X
xiaok 已提交
193

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

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

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

**参数:**

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

**示例:**

209 210
```ts
import {BusinessError} from '@ohos.base'
211 212 213
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 } }
214
image.createPixelMap(color, opts, (err : BusinessError, pixelmap : image.PixelMap) => {
X
xu-rui-w 已提交
215 216 217
    if(pixelmap == undefined){
        console.info('createPixelMap failed.');
    } else {
218
        const area : image.PositionArea = { pixels: new ArrayBuffer(8),
X
xu-rui-w 已提交
219 220 221 222 223 224 225
            offset: 0,
            stride: 8,
            region: { size: { height: 1, width: 2 }, x: 0, y: 0 }};
        pixelmap.readPixels(area, () => {
            console.info('readPixels success');
        })
    }
226
})
X
xiaok 已提交
227 228
```

Z
zengyawen 已提交
229
### writePixels<sup>7+</sup>
X
xiaok 已提交
230

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

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

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

237
**参数:**
X
xiaok 已提交
238

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

**返回值:**

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

**示例:**

251
```ts
252
import {BusinessError} from '@ohos.base'
253 254 255
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 } }
256
image.createPixelMap(color, opts)
257
    .then( (pixelmap : image.PixelMap)  => {
258
        if (pixelmap == undefined) {
X
xu-rui-w 已提交
259
            console.info('createPixelMap failed.');
260
        }
261
        const area : image.PositionArea = { pixels: new ArrayBuffer(8),
262 263 264 265
            offset: 0,
            stride: 8,
            region: { size: { height: 1, width: 2 }, x: 0, y: 0 }
        }
266
        let bufferArr : Uint8Array = new Uint8Array(area.pixels);
267
        for (let i = 0; i < bufferArr.length; i++) {
268 269 270 271
            bufferArr[i] = i + 1;
        }

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

Z
zengyawen 已提交
279
### writePixels<sup>7+</sup>
X
xiaok 已提交
280

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

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

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

287
**参数:**
X
xiaok 已提交
288

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

**示例:**

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

Z
zengyawen 已提交
316
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
317

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

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

X
xu-rui-w 已提交
322
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
323 324 325

**参数:**

Z
zengyawen 已提交
326 327 328
| 参数名 | 类型        | 必填 | 说明           |
| ------ | ----------- | ---- | -------------- |
| src    | ArrayBuffer | 是   | 图像像素数据。 |
X
xiaok 已提交
329 330 331

**返回值:**

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

**示例:**

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

Z
zengyawen 已提交
352
### writeBufferToPixels<sup>7+</sup>
X
xiaok 已提交
353

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

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

X
xu-rui-w 已提交
358
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
359 360 361

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
386
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
387

Z
zengyawen 已提交
388
getImageInfo(): Promise\<ImageInfo>
X
xiaok 已提交
389 390 391

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

X
xu-rui-w 已提交
392
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
393 394 395

**返回值:**

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

**示例:**

402
```ts
403 404 405
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 已提交
406 407 408
    if (pixelmap == undefined) {
        console.error("Failed to obtain the image pixel map information.");
    }
409
    pixelmap.getImageInfo().then((imageInfo : image.ImageInfo) => {
F
fengzewu 已提交
410 411 412 413 414 415 416 417
        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 已提交
418 419
```

Z
zengyawen 已提交
420
### getImageInfo<sup>7+</sup>
X
xiaok 已提交
421

Z
zengyawen 已提交
422
getImageInfo(callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
423 424 425

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

X
xu-rui-w 已提交
426
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
427 428 429

**参数:**

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

**示例:**

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

Z
zengyawen 已提交
455
### getBytesNumberPerRow<sup>7+</sup>
X
xiaok 已提交
456

Z
zengyawen 已提交
457
getBytesNumberPerRow(): number
X
xiaok 已提交
458 459 460

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

X
xu-rui-w 已提交
461
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
462 463 464

**返回值:**

Z
zengyawen 已提交
465 466 467
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的行字节数。 |
X
xiaok 已提交
468 469 470

**示例:**

471 472
```ts
import {BusinessError} from '@ohos.base'
473 474 475
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 } }
476
image.createPixelMap(color, opts, (err : BusinessError, pixelmap : image.PixelMap) => {
477
    let rowCount : number = pixelmap.getBytesNumberPerRow();
X
xu-rui-w 已提交
478
})
X
xiaok 已提交
479 480
```

Z
zengyawen 已提交
481
### getPixelBytesNumber<sup>7+</sup>
X
xiaok 已提交
482

Z
zengyawen 已提交
483
getPixelBytesNumber(): number
X
xiaok 已提交
484 485 486

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

X
xu-rui-w 已提交
487
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
488 489 490

**返回值:**

Z
zengyawen 已提交
491 492 493
| 类型   | 说明                 |
| ------ | -------------------- |
| number | 图像像素的总字节数。 |
X
xiaok 已提交
494 495 496

**示例:**

497
```ts
498
let pixelBytesNumber : number = pixelmap.getPixelBytesNumber();
X
xiaok 已提交
499 500
```

X
xu-rui-w 已提交
501 502 503 504
### getDensity<sup>9+</sup>

getDensity():number

X
xu-rui-w 已提交
505
获取当前图像像素的密度。
X
xu-rui-w 已提交
506 507 508 509 510

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

**返回值:**

X
xu-rui-w 已提交
511 512 513
| 类型   | 说明            |
| ------ | --------------- |
| number | 图像像素的密度。|
X
xu-rui-w 已提交
514 515 516

**示例:**

517
```ts
518
let getDensity : number = pixelmap.getDensity();
X
xu-rui-w 已提交
519 520 521 522 523 524
```

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

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

X
xu-rui-w 已提交
525
通过设置透明比率来让PixelMap达到对应的透明效果,使用callback形式返回。
X
xu-rui-w 已提交
526 527 528 529 530 531 532 533 534 535 536 537

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

**参数:**

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

**示例:**

538 539 540 541
```ts
import {BusinessError} from '@ohos.base'
let rate = 0.5;
pixelmap.opacity(rate, (err : BusinessError) => {
F
fengzewu 已提交
542 543 544 545 546 547 548
	if (err) {
        console.error("Failed to set opacity.");
        return;
    } else {
        console.log("Succeeded in setting opacity.");
	}
})
X
xu-rui-w 已提交
549 550 551 552 553 554
```

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

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

X
xu-rui-w 已提交
555
通过设置透明比率来让PixelMap达到对应的透明效果,使用Promise形式返回。
X
xu-rui-w 已提交
556 557 558 559 560 561 562

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                        |
| ------ | ------ | ---- | --------------------------- |
X
xu-rui-w 已提交
563
| rate   | number | 是   | 透明比率的值,取值范围:0-1。|
X
xu-rui-w 已提交
564 565 566 567 568 569 570 571 572

**返回值:**

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

**示例:**

573
```ts
F
fengzewu 已提交
574
async function Demo() {
F
fengzewu 已提交
575
    await pixelmap.opacity(0.5);
X
xu-rui-w 已提交
576
}
X
xu-rui-w 已提交
577 578 579 580 581 582
```

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

createAlphaPixelmap(): Promise\<PixelMap>

X
xu-rui-w 已提交
583
根据Alpha通道的信息,来生成一个仅包含Alpha通道信息的pixelmap,可用于阴影效果,使用Promise形式返回。
X
xu-rui-w 已提交
584 585 586 587 588 589 590 591 592 593 594

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

**返回值:**

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

**示例:**

595
```ts
F
fengzewu 已提交
596
async function Demo() {
F
fengzewu 已提交
597 598
    await pixelmap.createAlphaPixelmap();
}   
X
xu-rui-w 已提交
599 600 601 602 603 604
```

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

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

X
xu-rui-w 已提交
605
根据Alpha通道的信息,来生成一个仅包含Alpha通道信息的pixelmap,可用于阴影效果,使用callback形式返回。
X
xu-rui-w 已提交
606 607 608 609 610

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

**参数:**

X
xu-rui-w 已提交
611 612 613
| 参数名   | 类型                     | 必填 | 说明                     |
| -------- | ------------------------ | ---- | ------------------------ |
| callback | AsyncCallback\<PixelMap> | 是   | 获取回调,异步返回结果。 |
X
xu-rui-w 已提交
614 615 616

**示例:**

617 618 619
```ts
import {BusinessError} from '@ohos.base'
pixelmap.createAlphaPixelmap((err : BusinessError, alphaPixelMap : image.PixelMap) => {
F
fengzewu 已提交
620 621 622 623 624 625
    if (alphaPixelMap == undefined) {
        console.info('Failed to obtain new pixel map.');
    } else {
        console.info('Succeed in obtaining new pixel map.');
    }
})
X
xu-rui-w 已提交
626 627 628 629 630 631
```

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

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

X
xu-rui-w 已提交
632
根据输入的宽高对图片进行缩放,使用callback形式返回。
X
xu-rui-w 已提交
633 634 635 636 637

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

**参数:**

X
xu-rui-w 已提交
638 639 640 641 642
| 参数名   | 类型                 | 必填 | 说明                            |
| -------- | -------------------- | ---- | ------------------------------- |
| x        | number               | 是   | 宽度的缩放值,其值为输入的倍数。|
| y        | number               | 是   | 高度的缩放值,其值为输入的倍数。|
| callback | AsyncCallback\<void> | 是   | 获取回调,失败时返回错误信息。  |
X
xu-rui-w 已提交
643 644 645

**示例:**

646
```ts
F
fengzewu 已提交
647
async function Demo() {
F
fengzewu 已提交
648
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
649
}
X
xu-rui-w 已提交
650 651 652 653 654 655
```

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

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

X
xu-rui-w 已提交
656
根据输入的宽高对图片进行缩放,使用Promise形式返回。
X
xu-rui-w 已提交
657 658 659 660 661

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

**参数:**

X
xu-rui-w 已提交
662 663 664 665
| 参数名 | 类型   | 必填 | 说明                            |
| ------ | ------ | ---- | ------------------------------- |
| x      | number | 是   | 宽度的缩放值,其值为输入的倍数。|
| y      | number | 是   | 高度的缩放值,其值为输入的倍数。|
X
xu-rui-w 已提交
666 667 668

**返回值:**

X
xu-rui-w 已提交
669 670 671
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
672 673 674

**示例:**

675
```ts
F
fengzewu 已提交
676
async function Demo() {
F
fengzewu 已提交
677
	await pixelmap.scale(2.0, 1.0);
X
xu-rui-w 已提交
678
}
X
xu-rui-w 已提交
679 680 681 682 683 684
```

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

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

X
xu-rui-w 已提交
685
根据输入的坐标对图片进行位置变换,使用callback形式返回。
X
xu-rui-w 已提交
686 687 688 689 690 691 692 693 694 695 696 697 698

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

**参数:**

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

**示例:**

699
```ts
F
fengzewu 已提交
700
async function Demo() {
F
fengzewu 已提交
701
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
702
}
X
xu-rui-w 已提交
703 704 705 706 707 708
```

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

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

X
xu-rui-w 已提交
709
根据输入的坐标对图片进行位置变换,使用Promise形式返回。
X
xu-rui-w 已提交
710 711 712 713 714 715 716 717 718 719 720 721

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
722 723 724
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
725 726 727

**示例:**

728
```ts
F
fengzewu 已提交
729
async function Demo() {
F
fengzewu 已提交
730
	await pixelmap.translate(3.0, 1.0);
X
xu-rui-w 已提交
731
}
X
xu-rui-w 已提交
732 733 734 735 736 737
```

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

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

X
xu-rui-w 已提交
738
根据输入的角度对图片进行旋转,使用callback形式返回。
X
xu-rui-w 已提交
739 740 741 742 743 744 745 746 747 748 749 750

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

**参数:**

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

**示例:**

751 752 753 754
```ts
import {BusinessError} from '@ohos.base'
let angle = 90.0;
pixelmap.rotate(angle, (err : BusinessError) => {
755
  if (err) {
Y
yaozhupeng 已提交
756 757 758 759 760 761
        console.error("Failed to set rotation.");
        return;
    } else {
        console.log("Succeeded in setting rotation.");
	}
})
X
xu-rui-w 已提交
762 763 764 765 766 767
```

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

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

X
xu-rui-w 已提交
768
根据输入的角度对图片进行旋转,使用Promise形式返回。
X
xu-rui-w 已提交
769 770 771 772 773 774 775 776 777 778 779

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
780 781 782
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
783 784 785

**示例:**

786
```ts
F
fengzewu 已提交
787
async function Demo() {
F
fengzewu 已提交
788
	await pixelmap.rotate(90.0);
X
xu-rui-w 已提交
789
}
X
xu-rui-w 已提交
790 791 792 793 794 795
```

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

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

X
xu-rui-w 已提交
796
根据输入的条件对图片进行翻转,使用callback形式返回。
X
xu-rui-w 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809

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

**参数:**

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

**示例:**

810
```ts
F
fengzewu 已提交
811
async function Demo() {
F
fengzewu 已提交
812
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
813
}
X
xu-rui-w 已提交
814 815 816 817 818 819
```

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

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

X
xu-rui-w 已提交
820
根据输入的条件对图片进行翻转,使用Promise形式返回。
X
xu-rui-w 已提交
821 822 823 824 825 826 827 828 829 830 831 832

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

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
833 834 835
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
836 837 838

**示例:**

839
```ts
F
fengzewu 已提交
840
async function Demo() {
F
fengzewu 已提交
841
	await pixelmap.flip(false, true);
X
xu-rui-w 已提交
842
}
X
xu-rui-w 已提交
843 844 845 846 847 848
```

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

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

X
xu-rui-w 已提交
849
根据输入的尺寸对图片进行裁剪,使用callback形式返回。
X
xu-rui-w 已提交
850 851 852 853 854 855 856

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

**参数:**

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

**示例:**

862
```ts
F
fengzewu 已提交
863
async function Demo() {
864
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } } as image.Region);
X
xu-rui-w 已提交
865
}
X
xu-rui-w 已提交
866 867 868 869 870 871
```

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

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

X
xu-rui-w 已提交
872
根据输入的尺寸对图片进行裁剪,使用Promise形式返回。
X
xu-rui-w 已提交
873 874 875 876 877

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

**参数:**

X
xu-rui-w 已提交
878 879 880
| 参数名 | 类型               | 必填 | 说明        |
| ------ | ------------------ | ---- | ----------- |
| region | [Region](#region7) | 是   | 裁剪的尺寸。|
X
xu-rui-w 已提交
881 882 883

**返回值:**

X
xu-rui-w 已提交
884 885 886
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
887 888 889

**示例:**

890
```ts
F
fengzewu 已提交
891
async function Demo() {
892
	await pixelmap.crop({ x: 0, y: 0, size: { height: 100, width: 100 } } as image.Region);
X
xu-rui-w 已提交
893
}
X
xu-rui-w 已提交
894 895
```

F
fengzewu 已提交
896 897 898 899 900 901 902 903 904 905 906 907 908 909
### getColorSpace<sup>10+</sup>

getColorSpace(): colorSpaceManager.ColorSpaceManager

获取图像广色域信息。

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

**返回值:**

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

黄开兴 已提交
910 911 912 913 914 915 916 917 918 919
**错误码:**

以下错误码的详细介绍请参见[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 已提交
920 921
**示例:**

922
```ts
F
fengzewu 已提交
923 924
import colorSpaceManager from '@ohos.graphics.colorSpaceManager';
async function Demo() {
925
    let csm : Object = pixelmap.getColorSpace();
F
fengzewu 已提交
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
}
```

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

setColorSpace(colorSpace: colorSpaceManager.ColorSpaceManager): void

设置图像广色域信息。

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

**参数:**

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

黄开兴 已提交
943 944 945 946 947 948 949 950 951
**错误码:**

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

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

黄开兴 已提交
952 953
**示例:**

954
```ts
F
fengzewu 已提交
955 956
import colorSpaceManager from '@ohos.graphics.colorSpaceManager';
async function Demo() {
957
    let colorSpaceName = colorSpaceManager.ColorSpace.SRGB;
958
    let csm : colorSpaceManager.ColorSpaceManager = colorSpaceManager.create(colorSpaceName);
F
fengzewu 已提交
959 960 961 962
    pixelmap.setColorSpace(csm);
}
```

Z
zengyueyang 已提交
963 964 965 966 967 968 969 970 971 972 973 974 975 976
### marshalling<sup>10+</sup>

marshalling(sequence: rpc.MessageSequence): void

将PixelMap序列化后写入MessageSequence。

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

**参数:**

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

977 978
**错误码:**

黄开兴 已提交
979
以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)
980 981 982 983 984 985

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

Z
zengyueyang 已提交
986 987
**示例:**

988
```ts
Z
zengyueyang 已提交
989 990
import image from '@ohos.multimedia.image'
import rpc from '@ohos.rpc'
991
class MySequence implements rpc.Parcelable {
Z
zengyueyang 已提交
992
    pixel_map;
993
    constructor(pixelmap : image.PixelMap) {
Z
zengyueyang 已提交
994 995
        this.pixel_map = pixelmap;
    }
996
    marshalling(messageSequence : rpc.MessageSequence) {
Z
zengyueyang 已提交
997 998 999
        this.pixel_map.marshalling(messageSequence);
        return true;
    }
1000
    unmarshalling(messageSequence : rpc.MessageSequence) {
1001 1002
        let pixelParcel : image.PixelMap = await image.createPixelMap(new ArrayBuffer(96), {size: { height:4, width: 6}});
        await pixelParcel.unmarshalling(messageSequence).then(async (pixelMap : image.PixelMap) => {
1003
            this.pixel_map = pixelMap;
Z
zengyueyang 已提交
1004 1005 1006 1007 1008
        })
        return true;
    }
}
async function Demo() {
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
   const color : ArrayBuffer = new ArrayBuffer(96);
   let bufferArr : Uint8Array = new Uint8Array(color);
   for (let i = 0; i < bufferArr.length; i++) {
      bufferArr[i] = 0x80;
   }
   let opts : image.InitializationOptions = {
      editable: true,
      pixelFormat: 2,
      size: { height: 4, width: 6 },
      alphaType: 1
   }
1020
   let pixelMap : image.PixelMap | undefined = undefined;
1021 1022 1023
   await image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
      pixelMap = pixelmap;
   })
1024 1025 1026 1027 1028
   if (pixelMap != undefined) {
     let parcelable : MySequence = new MySequence(pixelMap);
     let data : rpc.MessageSequence = rpc.MessageSequence.create();
     data.writeParcelable(parcelable : rpc.Parcelable);
   }
Z
zengyueyang 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
}
```

### 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对象。 |

1052 1053
**错误码:**

黄开兴 已提交
1054
以下错误码的详细介绍请参见[Image错误码](../errorcodes/errorcode-image.md)
1055 1056 1057 1058 1059

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
| 62980115 | If the input parameter invalid              |
| 62980097 | If the ipc error              |
1060
| 62980096 | If fail to create async work            |
1061

Z
zengyueyang 已提交
1062 1063
**示例:**

1064
```ts
Z
zengyueyang 已提交
1065 1066
import image from '@ohos.multimedia.image'
import rpc from '@ohos.rpc'
1067
class MySequence implements rpc.Parcelable {
Z
zengyueyang 已提交
1068
    pixel_map;
1069
    constructor(pixelmap : image.PixelMap) {
Z
zengyueyang 已提交
1070 1071
        this.pixel_map = pixelmap;
    }
1072
    marshalling(messageSequence : rpc.MessageSequence) {
Z
zengyueyang 已提交
1073 1074 1075
        this.pixel_map.marshalling(messageSequence);
        return true;
    }
1076
    unmarshalling(messageSequence : rpc.MessageSequence) {
1077 1078
        let pixelParcel : image.PixelMap = await image.createPixelMap(new ArrayBuffer(96), {size: { height:4, width: 6}});
        await pixelParcel.unmarshalling(messageSequence).then(async (pixelMap : image.PixelMap) => {
1079
            this.pixel_map = pixelMap;
Z
zengyueyang 已提交
1080 1081 1082 1083 1084
        })
        return true;
    }
}
async function Demo() {
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
   const color : ArrayBuffer = new ArrayBuffer(96);
   let bufferArr : Uint8Array = new Uint8Array(color);
   for (let i = 0; i < bufferArr.length; i++) {
      bufferArr[i] = 0x80;
   }
   let opts : image.InitializationOptions = {
      editable: true,
      pixelFormat: 2,
      size: { height: 4, width: 6 },
      alphaType: 1
   }
1096
   let pixelMap : image.PixelMap | undefined = undefined;
1097 1098 1099
   await image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
      pixelMap = pixelmap;
   })
1100 1101 1102 1103 1104
   if (pixelMap != undefined) {
     let ret : MySequence = new MySequence(pixelMap);
     let data : rpc.MessageSequence = rpc.MessageSequence.create();
     await data.readParcelable(ret : rpc.Parcelable);
   }
Z
zengyueyang 已提交
1105 1106 1107
}
```

Z
zengyawen 已提交
1108
### release<sup>7+</sup>
X
xiaok 已提交
1109

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

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

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

Z
zengyawen 已提交
1116
**返回值:**
X
xiaok 已提交
1117

X
xu-rui-w 已提交
1118 1119 1120
| 类型           | 说明                            |
| -------------- | ------------------------------- |
| Promise\<void> | Promise实例,异步返回释放结果。 |
X
xiaok 已提交
1121 1122 1123

**示例:**

1124
```ts
1125
import {BusinessError} from '@ohos.base'
F
fengzewu 已提交
1126 1127
pixelmap.release().then(() => {
	console.log('Succeeded in releasing pixelmap object.');
1128
}).catch((error : BusinessError) => {
F
fengzewu 已提交
1129
	console.log('Failed to release pixelmap object.');
X
xu-rui-w 已提交
1130
})
X
xiaok 已提交
1131 1132
```

Z
zengyawen 已提交
1133
### release<sup>7+</sup>
X
xiaok 已提交
1134

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

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

X
xu-rui-w 已提交
1139
**系统能力:** SystemCapability.Multimedia.Image.Core
X
xiaok 已提交
1140 1141 1142

**参数:**

1143
| 参数名   | 类型                 | 必填 | 说明               |
Z
zengyawen 已提交
1144 1145
| -------- | -------------------- | ---- | ------------------ |
| callback | AsyncCallback\<void> | 是   | 异步返回释放结果。 |
X
xiaok 已提交
1146 1147 1148

**示例:**

1149
```ts
F
fengzewu 已提交
1150 1151
pixelmap.release(() => {
    console.log('Succeeded in releasing pixelmap object.');
X
xu-rui-w 已提交
1152
})
X
xiaok 已提交
1153 1154
```

Z
zengyawen 已提交
1155
## image.createImageSource
X
xiaok 已提交
1156

Z
zengyawen 已提交
1157
createImageSource(uri: string): ImageSource
X
xiaok 已提交
1158

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

X
xu-rui-w 已提交
1161
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1162 1163 1164

**参数:**

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

**返回值:**

1171 1172 1173
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1174 1175 1176

**示例:**

1177
```ts
F
fengzewu 已提交
1178
//Stage模型
1179
const context : Context = getContext(this);
1180
const path : string = context.cacheDir + "/test.jpg";
1181
const imageSourceApi : image.ImageSource = image.createImageSource(path);
F
fengzewu 已提交
1182 1183
```

1184
```ts
F
fengzewu 已提交
1185 1186 1187
//FA模型
import featureAbility from '@ohos.ability.featureAbility';

1188
const context : _Context = featureAbility.getContext();
1189
const path : string = context.getCacheDir() + "/test.jpg";
1190
const imageSourceApi : image.ImageSource = image.createImageSource(path);
X
xiaok 已提交
1191 1192
```

X
xu-rui-w 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
## image.createImageSource<sup>9+</sup>

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

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

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
1205
| uri     | string                          | 是   | 图片路径,当前仅支持应用沙箱路径。</br>当前支持格式有:.jpg .png .gif .bmp .webp RAW [SVG<sup>10+</sup>](#svg标签说明)。 |
1206
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215

**返回值:**

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

**示例:**

1216 1217
```ts
let sourceOptions : image.SourceOptions = { sourceDensity: 120 };
1218
let imageSource : image.ImageSource = image.createImageSource('test.png', sourceOptions);
X
xu-rui-w 已提交
1219 1220
```

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

Z
zengyawen 已提交
1223
createImageSource(fd: number): ImageSource
X
xiaok 已提交
1224

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

X
xu-rui-w 已提交
1227
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1228 1229 1230

**参数:**

X
xu-rui-w 已提交
1231 1232 1233
| 参数名 | 类型   | 必填 | 说明          |
| ------ | ------ | ---- | ------------- |
| fd     | number | 是   | 文件描述符fd。|
X
xiaok 已提交
1234 1235 1236

**返回值:**

1237 1238 1239
| 类型                        | 说明                                         |
| --------------------------- | -------------------------------------------- |
| [ImageSource](#imagesource) | 返回ImageSource类实例,失败时返回undefined。 |
X
xiaok 已提交
1240 1241 1242

**示例:**

1243
```ts
1244
const imageSourceApi : image.ImageSource = image.createImageSource(0);
X
xu-rui-w 已提交
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
```

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

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

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

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                |
| ------- | ------------------------------- | ---- | ----------------------------------- |
| fd      | number                          | 是   | 文件描述符fd。                      |
1260
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。|
X
xu-rui-w 已提交
1261 1262 1263 1264 1265 1266 1267 1268 1269

**返回值:**

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

**示例:**

1270 1271
```ts
let sourceOptions : image.SourceOptions = { sourceDensity: 120 };
1272
const imageSourceApi : image.ImageSource = image.createImageSource(0, sourceOptions);
X
xu-rui-w 已提交
1273 1274 1275
```

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

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

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

X
xu-rui-w 已提交
1281
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1282 1283 1284

**参数:**

X
xu-rui-w 已提交
1285 1286 1287
| 参数名 | 类型        | 必填 | 说明             |
| ------ | ----------- | ---- | ---------------- |
| buf    | ArrayBuffer | 是   | 图像缓冲区数组。 |
X
xiaok 已提交
1288 1289 1290

**示例:**

1291
```ts
1292 1293
const buf : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
const imageSourceApi : image.ImageSource = image.createImageSource(buf);
X
xiaok 已提交
1294 1295
```

X
xu-rui-w 已提交
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
## image.createImageSource<sup>9+</sup>

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

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

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

**参数:**

| 参数名 | 类型                             | 必填 | 说明                                 |
| ------ | -------------------------------- | ---- | ------------------------------------ |
| buf    | ArrayBuffer                      | 是   | 图像缓冲区数组。                     |
1309
| options | [SourceOptions](#sourceoptions9) | 是   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318

**返回值:**

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

**示例:**

1319
```ts
1320 1321
const data : ArrayBuffer= new ArrayBuffer(112);
const imageSourceApi : image.ImageSource = image.createImageSource(data);
X
xu-rui-w 已提交
1322 1323
```

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

1326
CreateIncrementalSource(buf: ArrayBuffer): ImageSource
X
xu-rui-w 已提交
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345

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

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

**参数:**

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

**返回值:**

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

**示例:**

1346
```ts
1347 1348
const buf : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
const imageSourceIncrementalSApi : image.ImageSource = image.CreateIncrementalSource(buf);
X
xu-rui-w 已提交
1349 1350
```

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

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

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

X
xu-rui-w 已提交
1357
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1358 1359 1360 1361 1362

**参数:**

| 参数名  | 类型                            | 必填 | 说明                                 |
| ------- | ------------------------------- | ---- | ------------------------------------ |
X
xu-rui-w 已提交
1363
| buf     | ArrayBuffer                     | 是   | 增量数据。                           |
1364
| options | [SourceOptions](#sourceoptions9) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xu-rui-w 已提交
1365 1366 1367 1368 1369 1370 1371 1372 1373

**返回值:**

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

**示例:**

1374
```ts
1375 1376
const buf : ArrayBuffer = new ArrayBuffer(96);  //96为需要创建的像素buffer大小,取值为:height * width *4
const imageSourceIncrementalSApi : image.ImageSource = image.CreateIncrementalSource(buf);
X
xiaok 已提交
1377 1378
```

Z
zengyawen 已提交
1379
## ImageSource
X
xiaok 已提交
1380

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

### 属性

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

Z
zengyawen 已提交
1387 1388
| 名称             | 类型           | 可读 | 可写 | 说明                                                         |
| ---------------- | -------------- | ---- | ---- | ------------------------------------------------------------ |
X
xu-rui-w 已提交
1389
| supportedFormats | Array\<string> | 是   | 否   | 支持的图片格式,包括:png,jpeg,bmp,gif,webp,RAW。 |
Z
zengyawen 已提交
1390 1391 1392 1393

### getImageInfo

getImageInfo(index: number, callback: AsyncCallback\<ImageInfo>): void
X
xiaok 已提交
1394 1395 1396

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

X
xu-rui-w 已提交
1397
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1398 1399 1400

**参数:**

Z
zengyawen 已提交
1401 1402 1403 1404
| 参数名   | 类型                                   | 必填 | 说明                                     |
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
| index    | number                                 | 是   | 创建图片源时的序号。                     |
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1405 1406 1407

**示例:**

1408 1409 1410
```ts
import {BusinessError} from '@ohos.base'
imageSourceApi.getImageInfo(0,(error : BusinessError, imageInfo : image.ImageInfo) => { 
X
xu-rui-w 已提交
1411 1412 1413 1414 1415 1416
    if(error) {
        console.log('getImageInfo failed.');
    } else {
        console.log('getImageInfo succeeded.');
    }
})
X
xiaok 已提交
1417 1418
```

Z
zengyawen 已提交
1419
### getImageInfo
X
xiaok 已提交
1420

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

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

X
xu-rui-w 已提交
1425
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1426 1427 1428

**参数:**

1429
| 参数名   | 类型                                   | 必填 | 说明                                     |
X
xiaok 已提交
1430
| -------- | -------------------------------------- | ---- | ---------------------------------------- |
Z
zengyawen 已提交
1431
| callback | AsyncCallback<[ImageInfo](#imageinfo)> | 是   | 获取图片信息回调,异步返回图片信息对象。 |
X
xiaok 已提交
1432 1433 1434

**示例:**

1435
```ts
1436
imageSourceApi.getImageInfo((imageInfo : image.ImageInfo) => { 
X
xu-rui-w 已提交
1437
    console.log('Succeeded in obtaining the image information.');
X
xu-rui-w 已提交
1438
})
X
xiaok 已提交
1439 1440
```

Z
zengyawen 已提交
1441
### getImageInfo
X
xiaok 已提交
1442

Z
zengyawen 已提交
1443
getImageInfo(index?: number): Promise\<ImageInfo>
X
xiaok 已提交
1444 1445 1446

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

X
xu-rui-w 已提交
1447
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1448 1449 1450

**参数:**

1451
| 参数名| 类型   | 必填 | 说明                                  |
Z
zengyawen 已提交
1452 1453
| ----- | ------ | ---- | ------------------------------------- |
| index | number | 否   | 创建图片源时的序号,不选择时默认为0。 |
X
xiaok 已提交
1454 1455 1456

**返回值:**

Z
zengyawen 已提交
1457 1458 1459
| 类型                             | 说明                   |
| -------------------------------- | ---------------------- |
| Promise<[ImageInfo](#imageinfo)> | 返回获取到的图片信息。 |
X
xiaok 已提交
1460 1461 1462

**示例:**

1463
```ts
1464
import {BusinessError} from '@ohos.base'
X
xiaok 已提交
1465
imageSourceApi.getImageInfo(0)
1466
    .then((imageInfo : image.ImageInfo) => {
X
xu-rui-w 已提交
1467
		console.log('Succeeded in obtaining the image information.');
1468
	}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
1469
		console.log('Failed to obtain the image information.');
X
xu-rui-w 已提交
1470
	})
X
xiaok 已提交
1471 1472
```

Z
zengyawen 已提交
1473
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1474

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

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

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

1481
**参数:**
X
xiaok 已提交
1482

1483
| 参数名  | 类型                                                 | 必填 | 说明                                 |
Z
zengyawen 已提交
1484 1485 1486
| ------- | ---------------------------------------------------- | ---- | ------------------------------------ |
| key     | string                                               | 是   | 图片属性名。                         |
| options | [GetImagePropertyOptions](#getimagepropertyoptions7) | 否   | 图片属性,包括图片序号与默认属性值。 |
X
xiaok 已提交
1487 1488 1489

**返回值:**

X
xu-rui-w 已提交
1490 1491
| 类型             | 说明                                                              |
| ---------------- | ----------------------------------------------------------------- |
Z
zengyawen 已提交
1492
| Promise\<string> | Promise实例,用于异步获取图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1493 1494 1495

**示例:**

1496
```ts
1497
imageSourceApi.getImageProperty("BitsPerSample")
1498
    .then((data : string) => {
X
xu-rui-w 已提交
1499
		console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1500
	})
X
xiaok 已提交
1501 1502
```

Z
zengyawen 已提交
1503
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1504

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

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

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

1511
**参数:**
X
xiaok 已提交
1512

Z
zengyawen 已提交
1513 1514 1515 1516
| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| key      | string                 | 是   | 图片属性名。                                                 |
| callback | AsyncCallback\<string> | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。 |
X
xiaok 已提交
1517 1518 1519

**示例:**

1520 1521 1522
```ts
import {BusinessError} from '@ohos.base'
imageSourceApi.getImageProperty("BitsPerSample",(error : BusinessError, data : string) => { 
X
xu-rui-w 已提交
1523
    if(error) {
X
xu-rui-w 已提交
1524
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1525
    } else {
X
xu-rui-w 已提交
1526
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1527 1528
    }
})
X
xiaok 已提交
1529 1530
```

Z
zengyawen 已提交
1531
### getImageProperty<sup>7+</sup>
X
xiaok 已提交
1532

Z
zengyawen 已提交
1533
getImageProperty(key:string, options: GetImagePropertyOptions, callback: AsyncCallback\<string>): void
X
xiaok 已提交
1534 1535 1536

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

X
xu-rui-w 已提交
1537
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1538 1539 1540

**参数:**

X
xu-rui-w 已提交
1541 1542 1543 1544 1545
| 参数名   | 类型                                                 | 必填 | 说明                                                          |
| -------- | ---------------------------------------------------- | ---- | ------------------------------------------------------------- |
| key      | string                                               | 是   | 图片属性名。                                                  |
| options  | [GetImagePropertyOptions](#getimagepropertyoptions7) | 是   | 图片属性,包括图片序号与默认属性值。                          |
| callback | AsyncCallback\<string>                               | 是   | 获取图片属性回调,返回图片属性值,如获取失败则返回属性默认值。|
X
xiaok 已提交
1546 1547 1548

**示例:**

1549 1550
```ts
import {BusinessError} from '@ohos.base'
1551
let property : image.GetImagePropertyOptions = { index: 0, defaultValue: '9999' }
1552
imageSourceApi.getImageProperty("BitsPerSample",property,(error : BusinessError, data : string) => { 
X
xu-rui-w 已提交
1553
    if(error) {
X
xu-rui-w 已提交
1554
        console.log('Failed to get the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1555
    } else {
X
xu-rui-w 已提交
1556
        console.log('Succeeded in getting the value of the specified attribute key of the image.');
X
xu-rui-w 已提交
1557 1558
    }
})
X
xiaok 已提交
1559 1560
```

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

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

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

X
xu-rui-w 已提交
1567
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577

**参数:**

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

**返回值:**

X
xu-rui-w 已提交
1578 1579 1580
| 类型           | 说明                        |
| -------------- | --------------------------- |
| Promise\<void> | Promise实例,异步返回结果。 |
X
xu-rui-w 已提交
1581 1582 1583

**示例:**

1584
```ts
F
fengzewu 已提交
1585
imageSourceApi.modifyImageProperty("ImageWidth", "120").then(() => {
1586
    const w : string = imageSourceApi.getImageProperty("ImageWidth");
F
fengzewu 已提交
1587 1588
    console.info('w', w);
})
X
xu-rui-w 已提交
1589 1590
```

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

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

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

X
xu-rui-w 已提交
1597
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1598 1599 1600 1601 1602 1603 1604

**参数:**

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

**示例:**

1609
```ts
X
xu-rui-w 已提交
1610
imageSourceApi.modifyImageProperty("ImageWidth", "120",() => {})
X
xu-rui-w 已提交
1611 1612
```

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

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

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

X
xu-rui-w 已提交
1619
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1620 1621 1622

**参数:**

1623
| 参数名     | 类型        | 必填 | 说明         |
X
xu-rui-w 已提交
1624 1625 1626
| ---------- | ----------- | ---- | ------------ |
| buf        | ArrayBuffer | 是   | 增量数据。   |
| isFinished | boolean     | 是   | 是否更新完。 |
1627 1628
| value      | number      | 是   | 偏移量。     |
| length     | number      | 是   | 数组长。     |
X
xu-rui-w 已提交
1629 1630 1631

**返回值:**

X
xu-rui-w 已提交
1632 1633 1634
| 类型           | 说明                       |
| -------------- | -------------------------- |
| Promise\<void> | Promise实例,异步返回结果。|
X
xu-rui-w 已提交
1635 1636 1637

**示例:**

1638
```ts
1639
const array : ArrayBuffer = new ArrayBuffer(100);
F
fengzewu 已提交
1640 1641 1642
imageSourceApi.updateData(array, false, 0, 10).then(data => {
    console.info('Succeeded in updating data.');
})
X
xu-rui-w 已提交
1643 1644 1645
```


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

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

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

X
xu-rui-w 已提交
1652
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xu-rui-w 已提交
1653 1654 1655

**参数:**

1656
| 参数名     | 类型                | 必填 | 说明                 |
X
xu-rui-w 已提交
1657 1658 1659
| ---------- | ------------------- | ---- | -------------------- |
| buf        | ArrayBuffer         | 是   | 增量数据。           |
| isFinished | boolean             | 是   | 是否更新完。         |
1660 1661
| value      | number              | 是   | 偏移量。             |
| length     | number              | 是   | 数组长。             |
1662
| callback   | AsyncCallback\<void> | 是   | 回调表示成功或失败。 |
X
xu-rui-w 已提交
1663 1664 1665

**示例:**

1666
```ts
1667
const array : ArrayBuffer = new ArrayBuffer(100);
F
fengzewu 已提交
1668 1669 1670 1671 1672
imageSourceApi.updateData(array, false, 0, 10,(error,data )=> {
    if(data !== undefined){
        console.info('Succeeded in updating data.');     
    }
})
X
xu-rui-w 已提交
1673 1674
```

Z
zengyawen 已提交
1675
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1676

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

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

X
xu-rui-w 已提交
1681
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1682 1683 1684

**参数:**

1685
| 参数名  | 类型                                 | 必填 | 说明       |
Z
zengyawen 已提交
1686 1687 1688 1689 1690 1691 1692 1693
| ------- | ------------------------------------ | ---- | ---------- |
| options | [DecodingOptions](#decodingoptions7) | 否   | 解码参数。 |

**返回值:**

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

**示例:**

1697
```ts
1698
import {BusinessError} from '@ohos.base'
1699
imageSourceApi.createPixelMap().then((pixelmap : image.PixelMap) => {
X
xu-rui-w 已提交
1700
    console.log('Succeeded in creating pixelmap object through image decoding parameters.');
1701
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
1702
    console.log('Failed to create pixelmap object through image decoding parameters.');
X
xu-rui-w 已提交
1703
})
X
xiaok 已提交
1704 1705
```

Z
zengyawen 已提交
1706
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1707

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

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

X
xu-rui-w 已提交
1712
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1713 1714 1715

**参数:**

1716
| 参数名     | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1717 1718
| -------- | ------------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1719 1720 1721

**示例:**

1722 1723 1724
```ts
import {BusinessError} from '@ohos.base'
imageSourceApi.createPixelMap((err : BusinessError, pixelmap : image.PixelMap) => {
R
renhongwei 已提交
1725 1726
    console.info('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1727 1728
```

Z
zengyawen 已提交
1729
### createPixelMap<sup>7+</sup>
X
xiaok 已提交
1730

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

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

X
xu-rui-w 已提交
1735
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
X
xiaok 已提交
1736 1737 1738

**参数:**

1739
| 参数名   | 类型                                  | 必填 | 说明                       |
Z
zengyawen 已提交
1740
| -------- | ------------------------------------- | ---- | -------------------------- |
1741
| options  | [DecodingOptions](#decodingoptions7)  | 是   | 解码参数。                 |
Z
zengyawen 已提交
1742
| callback | AsyncCallback<[PixelMap](#pixelmap7)> | 是   | 通过回调返回PixelMap对象。 |
X
xiaok 已提交
1743 1744 1745

**示例:**

1746
```ts
1747
let decodingOptions : image.DecodingOptions = {
F
fengzewu 已提交
1748 1749 1750 1751 1752 1753 1754 1755
    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
};
1756
imageSourceApi.createPixelMap(decodingOptions, (pixelmap : image.PixelMap) => { 
X
xu-rui-w 已提交
1757 1758
    console.log('Succeeded in creating pixelmap object.');
})
X
xiaok 已提交
1759 1760
```

R
renhongwei 已提交
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
### createPixelMapList<sup>10+</sup>

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

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

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

**参数:**

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

**返回值:**

| 类型                             | 说明                  |
| -------------------------------- | --------------------- |
黄开兴 已提交
1779 1780 1781 1782 1783 1784 1785 1786
| Promise<Array<[PixelMap](#pixelmap7)>> | 异步返回PixeMap数组。 |

**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1787
| 62980096| If the operation failed              |
黄开兴 已提交
1788 1789 1790 1791
| 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 已提交
1792 1793 1794

**示例:**

1795
```ts
1796
let decodeOpts : image.DecodingOptions = {
R
renhongwei 已提交
1797 1798 1799 1800
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1801
    desiredPixelFormat: 3,
R
renhongwei 已提交
1802 1803
    index: 0,
};
1804
let pixelmaplist : Array<image.PixelMap> = imageSourceApi.createPixelMapList(decodeOpts);
R
renhongwei 已提交
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
```

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

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

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

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

**参数:**

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

黄开兴 已提交
1821 1822 1823 1824 1825 1826
**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1827
| 62980096| If the operation failed              |
黄开兴 已提交
1828 1829 1830 1831 1832
| 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 已提交
1833 1834
**示例:**

1835
```ts
1836
imageSourceApi.createPixelMapList( (pixelmaplist : Array<image.PixelMap>) => {
R
renhongwei 已提交
1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
    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数组。 |

黄开兴 已提交
1856 1857 1858 1859 1860 1861
**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1862
| 62980096| If the operation failed              |
黄开兴 已提交
1863 1864 1865 1866 1867
| 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 已提交
1868 1869
**示例:**

1870
```ts
1871
let decodeOpts : image.DecodingOptions = {
R
renhongwei 已提交
1872 1873 1874 1875
    sampleSize: 1,
    editable: true,
    desiredSize: { width: 198, height: 202 },
    rotate: 0,
1876
    desiredPixelFormat: 3,
R
renhongwei 已提交
1877 1878
    index: 0,
};
1879
imageSourceApi.createPixelMapList(decodeOpts, (pixelmaplist : Array<image.PixelMap>) => { 
R
renhongwei 已提交
1880 1881 1882 1883
    console.log('Succeeded in creating pixelmaplist object.');
})
```

1884
### getDelayTimeList<sup>10+</sup>
R
renhongwei 已提交
1885

1886
getDelayTimeList(callback: AsyncCallback<Array\<number>>): void;
R
renhongwei 已提交
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897

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

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

**参数:**

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

黄开兴 已提交
1898 1899 1900 1901 1902 1903
**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1904
| 62980096| If the operation failed              |
黄开兴 已提交
1905 1906 1907 1908 1909 1910 1911
| 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 已提交
1912 1913
**示例:**

1914
```ts
1915
imageSourceApi.getDelayTimeList( (delayTimes : Array<number>) => {
R
renhongwei 已提交
1916 1917 1918 1919
    console.log('Succeeded in getting delay time.');
});
```

1920
### getDelayTimeList<sup>10+</sup>
R
renhongwei 已提交
1921

1922
getDelayTimeList(): Promise<Array\<number>>;
R
renhongwei 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933

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

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

**返回值:**

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

黄开兴 已提交
1934 1935 1936 1937 1938 1939
**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1940
| 62980096| If the operation failed              |
黄开兴 已提交
1941 1942 1943 1944 1945 1946 1947
| 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 已提交
1948 1949
**示例:**

1950
```ts
1951
let delayTimes : Array<number> = imageSourceApi.getDelayTimeList();
R
renhongwei 已提交
1952 1953 1954 1955
```

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

Z
zengyawen 已提交
1956
getFrameCount(callback: AsyncCallback\<number>): void;
R
renhongwei 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967

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

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

**参数:**

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

黄开兴 已提交
1968 1969 1970 1971 1972 1973
**错误码:**

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

| 错误码ID | 错误信息 |
| ------- | --------------------------------------------|
1974
| 62980096| If the operation failed              |
黄开兴 已提交
1975 1976 1977 1978 1979 1980 1981
| 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 已提交
1982 1983
**示例:**

1984
```ts
1985
imageSourceApi.getFrameCount( (frameCount : number) => {
R
renhongwei 已提交
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003
    console.log('Succeeded in getting frame count.');
});
```

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

getFrameCount(): Promise\<number>;

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

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

**返回值:**

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

2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
**错误码:**

以下错误码的详细介绍请参见[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 已提交
2018 2019
**示例:**

2020
```ts
2021
let frameCount : number = imageSourceApi.getFrameCount();
R
renhongwei 已提交
2022 2023
```

Z
zengyawen 已提交
2024
### release
X
xiaok 已提交
2025

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

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

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

**参数:**

2034
| 参数名   | 类型                 | 必填 | 说明                               |
Z
zengyawen 已提交
2035 2036
| -------- | -------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<void> | 是   | 资源释放回调,失败时返回错误信息。 |
X
xiaok 已提交
2037 2038 2039

**示例:**

2040
```ts
X
xu-rui-w 已提交
2041 2042 2043
imageSourceApi.release(() => { 
    console.log('release succeeded.');
})
X
xiaok 已提交
2044 2045
```

Z
zengyawen 已提交
2046
### release
X
xiaok 已提交
2047

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

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

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

Z
zengyawen 已提交
2054 2055 2056 2057 2058 2059
**返回值:**

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

X
xiaok 已提交
2060 2061
**示例:**

2062
```ts
2063
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2064
imageSourceApi.release().then(()=>{
X
xu-rui-w 已提交
2065
    console.log('Succeeded in releasing the image source instance.');
2066
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2067
    console.log('Failed to release the image source instance.');
X
xu-rui-w 已提交
2068
})
X
xiaok 已提交
2069 2070
```

Z
zengyawen 已提交
2071
## image.createImagePacker
X
xiaok 已提交
2072 2073 2074

createImagePacker(): ImagePacker

Z
zengyawen 已提交
2075
创建ImagePacker实例。
X
xiaok 已提交
2076

X
xu-rui-w 已提交
2077
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2078 2079 2080

**返回值:**

Z
zengyawen 已提交
2081 2082 2083
| 类型                        | 说明                  |
| --------------------------- | --------------------- |
| [ImagePacker](#imagepacker) | 返回ImagePacker实例。 |
X
xiaok 已提交
2084 2085 2086

**示例:**

2087
```ts
2088
const imagePackerApi : image.ImagePacker = image.createImagePacker();
X
xiaok 已提交
2089 2090
```

Z
zengyawen 已提交
2091 2092
## ImagePacker

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

Z
zengyawen 已提交
2095 2096
### 属性

X
xu-rui-w 已提交
2097
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
Z
zhang-xiaobo1997 已提交
2098 2099 2100 2101

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

### packing

2105
packing(source: ImageSource, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
X
xiaok 已提交
2106 2107 2108

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

X
xu-rui-w 已提交
2109
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2110 2111 2112

**参数:**

Z
zengyawen 已提交
2113 2114 2115
| 参数名   | 类型                               | 必填 | 说明                               |
| -------- | ---------------------------------- | ---- | ---------------------------------- |
| source   | [ImageSource](#imagesource)        | 是   | 打包的图片源。                     |
X
xu-rui-w 已提交
2116
| option   | [PackingOption](#packingoption)    | 是   | 设置打包参数。                      |
2117
| callback | AsyncCallback\<ArrayBuffer>        | 是   | 获取图片打包回调,返回打包后数据。 |
X
xiaok 已提交
2118 2119 2120

**示例:**

2121
```ts
2122 2123
const imageSourceApi : image.ImageSource = image.createImageSource(0);
let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 };
2124
imagePackerApi.packing(imageSourceApi, packOpts, (data : ArrayBuffer) => {})
X
xiaok 已提交
2125 2126
```

Z
zengyawen 已提交
2127
### packing
X
xiaok 已提交
2128

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

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

X
xu-rui-w 已提交
2133
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2134 2135 2136 2137 2138

**参数:**

| 参数名 | 类型                            | 必填 | 说明           |
| ------ | ------------------------------- | ---- | -------------- |
Z
zengyawen 已提交
2139 2140
| source | [ImageSource](#imagesource)     | 是   | 打包的图片源。 |
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。 |
X
xiaok 已提交
2141 2142 2143

**返回值:**

Z
zengyawen 已提交
2144
| 类型                         | 说明                                          |
X
xu-rui-w 已提交
2145 2146
| ---------------------------- | --------------------------------------------- |
| Promise\<ArrayBuffer>        | Promise实例,用于异步获取压缩或打包后的数据。 |
X
xiaok 已提交
2147 2148 2149

**示例:**

2150
```ts
2151
import {BusinessError} from '@ohos.base'
2152 2153
const imageSourceApi : image.ImageSource = image.createImageSource(0);
let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 }
X
xu-rui-w 已提交
2154
imagePackerApi.packing(imageSourceApi, packOpts)
2155
    .then( (data : ArrayBuffer) => {
X
xu-rui-w 已提交
2156
        console.log('packing succeeded.');
2157
	}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2158 2159
	    console.log('packing failed.');
	})
2160 2161
```

2162
### packing<sup>8+</sup>
2163

Z
zengyawen 已提交
2164
packing(source: PixelMap, option: PackingOption, callback: AsyncCallback\<ArrayBuffer>): void
2165 2166 2167

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

X
xu-rui-w 已提交
2168
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
2169 2170 2171 2172 2173 2174 2175

**参数:**

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

**示例:**

2180
```ts
2181 2182 2183
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 } }
2184
image.createPixelMap(color, opts).then((pixelmap : image.PixelMap) => {
2185
    let packOpts : image.PackingOption = { format:"image/jpeg", quality:98 }
2186
    imagePackerApi.packing(pixelmap, packOpts, (data : ArrayBuffer) => { 
F
fengzewu 已提交
2187 2188
        console.log('Succeeded in packing the image.');
    })
X
xu-rui-w 已提交
2189
})
2190 2191
```

2192
### packing<sup>8+</sup>
2193

2194
packing(source: PixelMap, option: PackingOption): Promise\<ArrayBuffer>
2195 2196 2197

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

X
xu-rui-w 已提交
2198
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
2199 2200 2201

**参数:**

Z
zhang-xiaobo1997 已提交
2202 2203
| 参数名 | 类型                            | 必填 | 说明               |
| ------ | ------------------------------- | ---- | ------------------ |
2204
| source | [PixelMap](#pixelmap)           | 是   | 打包的PixelMap源。 |
Z
zhang-xiaobo1997 已提交
2205
| option | [PackingOption](#packingoption) | 是   | 设置打包参数。     |
2206 2207 2208

**返回值:**

X
xu-rui-w 已提交
2209 2210 2211
| 类型                  | 说明                                         |
| --------------------- | -------------------------------------------- |
| Promise\<ArrayBuffer> | Promise实例,用于异步获取压缩或打包后的数据。|
2212 2213 2214

**示例:**

2215
```ts
2216
import {BusinessError} from '@ohos.base'
2217 2218 2219 2220 2221
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 }
冯泽悟 已提交
2222
    imagePackerApi.packing(pixelmap, packOpts)
2223
        .then( (data : ArrayBuffer) => {
F
fengzewu 已提交
2224
            console.log('Succeeded in packing the image.');
2225
        }).catch((error : BusinessError) => {
F
fengzewu 已提交
2226 2227
            console.log('Failed to pack the image..');
        })
F
fengzewu 已提交
2228
})
X
xiaok 已提交
2229 2230
```

Z
zengyawen 已提交
2231
### release
X
xiaok 已提交
2232

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

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

X
xu-rui-w 已提交
2237
**系统能力:** SystemCapability.Multimedia.Image.ImagePacker
X
xiaok 已提交
2238 2239 2240

**参数:**

Z
zengyawen 已提交
2241 2242 2243
| 参数名   | 类型                 | 必填 | 说明                           |
| -------- | -------------------- | ---- | ------------------------------ |
| callback | AsyncCallback\<void> | 是   | 释放回调,失败时返回错误信息。 |
X
xiaok 已提交
2244 2245 2246

**示例:**

2247
```ts
X
xu-rui-w 已提交
2248
imagePackerApi.release(()=>{ 
X
xu-rui-w 已提交
2249
    console.log('Succeeded in releasing image packaging.');
X
xu-rui-w 已提交
2250
})
X
xiaok 已提交
2251 2252
```

Z
zengyawen 已提交
2253
### release
X
xiaok 已提交
2254

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

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

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

Z
zengyawen 已提交
2261 2262
**返回值:**

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

X
xiaok 已提交
2267 2268
**示例:**

2269
```ts
2270
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2271
imagePackerApi.release().then(()=>{
X
xu-rui-w 已提交
2272
    console.log('Succeeded in releasing image packaging.');
2273
}).catch((error : BusinessError)=>{ 
X
xu-rui-w 已提交
2274
    console.log('Failed to release image packaging.'); 
X
xu-rui-w 已提交
2275
}) 
X
xiaok 已提交
2276 2277
```

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

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

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

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

**参数:**

2288
| 参数名   | 类型   | 必填 | 说明                   |
Z
zengyawen 已提交
2289 2290 2291
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
Z
zhangqiang183 已提交
2292
| format   | number | 是   | 图像格式,取值为[ImageFormat](#imageformat9)常量(目前仅支持 ImageFormat:JPEG 和 4)。  |
Z
zengyawen 已提交
2293
| capacity | number | 是   | 同时访问的最大图像数。 |
Z
zhang-xiaobo1997 已提交
2294 2295 2296

**返回值:**

Z
zengyawen 已提交
2297 2298 2299
| 类型                             | 说明                                    |
| -------------------------------- | --------------------------------------- |
| [ImageReceiver](#imagereceiver9) | 如果操作成功,则返回ImageReceiver实例。 |
Z
zhang-xiaobo1997 已提交
2300 2301 2302

**示例:**

2303 2304
```ts
let receiver : image.ImageReceiver = image.createImageReceiver(8192, 8, 2000, 8);
Z
zhang-xiaobo1997 已提交
2305
```
Z
zhang-xiaobo1997 已提交
2306

Z
zhang-xiaobo1997 已提交
2307 2308
## ImageReceiver<sup>9+</sup>

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

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

### 属性

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

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

Z
zhang-xiaobo1997 已提交
2323
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2324

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

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

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

**参数:**

2333
| 参数名   | 类型                   | 必填 | 说明                       |
Z
zengyawen 已提交
2334 2335
| -------- | ---------------------- | ---- | -------------------------- |
| callback | AsyncCallback\<string> | 是   | 回调函数,返回surface id。 |
Z
zhang-xiaobo1997 已提交
2336 2337 2338

**示例:**

2339 2340 2341
```ts
import {BusinessError} from '@ohos.base'
receiver.getReceivingSurfaceId((err : BusinessError, id : string) => { 
X
xu-rui-w 已提交
2342 2343 2344 2345 2346 2347
    if(err) {
        console.log('getReceivingSurfaceId failed.');
    } else {
        console.log('getReceivingSurfaceId succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2348 2349
```

Z
zhang-xiaobo1997 已提交
2350
### getReceivingSurfaceId<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2351

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

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

Z
zengyawen 已提交
2356
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2357 2358 2359

**返回值:**

Z
zhang-xiaobo1997 已提交
2360 2361 2362
| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<string> | 异步返回surface id。 |
Z
zhang-xiaobo1997 已提交
2363 2364 2365

**示例:**

2366
```ts
2367
import {BusinessError} from '@ohos.base'
2368
receiver.getReceivingSurfaceId().then( (id : string) => { 
X
xu-rui-w 已提交
2369
    console.log('getReceivingSurfaceId succeeded.');
2370
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2371 2372
    console.log('getReceivingSurfaceId failed.');
})
Z
zhang-xiaobo1997 已提交
2373 2374
```

Z
zhang-xiaobo1997 已提交
2375
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2376

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

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

Z
zengyawen 已提交
2381
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2382 2383 2384

**参数:**

2385
| 参数名     | 类型                            | 必填 | 说明                     |
Z
zengyawen 已提交
2386 2387
| -------- | ------------------------------- | ---- | ------------------------ |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回最新图像。 |
Z
zhang-xiaobo1997 已提交
2388 2389 2390

**示例:**

2391 2392 2393
```ts
import {BusinessError} from '@ohos.base'
receiver.readLatestImage((err : BusinessError, img : image.Image) => { 
X
xu-rui-w 已提交
2394 2395 2396 2397 2398 2399
    if(err) {
        console.log('readLatestImage failed.');
    } else {
        console.log('readLatestImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2400 2401
```

Z
zhang-xiaobo1997 已提交
2402
### readLatestImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2403

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

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

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

**返回值:**

| 类型                      | 说明               |
| ------------------------- | ------------------ |
2414
| Promise<[Image](#image9)> | 异步返回最新图片。 |
Z
zhang-xiaobo1997 已提交
2415 2416 2417

**示例:**

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

Z
zhang-xiaobo1997 已提交
2427
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2428

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

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

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

**参数:**

2437
| 参数名   | 类型                            | 必填 | 说明                       |
Z
zengyawen 已提交
2438 2439
| -------- | ------------------------------- | ---- | -------------------------- |
| callback | AsyncCallback<[Image](#image9)> | 是   | 回调函数,返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2440 2441 2442

**示例:**

2443 2444 2445
```ts
import {BusinessError} from '@ohos.base'
receiver.readNextImage((err : BusinessError, img : image.Image) => { 
X
xu-rui-w 已提交
2446 2447 2448 2449 2450 2451
    if(err) {
        console.log('readNextImage failed.');
    } else {
        console.log('readNextImage succeeded.');
    }
});
Z
zhang-xiaobo1997 已提交
2452 2453
```

Z
zhang-xiaobo1997 已提交
2454
### readNextImage<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2455

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

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

Z
zengyawen 已提交
2460
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2461 2462 2463 2464 2465

**返回值:**

| 类型                      | 说明                 |
| ------------------------- | -------------------- |
Z
zengyawen 已提交
2466
| Promise<[Image](#image9)> | 异步返回下一张图片。 |
Z
zhang-xiaobo1997 已提交
2467 2468 2469

**示例:**

2470
```ts
2471
import {BusinessError} from '@ohos.base'
2472
receiver.readNextImage().then((img : image.Image) => {
X
xu-rui-w 已提交
2473
    console.log('readNextImage succeeded.');
2474
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2475 2476
    console.log('readNextImage failed.');
})
Z
zhang-xiaobo1997 已提交
2477 2478
```

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

Z
zhang-xiaobo1997 已提交
2481
on(type: 'imageArrival', callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2482 2483 2484

接收图片时注册回调。

Z
zengyawen 已提交
2485
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2486 2487 2488

**参数:**

2489
| 参数名   | 类型                 | 必填 | 说明                                                   |
Z
zhang-xiaobo1997 已提交
2490
| -------- | -------------------- | ---- | ------------------------------------------------------ |
Z
zengyawen 已提交
2491
| type     | string               | 是   | 注册事件的类型,固定为'imageArrival',接收图片时触发。 |
Z
zhang-xiaobo1997 已提交
2492
| callback | AsyncCallback\<void> | 是   | 注册的事件回调。                                       |
Z
zhang-xiaobo1997 已提交
2493 2494 2495

**示例:**

2496
```ts
X
xu-rui-w 已提交
2497
receiver.on('imageArrival', () => {})
Z
zhang-xiaobo1997 已提交
2498 2499
```

Z
zhang-xiaobo1997 已提交
2500
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2501

Z
zengyawen 已提交
2502
release(callback: AsyncCallback\<void>): void
Z
zhang-xiaobo1997 已提交
2503 2504 2505

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

Z
zengyawen 已提交
2506
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2507 2508 2509

**参数:**

2510
| 参数名   | 类型                 | 必填 | 说明                     |
Z
zengyawen 已提交
2511 2512
| -------- | -------------------- | ---- | ------------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数,返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2513 2514 2515

**示例:**

2516
```ts
X
xu-rui-w 已提交
2517
receiver.release(() => {})
Z
zhang-xiaobo1997 已提交
2518 2519
```

Z
zhang-xiaobo1997 已提交
2520
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2521

Z
zhang-xiaobo1997 已提交
2522
release(): Promise\<void>
Z
zhang-xiaobo1997 已提交
2523 2524 2525

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

Z
zengyawen 已提交
2526
**系统能力:** SystemCapability.Multimedia.Image.ImageReceiver
Z
zhang-xiaobo1997 已提交
2527 2528 2529

**返回值:**

Z
zengyawen 已提交
2530 2531 2532
| 类型           | 说明               |
| -------------- | ------------------ |
| Promise\<void> | 异步返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2533 2534 2535

**示例:**

2536
```ts
2537
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2538 2539
receiver.release().then(() => {
    console.log('release succeeded.');
2540
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2541 2542
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2543 2544
```

R
renhongwei 已提交
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554
## image.createImageCreator<sup>9+</sup>

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

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

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

**参数:**

2555
| 参数名   | 类型   | 必填 | 说明                   |
R
renhongwei 已提交
2556 2557 2558
| -------- | ------ | ---- | ---------------------- |
| width    | number | 是   | 图像的默认宽度。       |
| height   | number | 是   | 图像的默认高度。       |
X
xu-rui-w 已提交
2559
| format   | number | 是   | 图像格式,如YCBCR_422_SP,JPEG。             |
R
renhongwei 已提交
2560 2561 2562 2563 2564 2565
| capacity | number | 是   | 同时访问的最大图像数。 |

**返回值:**

| 类型                           | 说明                                    |
| ------------------------------ | --------------------------------------- |
2566
| [ImageCreator](#imagecreator9) | 如果操作成功,则返回ImageCreator实例。 |
R
renhongwei 已提交
2567 2568 2569

**示例:**

2570 2571
```ts
let creator : image.ImageCreator = image.createImageCreator(8192, 8, 4, 8);
R
renhongwei 已提交
2572 2573 2574 2575 2576
```

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

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

### 属性

X
xu-rui-w 已提交
2581
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2582 2583 2584 2585 2586 2587 2588 2589 2590 2591

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

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

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

X
xu-rui-w 已提交
2592
从空闲队列中获取buffer图片,用于绘制UI内容,并使用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
| ------------- | ---------------------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<Image>                   | 是   | 回调函数,返回最新图片。 |

**示例:**

2604 2605 2606
```ts
import {BusinessError} from '@ohos.base'
creator.dequeueImage((err : BusinessError, img : image.Image) => {
X
xu-rui-w 已提交
2607
    if (err) {
黄开兴 已提交
2608
        console.info('dequeueImage failed.');
X
xu-rui-w 已提交
2609
    }
2610
    console.info('dequeueImage succeeded.');
X
xu-rui-w 已提交
2611
});
R
renhongwei 已提交
2612 2613 2614 2615 2616 2617
```

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

dequeueImage(): Promise\<Image>

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

X
xu-rui-w 已提交
2620
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2621 2622 2623 2624 2625 2626 2627 2628 2629

**返回值:**

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

**示例:**

2630
```ts
2631
import {BusinessError} from '@ohos.base'
2632
creator.dequeueImage().then((img : image.Image) => {
X
xu-rui-w 已提交
2633
    console.info('dequeueImage succeeded.');
2634
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2635 2636
    console.log('dequeueImage failed: ' + error);
})
R
renhongwei 已提交
2637 2638
```

X
xu-rui-w 已提交
2639
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2640 2641 2642

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

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

X
xu-rui-w 已提交
2645
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2646 2647 2648

**参数:**

2649
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2650 2651 2652 2653 2654 2655
| ------------- | -------------------------| ---- | -------------------- |
| interface     | Image                    | 是   | 绘制好的buffer图像。 |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

2656 2657
```ts
import {BusinessError} from '@ohos.base'
2658
creator.dequeueImage().then((img : image.Image) => {
2659
    //绘制图片
2660 2661 2662
    img.getComponent(4).then( (component : image.Component) => {
        let bufferArr : Uint8Array = new Uint8Array(component.byteBuffer);
        for (let i = 0; i < bufferArr.length; i += 4) {
2663 2664 2665 2666 2667 2668
            bufferArr[i] = 0; //B
            bufferArr[i + 1] = 0; //G
            bufferArr[i + 2] = 255; //R
            bufferArr[i + 3] = 255; //A
        }
    })
2669
    creator.queueImage(img, (err : BusinessError) => {
2670 2671 2672 2673 2674
        if (err) {
            console.info('queueImage failed: ' + err);
        }
        console.info('queueImage succeeded');
    })
2675 2676
})

R
renhongwei 已提交
2677 2678
```

X
xu-rui-w 已提交
2679
### queueImage<sup>9+</sup>
R
renhongwei 已提交
2680 2681 2682

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

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

X
xu-rui-w 已提交
2685
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2686 2687 2688

**参数:**

2689
| 参数名          | 类型     | 必填 | 说明                |
R
renhongwei 已提交
2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700
| ------------- | --------| ---- | ------------------- |
| interface     | Image   | 是   | 绘制好的buffer图像。 |

**返回值:**

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

**示例:**

2701
```ts
2702
import {BusinessError} from '@ohos.base'
2703
creator.dequeueImage().then((img : image.Image) => {
2704
    //绘制图片
2705
    img.getComponent(4).then((component : image.Component) => {
2706 2707
        let bufferArr : Uint8Array = new Uint8Array(component.byteBuffer);
        for (let i = 0; i < bufferArr.length; i += 4) {
2708 2709 2710 2711 2712 2713
            bufferArr[i] = 0; //B
            bufferArr[i + 1] = 0; //G
            bufferArr[i + 2] = 255; //R
            bufferArr[i + 3] = 255; //A
        }
    })
2714 2715
    creator.queueImage(img).then(() => {
        console.info('queueImage succeeded.');
2716
    }).catch((error : BusinessError) => {
2717 2718
        console.info('queueImage failed: ' + error);
    })
X
xu-rui-w 已提交
2719
})
2720

R
renhongwei 已提交
2721 2722 2723 2724 2725 2726 2727 2728
```

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

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

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

X
xu-rui-w 已提交
2729
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2730 2731 2732

**参数:**

2733
| 参数名        | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2734
| ------------- | -------------------------| ---- | -------------------- |
X
xu-rui-w 已提交
2735
| type          | string                   | 是   | 监听事件类型,如'imageRelease'。 |
R
renhongwei 已提交
2736 2737 2738 2739
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

2740 2741 2742
```ts
import {BusinessError} from '@ohos.base'
creator.on('imageRelease', (err : BusinessError) => {
X
xu-rui-w 已提交
2743 2744 2745 2746 2747
    if (err) {
        console.info('on faild' + err);
    }
    console.info('on succeeded');
})
R
renhongwei 已提交
2748 2749 2750 2751 2752 2753 2754 2755
```

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

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

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

X
xu-rui-w 已提交
2756
**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2757 2758 2759

**参数:**

2760
| 参数名           | 类型                     | 必填 | 说明                 |
R
renhongwei 已提交
2761 2762 2763 2764 2765
| ------------- | -------------------------| ---- | -------------------- |
| callback      | AsyncCallback\<void>     | 是   | 获取回调,失败时返回错误信息。 |

**示例:**

2766 2767 2768
```ts
import {BusinessError} from '@ohos.base'
creator.release((err : BusinessError) => {
X
xu-rui-w 已提交
2769 2770 2771 2772 2773
    if (err) {
        console.info('release failed: ' + err);
    }
    console.info('release succeeded');
});
R
renhongwei 已提交
2774 2775 2776 2777 2778
```
### release<sup>9+</sup>

release(): Promise\<void>

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

**系统能力:** SystemCapability.Multimedia.Image.ImageCreator
R
renhongwei 已提交
2782 2783 2784 2785 2786 2787 2788 2789 2790

**返回值:**

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

**示例:**

2791
```ts
2792
import {BusinessError} from '@ohos.base'
X
xu-rui-w 已提交
2793 2794
creator.release().then(() => {
    console.info('release succeeded');
2795
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2796 2797
    console.info('release failed');
})
R
renhongwei 已提交
2798 2799
```

Z
zhang-xiaobo1997 已提交
2800
## Image<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2801

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

### 属性

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

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

Z
zhang-xiaobo1997 已提交
2814
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2815

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

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

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

**参数:**

2824
| 参数名        | 类型                                    | 必填 | 说明                 |
Z
zhang-xiaobo1997 已提交
2825
| ------------- | --------------------------------------- | ---- | -------------------- |
Z
zengyawen 已提交
2826 2827
| componentType | [ComponentType](#componenttype9)        | 是   | 图像的组件类型。     |
| callback      | AsyncCallback<[Component](#component9)> | 是   | 用于返回组件缓冲区。 |
Z
zhang-xiaobo1997 已提交
2828 2829 2830

**示例:**

2831 2832 2833
```ts
import {BusinessError} from '@ohos.base'
img.getComponent(4, (err : BusinessError, component : image.Component) => {
X
xu-rui-w 已提交
2834 2835 2836 2837 2838 2839
    if(err) {
        console.log('getComponent failed.');
    } else {
        console.log('getComponent succeeded.');
    }
})
Z
zhang-xiaobo1997 已提交
2840 2841
```

Z
zhang-xiaobo1997 已提交
2842
### getComponent<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2843

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

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

Z
zengyawen 已提交
2848
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2849 2850 2851

**参数:**

2852
| 参数名        | 类型                             | 必填 | 说明             |
Z
zhang-xiaobo1997 已提交
2853
| ------------- | -------------------------------- | ---- | ---------------- |
Z
zengyawen 已提交
2854
| componentType | [ComponentType](#componenttype9) | 是   | 图像的组件类型。 |
Z
zhang-xiaobo1997 已提交
2855 2856 2857 2858 2859

**返回值:**

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

**示例:**

2864
```ts
2865
img.getComponent(4).then((component : image.Component) => { })
Z
zhang-xiaobo1997 已提交
2866 2867
```

Z
zhang-xiaobo1997 已提交
2868
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2869

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

Z
zengyawen 已提交
2872 2873 2874
释放当前图像并使用callback返回结果。

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

Z
zengyawen 已提交
2876
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2877 2878 2879

**参数:**

2880
| 参数名   | 类型                 | 必填 | 说明           |
Z
zhang-xiaobo1997 已提交
2881 2882
| -------- | -------------------- | ---- | -------------- |
| callback | AsyncCallback\<void> | 是   | 返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2883 2884 2885

**示例:**

2886
```ts
X
xu-rui-w 已提交
2887 2888 2889
img.release(() =>{ 
    console.log('release succeeded.');
}) 
Z
zhang-xiaobo1997 已提交
2890 2891
```

Z
zhang-xiaobo1997 已提交
2892
### release<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
2893

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

Z
zengyawen 已提交
2896 2897 2898
释放当前图像并使用Promise方式返回结果。

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

Z
zengyawen 已提交
2900
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
2901 2902 2903

**返回值:**

Z
zhang-xiaobo1997 已提交
2904 2905 2906
| 类型           | 说明                  |
| -------------- | --------------------- |
| Promise\<void> | promise返回操作结果。 |
Z
zhang-xiaobo1997 已提交
2907 2908 2909

**示例:**

2910
```ts
2911
import {BusinessError} from '@ohos.base'
Z
zhang-xiaobo1997 已提交
2912
img.release().then(() =>{
X
xu-rui-w 已提交
2913
    console.log('release succeeded.');
2914
}).catch((error : BusinessError) => {
X
xu-rui-w 已提交
2915 2916
    console.log('release failed.');
})
Z
zhang-xiaobo1997 已提交
2917 2918
```

Z
zengyawen 已提交
2919 2920 2921 2922
## PositionArea<sup>7+</sup>

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

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

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

Z
zengyawen 已提交
2932
## ImageInfo
X
xiaok 已提交
2933

Z
zengyawen 已提交
2934
表示图片信息。
X
xiaok 已提交
2935

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

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

Z
zengyawen 已提交
2943
## Size
X
xiaok 已提交
2944

Z
zengyawen 已提交
2945 2946
表示图片尺寸。

X
xu-rui-w 已提交
2947
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zengyawen 已提交
2948 2949 2950 2951 2952 2953 2954

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

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

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

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

2960
| 名称                   |   值   | 说明              |
X
xu-rui-w 已提交
2961 2962 2963
| ---------------------- | ------ | ----------------- |
| UNKNOWN                | 0      | 未知格式。        |
| RGB_565                | 2      | 格式为RGB_565     |
X
xu-rui-w 已提交
2964 2965 2966 2967 2968 2969 2970
| 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 已提交
2971

2972
## AlphaType<sup>9+</sup>
X
xiaok 已提交
2973

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

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

2978
| 名称     |   值   | 说明                    |
Z
zengyawen 已提交
2979 2980 2981
| -------- | ------ | ----------------------- |
| UNKNOWN  | 0      | 未知透明度。            |
| OPAQUE   | 1      | 没有alpha或图片全透明。 |
X
xu-rui-w 已提交
2982 2983
| PREMUL   | 2      | RGB前乘alpha。         |
| UNPREMUL | 3      | RGB不前乘alpha。       |
X
xiaok 已提交
2984

2985
## ScaleMode<sup>9+</sup>
X
xiaok 已提交
2986

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

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

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

X
xu-rui-w 已提交
2996 2997 2998 2999
## SourceOptions<sup>9+</sup>

ImageSource的初始化选项。

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

X
xu-rui-w 已提交
3002 3003 3004 3005 3006
| 名称              | 类型                               | 可读 | 可写 | 说明               |
| ----------------- | ---------------------------------- | ---- | ---- | ------------------ |
| sourceDensity     | number                             | 是   | 是   | ImageSource的密度。|
| sourcePixelFormat | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 图片像素格式。     |
| sourceSize        | [Size](#size)                      | 是   | 是   | 图像像素大小。     |
X
xu-rui-w 已提交
3007 3008


Z
zengyawen 已提交
3009
## InitializationOptions<sup>8+</sup>
X
xiaok 已提交
3010

Z
zengyawen 已提交
3011 3012
PixelMap的初始化选项。

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

X
xu-rui-w 已提交
3015 3016 3017
| 名称                     | 类型                               | 可读 | 可写 | 说明           |
| ------------------------ | ---------------------------------- | ---- | ---- | -------------- |
| alphaType<sup>9+</sup>   | [AlphaType](#alphatype9)           | 是   | 是   | 透明度。       |
X
xu-rui-w 已提交
3018 3019
| editable                 | boolean                            | 是   | 是   | 是否可编辑。   |
| pixelFormat              | [PixelMapFormat](#pixelmapformat7) | 是   | 是   | 像素格式。     |
X
xu-rui-w 已提交
3020
| scaleMode<sup>9+</sup>   | [ScaleMode](#scalemode9)           | 是   | 是   | 缩略值。       |
X
xu-rui-w 已提交
3021
| size                     | [Size](#size)                      | 是   | 是   | 创建图片大小。 |
Z
zengyawen 已提交
3022 3023

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

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

X
xu-rui-w 已提交
3027
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
3028 3029 3030

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

3040
## Region<sup>7+</sup>
Z
zengyawen 已提交
3041 3042 3043

表示区域信息。

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

3046 3047 3048 3049 3050
| 名称 | 类型          | 可读 | 可写 | 说明         |
| ---- | ------------- | ---- | ---- | ------------ |
| size | [Size](#size) | 是   | 是   | 区域大小。   |
| x    | number        | 是   | 是   | 区域横坐标。 |
| y    | number        | 是   | 是   | 区域纵坐标。 |
Z
zengyawen 已提交
3051 3052 3053 3054 3055

## PackingOption

表示图片打包选项。

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

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

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

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

X
xu-rui-w 已提交
3068
**系统能力:** SystemCapability.Multimedia.Image.ImageSource
Z
zengyawen 已提交
3069 3070 3071 3072 3073 3074 3075 3076 3077 3078

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

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

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

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

3081
| 名称              |   值                    | 说明                     |
X
xu-rui-w 已提交
3082 3083 3084 3085 3086 3087 3088
| ----------------- | ----------------------- | ------------------------ |
| BITS_PER_SAMPLE   | "BitsPerSample"         | 每个像素比特数。         |
| ORIENTATION       | "Orientation"           | 图片方向。               |
| IMAGE_LENGTH      | "ImageLength"           | 图片长度。               |
| IMAGE_WIDTH       | "ImageWidth"            | 图片宽度。               |
| GPS_LATITUDE      | "GPSLatitude"           | 图片纬度。               |
| GPS_LONGITUDE     | "GPSLongitude"          | 图片经度。               |
X
xu-rui-w 已提交
3089 3090
| GPS_LATITUDE_REF  | "GPSLatitudeRef"        | 纬度引用,例如N或S。    |
| GPS_LONGITUDE_REF | "GPSLongitudeRef"       | 经度引用,例如W或E。    |
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
| 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"                 | 生产商,当前为只读属性。                  |
3101
| MODEL<sup>10+</sup>                      | "Model"                | 设备型号,当前为只读属性。                  |
3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119
| 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"  | 物理孔径,光圈大小,当前为只读属性。   |
3120

Z
zhang-xiaobo1997 已提交
3121
## ImageFormat<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3122 3123 3124

枚举,图片格式。

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

3127
| 名称         |   值   | 说明                 |
Z
zengyawen 已提交
3128 3129 3130
| ------------ | ------ | -------------------- |
| YCBCR_422_SP | 1000   | YCBCR422半平面格式。 |
| JPEG         | 2000   | JPEG编码格式。       |
Z
zhang-xiaobo1997 已提交
3131

Z
zengyawen 已提交
3132
## ComponentType<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3133 3134 3135

枚举,图像的组件类型。

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

3138
| 名称  |   值   | 说明        |
Z
zhang-xiaobo1997 已提交
3139 3140 3141 3142
| ----- | ------ | ----------- |
| YUV_Y | 1      | 亮度信息。  |
| YUV_U | 2      | 色度信息。  |
| YUV_V | 3      | 色度信息。  |
X
xu-rui-w 已提交
3143
| JPEG  | 4      | JPEG 类型。 |
Z
zhang-xiaobo1997 已提交
3144

Z
zengyawen 已提交
3145
## Component<sup>9+</sup>
Z
zhang-xiaobo1997 已提交
3146 3147 3148

描述图像颜色分量。

X
xu-rui-w 已提交
3149
**系统能力:** SystemCapability.Multimedia.Image.Core
Z
zhang-xiaobo1997 已提交
3150 3151 3152

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

3158 3159 3160
## 补充说明
### SVG标签说明

黄开兴 已提交
3161
从API version 10开始支持SVG标签,使用版本为(SVG) 1.1,当前支持的标签列表有:
3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199
- 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