js-apis-medialibrary.md 64.7 KB
Newer Older
P
panqiangbiao 已提交
1 2
媒体库管理
==========
P
panqiangbiao 已提交
3 4 5
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 该组件从API Version 6开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
 
P
panqiangbiao 已提交
6 7 8 9
 导入模块
---------

```
P
panqiangbiao 已提交
10
import mediaLibrary from '@ohos.multimedia.medialibrary';
P
panqiangbiao 已提交
11 12 13 14 15 16 17
```


## getMediaLibrary

function getMediaLibrary(context: Context): MediaLibrary;

P
panqiangbiao 已提交
18
获取媒体库的实例,用于访问和修改用户的个人数据信息。
P
panqiangbiao 已提交
19

P
panqiangbiao 已提交
20
**需要权限**:无
P
panqiangbiao 已提交
21

P
panqiangbiao 已提交
22
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
23

P
panqiangbiao 已提交
24
**参数:** 
P
panqiangbiao 已提交
25 26 27

| 参数名  | 类型    | 必填 | 说明                 |
| ------- | ------- | ---- | -------------------- |
P
panqiangbiao 已提交
28
| context | Context | 是 | API 8接口此参数是必填参数,传入Ability实例的context,获取媒体库 |
P
panqiangbiao 已提交
29 30 31 32 33

**返回值:**

| 类型         | 说明   |
| ------------ | :----- |
P
panqiangbiao 已提交
34
| mediaLibrary | 媒体库实例 |
P
panqiangbiao 已提交
35 36 37 38

**示例:**

```
P
panqiangbiao 已提交
39
import featureAbility from '@ohos.ability.featureAbility';
P
panqiangbiao 已提交
40

P
panqiangbiao 已提交
41
var context = featureAbility.getContext()
P
panqiangbiao 已提交
42
var media = mediaLibrary.getMediaLibrary(context);
P
panqiangbiao 已提交
43 44
```

P
panqiangbiao 已提交
45
## mediaLibrary.getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
46 47


P
panqiangbiao 已提交
48
getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void;    
P
panqiangbiao 已提交
49 50 51

获取文件资源,使用callback方式返回异步结果。

P
panqiangbiao 已提交
52
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
53

P
panqiangbiao 已提交
54
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
55

P
panqiangbiao 已提交
56 57
**参数:**

P
panqiangbiao 已提交
58 59
| 参数名   | 类型                                                        | 必填 | 说明                              |
| -------- | ----------------------------------------------------------- | ---- | --------------------------------- |
P
panqiangbiao 已提交
60
| options  | [MediaFetchOptions](#MediaFetchOptions)                     | 是   | 媒体获取选项                      |
P
panqiangbiao 已提交
61
| callback | AsyncCallback<[FetchFileResult](#FetchFileResult.getCount)> | 是   | 异步获取FetchFileResult之后的回调 |
P
panqiangbiao 已提交
62 63 64 65

**示例:**

```
P
panqiangbiao 已提交
66 67 68 69 70 71
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
P
panqiangbiao 已提交
72
mediaLibrary.getFileAssets(imagesfetchOp, (error, fetchFileResult) => {
P
panqiangbiao 已提交
73
    if (fetchFileResult != undefined) {
P
panqiangbiao 已提交
74
        console.info('mediaLibraryTest : ASSET_CALLBACK fetchFileResult success');
P
panqiangbiao 已提交
75 76 77 78
        fetchFileResult.getAllObject((err, fileAssetList) => {
            if (fileAssetList != undefined) {
                fileAssetList.forEach(getAllObjectInfo);
            }
P
panqiangbiao 已提交
79 80
    	});
    }
P
panqiangbiao 已提交
81
});
P
panqiangbiao 已提交
82
```
P
panqiangbiao 已提交
83
## mediaLibrary.getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
84 85 86 87 88

getFileAssets(options: MediaFetchOptions): Promise&lt;FetchFileResult&gt;;

获取文件资源,使用Promise方式返回结果。

P
panqiangbiao 已提交
89
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
90

P
panqiangbiao 已提交
91
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
92

P
panqiangbiao 已提交
93 94
**参数:**

P
panqiangbiao 已提交
95 96 97
| 参数名  | 类型                                    | 必填 | 说明         |
| ------- | --------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#MediaFetchOptions) | 是   | 媒体检索选项 |
P
panqiangbiao 已提交
98 99 100

**返回值**

P
panqiangbiao 已提交
101 102 103
| 类型                                         | 说明           |
| -------------------------------------------- | -------------- |
| [FetchFileResult](#FetchFileResult.getCount) | 媒体数据结果集 |
P
panqiangbiao 已提交
104 105 106 107

**示例:**

```
P
panqiangbiao 已提交
108 109 110 111 112 113
let fileKeyObj = mediaLibrary.FileKey
let imageType = mediaLibrary.MediaType.IMAGE
let imagesfetchOp = {
    selections: fileKeyObj.MEDIA_TYPE + '= ?',
    selectionArgs: [imageType.toString()],
};
P
panqiangbiao 已提交
114
mediaLibrary.getFileAssets(imagesfetchOp).then(function(fetchFileResult){
P
panqiangbiao 已提交
115 116 117 118
    console.info("getFileAssets successfully:"+ JSON.stringify(dir));
}).catch(function(err){
    console.info("getFileAssets failed with error:"+ err);
});
P
panqiangbiao 已提交
119 120
```

P
panqiangbiao 已提交
121
## mediaLibrary.on<sup>8+</sup>
P
panqiangbiao 已提交
122

P
panqiangbiao 已提交
123
on(type: 'deviceChange'|'albumChange'|'imageChange'|'audioChange'|'videoChange'|'fileChange'|'remoteFileChange', callback: Callback&lt;void&gt;): void;
P
panqiangbiao 已提交
124

P
panqiangbiao 已提交
125
打开媒体媒体库变更通知,使用callback方式返回异步结果。
P
panqiangbiao 已提交
126

P
panqiangbiao 已提交
127
**需要权限**:无
P
panqiangbiao 已提交
128

P
panqiangbiao 已提交
129
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
130

P
panqiangbiao 已提交
131 132 133 134
**参数:**

| 参数名   | 类型                | 必填 | 说明                   |
| -------- | ---------------- | ---- | ------------------- |
P
panqiangbiao 已提交
135
| type  | type   | 是   | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'fileChange':     &nbsp;文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更 |
P
panqiangbiao 已提交
136
| callback | callback&lt;void&gt; | 是   | 回调返回空 |
P
panqiangbiao 已提交
137 138 139 140

**示例:**

```
P
panqiangbiao 已提交
141
mediaLibrary.on('imageChange', () => {
P
panqiangbiao 已提交
142
    // image file had changed, do something
P
panqiangbiao 已提交
143 144
})
```
P
panqiangbiao 已提交
145
## mediaLibrary.off<sup>8+</sup>
P
panqiangbiao 已提交
146

P
panqiangbiao 已提交
147
off(type: 'deviceChange'|'albumChange'|'imageChange'|'audioChange'|'videoChange'|'fileChange'|'remoteFileChange', callback?: Callback&lt;void&gt;): void;
P
panqiangbiao 已提交
148

P
panqiangbiao 已提交
149
关闭媒体媒体库变更通知,使用callback方式返回异步结果。
P
panqiangbiao 已提交
150

P
panqiangbiao 已提交
151 152 153
变更通知类型包括:注册设备变更,相册变更,图片文件变更,音频文件变更,视频文件变更,文件变更,远端文件变更。

**需要权限**:无
P
panqiangbiao 已提交
154

P
panqiangbiao 已提交
155
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
156

P
panqiangbiao 已提交
157 158 159 160
**参数:**

| 参数名   | 类型                | 必填 | 说明                   |
| -------- | ---------------- | ---- | ------------------- |
P
panqiangbiao 已提交
161
| type  | type   | 是   | 媒体类型 <br/>'deviceChange':&nbsp;注册设备变更 <br/>'albumChange':&nbsp;相册变更<br/>'imageChange':&nbsp;图片文件变更<br/>'audioChange': &nbsp;音频文件变更<br/>'videoChange':  &nbsp;视频文件变更<br/>'fileChange':     &nbsp;文件变更<br/>'remoteFileChange':&nbsp;注册设备上文件变更         |
P
panqiangbiao 已提交
162
| callback | callback&lt;void&gt; | 否   | 回调返回空 |
P
panqiangbiao 已提交
163 164 165 166

**示例:**

```
P
panqiangbiao 已提交
167
mediaLibrary.off('imageChange', () => {
P
panqiangbiao 已提交
168
    // stop listening success
P
panqiangbiao 已提交
169 170 171
})
```

P
panqiangbiao 已提交
172
## mediaLibrary.createAsset <sup>8+</sup>
P
panqiangbiao 已提交
173 174 175 176 177

createAsset(mediaType: MediaType, displayName: string, relativePath: string, callback: AsyncCallback&lt;FileAsset&gt;): void;

创建媒体资源,使用callback方式返回结果。

P
panqiangbiao 已提交
178
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
179

P
panqiangbiao 已提交
180
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
181

P
panqiangbiao 已提交
182 183
**参数:**

P
panqiangbiao 已提交
184 185 186 187
| 参数名       | 类型                                   | 必填 | 说明                                                         |
| ------------ | -------------------------------------- | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#MediaType)                | 是   | 媒体类型                                                     |
| displayName  | string                                 | 是   | 展示文件名                                                   |
P
panqiangbiao 已提交
188
| relativePath | string                                 | 是   | 相对公共目录路径,可以通过getPublicDirectory获取不同类型媒体文件的一层目录的relative path |
P
panqiangbiao 已提交
189
| callback     | AsyncCallback<[FileAsset](#FileAsset)> | 是   | 异步获取媒体数据FileAsset之后的回调                          |
P
panqiangbiao 已提交
190 191 192 193

**示例:**

```
P
panqiangbiao 已提交
194 195 196
// 使用Callback方式创建Image类型文件
let mediaType = mediaLibrary.MediaType.IMAGE;
let path = "Pictures/";
P
panqiangbiao 已提交
197
mediaLibrary.createAsset(mediaType, 'imageCallBack.jpg', path, (err, fileAsset) => {
P
panqiangbiao 已提交
198 199
    if (fileAsset != undefined) {
        console.info('createAsset successfully, message = ' + err);
P
panqiangbiao 已提交
200
    } else {
P
panqiangbiao 已提交
201
        console.info('createAsset failed, message = ' + err);
P
panqiangbiao 已提交
202 203
    }
});
P
panqiangbiao 已提交
204 205
```

P
panqiangbiao 已提交
206
## mediaLibrary.createAsset<sup>8+</sup>
P
panqiangbiao 已提交
207 208 209 210 211

createAsset(mediaType: MediaType, displayName: string, relativePath: string): Promise&lt;FileAsset&gt;;

创建媒体资源,使用Promise方式返回结果。

P
panqiangbiao 已提交
212
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
213

P
panqiangbiao 已提交
214
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
215

P
panqiangbiao 已提交
216 217
**参数:**

P
panqiangbiao 已提交
218 219 220 221 222
| 参数名       | 类型                    | 必填 | 说明                                                         |
| ------------ | ----------------------- | ---- | ------------------------------------------------------------ |
| mediaType    | [MediaType](#MediaType) | 是   | 媒体类型                                                     |
| displayName  | string                  | 是   | 展示文件名                                                   |
| relativePath | string                  | 是   | 相对路径,可以通过getPublicDirectory获取不同类型媒体文件的一层目录的relative path |
P
panqiangbiao 已提交
223 224 225 226 227 228 229 230 231 232

**返回值**

| 类型                    | 说明              |
| ----------------------- | ----------------- |
| [FileAsset](#FileAsset) | 媒体数据FileAsset |

**示例:**

```
P
panqiangbiao 已提交
233 234 235
// 使用Promise方式创建Image类型文件
let mediaType = mediaLibrary.MediaType.IMAGE;
let path = "Pictures/";
P
panqiangbiao 已提交
236
mediaLibrary.createAsset(mediaType, "image01.jpg", path).then (function (asset) {
P
panqiangbiao 已提交
237 238 239 240
    console.info("createAsset successfully:"+ JSON.stringify(asset));
}).catch(function(err){
    console.info("createAsset failed with error:"+ err);
});
P
panqiangbiao 已提交
241 242
```

P
panqiangbiao 已提交
243
## mediaLibrary.getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
244

P
panqiangbiao 已提交
245
getPublicDirectory(type: DirectoryType, callback: AsyncCallback&lt;string&gt;): void;
P
panqiangbiao 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264

获取公共目录路径

**需要权限**:无

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明         |
| ------ | ------------------------------- | ---- | ------------ |
| type   | [DirectoryType](#DirectoryType) | 是   | 公共目录类型 |
| callback   |AsyncCallback&lt;string&gt; | 是   | callback 返回公共目录路径 |


**示例:**

```
let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
P
panqiangbiao 已提交
265
media.getPublicDirectory(DIR_CAMERA, (err, dicResult) => {
P
panqiangbiao 已提交
266
    if (dicResult == 'camera/') {
P
panqiangbiao 已提交
267
        console.info('mediaLibraryTest : getPublicDirectory passed');
P
panqiangbiao 已提交
268
    } else {
P
panqiangbiao 已提交
269
        console.info('mediaLibraryTest : getPublicDirectory failed');
P
panqiangbiao 已提交
270 271 272 273
    }
});
```

P
panqiangbiao 已提交
274
## mediaLibrary.getPublicDirectory<sup>8+</sup>
P
panqiangbiao 已提交
275

P
panqiangbiao 已提交
276
getPublicDirectory(type: DirectoryType): Promise&lt;string&gt;;
P
panqiangbiao 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298

获取公共目录路径

**需要权限**:无

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

**参数:**

| 参数名 | 类型                            | 必填 | 说明         |
| ------ | ------------------------------- | ---- | ------------ |
| type   | [DirectoryType](#DirectoryType) | 是   | 公共目录类型 |

**返回值:**

| 类型            | 说明             |
| --------------- | ---------------- |
| Promise<string> | 返回公共目录路径 |

**示例:**

```
P
panqiangbiao 已提交
299
async function example() {
P
panqiangbiao 已提交
300 301 302 303 304 305 306
    let DIR_CAMERA = mediaLibrary.DirectoryType.DIR_CAMERA;
    const dicResult = await media.getPublicDirectory(DIR_CAMERA);
    if (dicResult == 'camera/') {
        console.info('MediaLibraryTest : getPublicDirectory');
    } else {
        console.info('MediaLibraryTest : getPublicDirectory failed');
    }
P
panqiangbiao 已提交
307 308 309
}
```

P
panqiangbiao 已提交
310
## mediaLibrary.getAlbums<sup>6+</sup>
P
panqiangbiao 已提交
311 312 313 314 315

getAlbums(options: MediaFetchOptions, callback: AsyncCallback<Array&lt;Album&gt;>): void;

获取实体相册,使用callback 方式返回结果。

P
panqiangbiao 已提交
316
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
317

P
panqiangbiao 已提交
318
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
319

P
panqiangbiao 已提交
320 321
**参数**

P
panqiangbiao 已提交
322 323 324 325
| 参数名   | 类型                                        | 必填 | 说明                        |
| -------- | ------------------------------------------- | ---- | --------------------------- |
| options  | [MediaFetchOptions](#MediaFetchOptions)     | 是   | 媒体文件获取条件            |
| callback | AsyncCallback&lt;Array<[Album](#Album)>&gt; | 是   | 异步获取Album列表之后的回调 |
P
panqiangbiao 已提交
326 327 328 329

**示例:**

```
P
panqiangbiao 已提交
330 331 332 333
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
334
mediaLibrary.getAlbums(AlbumNoArgsfetchOp, (err, albumList) => {
P
panqiangbiao 已提交
335 336 337 338 339 340 341
    if (albumList != undefined) {
        const album = albumList[0];
        console.info('album.albumName = ' + album.albumName);
        console.info('album.count = ' + album.count);
     } else {
        console.info('getAlbum fail, message = ' + err);
     }
P
panqiangbiao 已提交
342
})
P
panqiangbiao 已提交
343 344
```

P
panqiangbiao 已提交
345
## mediaLibrary.getAlbums<sup>6+</sup>
P
panqiangbiao 已提交
346 347 348 349 350

getAlbums(options: MediaFetchOptions): Promise<Array&lt;Album&gt;>;

获取实体相册,使用 promise 方式返回结果。

P
panqiangbiao 已提交
351
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
352

P
panqiangbiao 已提交
353
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
354

P
panqiangbiao 已提交
355 356
**参数:**

P
panqiangbiao 已提交
357 358 359
| 参数名  | 类型                                    | 必填 | 说明             |
| ------- | --------------------------------------- | ---- | ---------------- |
| options | [MediaFetchOptions](#MediaFetchOptions) | 是   | 媒体文件获取条件 |
P
panqiangbiao 已提交
360 361 362 363 364 365 366 367 368 369

**返回值:**

| 类型                            | 说明          |
| ------------------------------- | ------------- |
| Promise<Array<[Album](#Album)>> | 返回Album列表 |

**示例:**

```
P
panqiangbiao 已提交
370 371 372 373
let AlbumNoArgsfetchOp = {
    selections: '',
    selectionArgs: [],
};
P
panqiangbiao 已提交
374
mediaLibrary.getAlbums(AlbumNoArgsfetchOp).then(function(albumList){
P
panqiangbiao 已提交
375 376 377 378
    console.info("getAlbums successfully:"+ JSON.stringify(albumList));
}).catch(function(err){
    console.info("getAlbums failed with error:"+ err);
});
P
panqiangbiao 已提交
379 380
```

P
panqiangbiao 已提交
381
## mediaLibrary.release<sup>8+</sup>
P
panqiangbiao 已提交
382 383 384

release(callback: AsyncCallback&lt;void&gt;): void;

P
panqiangbiao 已提交
385
释放mediaLibrary实例,当用户确认后续不再使用mediaLibrary实例中的方法后调用release方法释放mediaLibrary实例。
P
panqiangbiao 已提交
386

P
panqiangbiao 已提交
387
**需要权限**:无
P
panqiangbiao 已提交
388

P
panqiangbiao 已提交
389
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
390

P
panqiangbiao 已提交
391 392 393 394
**参数:**

| 参数名   | 类型                   | 必填 | 说明                   |
| -------- | ------------------- | ---- | ---------------------- |
P
panqiangbiao 已提交
395
| callback | AsyncCallback&lt;void&gt; | 是   | 回调表示成功还是失败 |
P
panqiangbiao 已提交
396 397 398 399

**示例:**

```
P
panqiangbiao 已提交
400 401
var media = mediaLibrary.getMediaLibrary(context);
media.release((err, data) => {
P
panqiangbiao 已提交
402
    // do something
P
panqiangbiao 已提交
403
});
P
panqiangbiao 已提交
404 405
```

P
panqiangbiao 已提交
406
## mediaLibrary.release<sup>8+</sup>
P
panqiangbiao 已提交
407 408 409

release(): Promise&lt;void&gt;;

P
panqiangbiao 已提交
410
释放mediaLibrary实例,当用户确认后续不再使用mediaLibrary实例中的方法后调用release方法释放mediaLibrary实例。
P
panqiangbiao 已提交
411

P
panqiangbiao 已提交
412
**需要权限**:无
P
panqiangbiao 已提交
413

P
panqiangbiao 已提交
414
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
415

P
panqiangbiao 已提交
416 417 418 419
**返回值:**

| 类型          | 说明                                |
| ------------- | ----------------------------------- |
P
panqiangbiao 已提交
420
| Promise&lt;void&gt; | Promise实例,用于获取异步返回结果 |
P
panqiangbiao 已提交
421 422 423 424

**示例:**

```
P
panqiangbiao 已提交
425 426
var media = mediaLibrary.getMediaLibrary(context);
media.release()
P
panqiangbiao 已提交
427 428
```

P
panqiangbiao 已提交
429
## FileAsset.isDirectory<sup>8+</sup>
P
panqiangbiao 已提交
430 431 432 433 434

isDirectory(callback: AsyncCallback&lt;boolean&gt;): void;

判断fileAsset是否为目录,使用callback方式返回异步结果。

P
panqiangbiao 已提交
435
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
436

P
panqiangbiao 已提交
437
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
438

P
panqiangbiao 已提交
439 440 441 442 443 444 445 446 447
**参数:**

| 参数名   | 类型                   | 必填 | 说明                          |
| -------- | ---------------------- | ---- | ----------------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 当前FileAsset是否是目录的回调 |

**示例:**

```
P
panqiangbiao 已提交
448
async function example() {
P
panqiangbiao 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory((err, isDirectory) => {
        // do something
    });
}
P
panqiangbiao 已提交
462 463
```

P
panqiangbiao 已提交
464
## FileAsset.isDirectory<sup>8+</sup>
P
panqiangbiao 已提交
465 466 467 468 469

isDirectory():Promise&lt;boolean&gt;;

判断fileAsset是否为目录,使用Promise方式返回异步结果。

P
panqiangbiao 已提交
470
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
471

P
panqiangbiao 已提交
472
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
473

P
panqiangbiao 已提交
474 475 476 477
**返回值:**

| 类型             | 说明                                       |
| ---------------- | ------------------------------------------ |
P
panqiangbiao 已提交
478
| Promise&lt;boolean&gt; | Promise实例,返回当前FileAsset是否是目录 |
P
panqiangbiao 已提交
479 480 481 482

**示例:**

```
P
panqiangbiao 已提交
483
async function example() {
P
panqiangbiao 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isDirectory().then(function(isDirectory){
        console.info("isDirectory result:"+ isDirectory);
    }).catch(function(err){
        console.info("isDirectory failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
499 500
```

P
panqiangbiao 已提交
501
## FileAsset.commitModify<sup>8+</sup>
P
panqiangbiao 已提交
502 503 504 505 506

commitModify(callback: AsyncCallback&lt;void&gt;): void;

修改文件的元数据,使用callback方式返回异步结果。

P
panqiangbiao 已提交
507
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
508

P
panqiangbiao 已提交
509
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
510

P
panqiangbiao 已提交
511 512 513 514 515 516 517 518 519
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例:**

```
P
panqiangbiao 已提交
520
async function example() {
P
panqiangbiao 已提交
521 522 523 524 525 526 527 528 529
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
530
    asset.title = 'newtitle';
P
panqiangbiao 已提交
531 532
    asset.commitModify(() => {
        console.info('commitModify success');   
P
panqiangbiao 已提交
533
    });
P
panqiangbiao 已提交
534
}
P
panqiangbiao 已提交
535 536
```

P
panqiangbiao 已提交
537
## FileAsset.commitModify<sup>8+</sup>
P
panqiangbiao 已提交
538 539 540 541 542

commitModify(): Promise&lt;void&gt;;

修改文件的元数据,使用promise方式返回异步结果。

P
panqiangbiao 已提交
543
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
544

P
panqiangbiao 已提交
545
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
546

P
panqiangbiao 已提交
547 548 549 550
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
551
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
552 553 554 555

**示例:**

```
P
panqiangbiao 已提交
556
async function example() {
P
panqiangbiao 已提交
557 558 559 560 561 562 563 564 565
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
P
panqiangbiao 已提交
566
    asset.title = 'newtitle';
P
panqiangbiao 已提交
567 568
    asset.commitModify();
}
P
panqiangbiao 已提交
569 570
```

P
panqiangbiao 已提交
571
## FileAsset.open<sup>8+</sup>
P
panqiangbiao 已提交
572 573 574 575 576

open(mode: string, callback: AsyncCallback&lt;number&gt;): void;

打开当前文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
577
**需要权限**:ohos.permission.READ_MEDIA('r'模式打开),ohos.permission.WRITE_MEDIA('w'模式打开)
P
panqiangbiao 已提交
578

P
panqiangbiao 已提交
579
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
580

P
panqiangbiao 已提交
581 582 583 584
**参数**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
585
| mode     | string                 | 是   | 打开文件方式,如:'r', 'w', 'rw' |
P
panqiangbiao 已提交
586 587 588 589 590
| callback | AsyncCallback&lt;number&gt; | 是   | 回调返回文件句柄 |

**示例:**

```
P
panqiangbiao 已提交
591
async function example() {
P
panqiangbiao 已提交
592 593 594 595 596 597 598 599 600 601 602
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let path = "Pictures/";
    asset = await media.createAsset(mediaType, "image00003.jpg", path);
    asset.open('rw', (openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
603 604
```

P
panqiangbiao 已提交
605
## FileAsset.open<sup>8+</sup>
P
panqiangbiao 已提交
606 607 608 609 610

open(mode: string): Promise&lt;number&gt;;

打开当前文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
611
**需要权限**:ohos.permission.READ_MEDIA('r'模式打开),ohos.permission.WRITE_MEDIA('w'模式打开)
P
panqiangbiao 已提交
612

P
panqiangbiao 已提交
613
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
614

P
panqiangbiao 已提交
615 616
**参数:**

P
panqiangbiao 已提交
617 618 619
| 参数名 | 类型   | 必填 | 说明                             |
| ------ | ------ | ---- | -------------------------------- |
| mode   | string | 是   | 打开文件方式,如:'r', 'w', 'rw' |
P
panqiangbiao 已提交
620 621 622 623 624

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
625
| Promise&lt;number&gt; | Promise返回文件句柄 |
P
panqiangbiao 已提交
626 627 628 629

**示例:**

```
P
panqiangbiao 已提交
630
async function example() {
P
panqiangbiao 已提交
631 632 633 634 635 636 637 638 639 640 641
    let mediaType = mediaLibrary.MediaType.IMAGE;
    let path = "Pictures/";
    asset = await media.createAsset(mediaType, "image00003.jpg", path);
    asset.open('rw').then((openError, fd) => {
            if(fd > 0){
                asset.close(fd);
            }else{
                console.info('File Open Failed!' + openError);
            }
    });
}
P
panqiangbiao 已提交
642 643
```

P
panqiangbiao 已提交
644
## FileAsset.close<sup>8+</sup>
P
panqiangbiao 已提交
645 646 647 648 649

close(fd: number, callback: AsyncCallback&lt;void&gt;): void;

关闭当前文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
650
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
651

P
panqiangbiao 已提交
652
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
653

P
panqiangbiao 已提交
654 655 656 657
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
658
| fd       | number                 | 是   | 文件描述符          |
P
panqiangbiao 已提交
659 660 661 662 663
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例:**

```
P
panqiangbiao 已提交
664
async function example() {
P
panqiangbiao 已提交
665 666 667 668 669 670 671 672 673 674 675
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd, (closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
676 677
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
678 679 680 681 682
        } else {
            console.info("=======asset.close success====>");
        }
    });
}
P
panqiangbiao 已提交
683 684
```

P
panqiangbiao 已提交
685
## FileAsset.close<sup>8+</sup>
P
panqiangbiao 已提交
686 687 688 689 690

close(fd: number): Promise&lt;void&gt;;

关闭当前文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
691
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
692

P
panqiangbiao 已提交
693
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
694

P
panqiangbiao 已提交
695 696 697 698 699 700 701 702 703 704
**参数:**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| fd     | number | 是   | 文件描述符 |

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
705
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
706 707 708 709

**示例:**

```
P
panqiangbiao 已提交
710
async function example() {
P
panqiangbiao 已提交
711 712 713 714 715 716 717 718 719 720 721
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.close(fd).then((closeErr) => {
        if (closeErr != undefined) {
P
panqiangbiao 已提交
722 723
            console.info('mediaLibraryTest : close : FAIL ' + closeErr.message);
            console.info('mediaLibraryTest : ASSET_CALLBACK : FAIL');
P
panqiangbiao 已提交
724 725 726 727 728 729

        } else {
            console.info("=======asset.close success====>");
        }
    });
}
P
panqiangbiao 已提交
730 731
```

P
panqiangbiao 已提交
732
## FileAsset.getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
733 734 735 736 737

getThumbnail(callback: AsyncCallback&lt;image.PixelMap&gt;): void;

获取文件的缩略图,使用callback方式返回异步结果。

P
panqiangbiao 已提交
738
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
739

P
panqiangbiao 已提交
740
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
741

P
panqiangbiao 已提交
742 743 744 745 746 747 748 749 750
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是   | 回调返回缩略图的PixelMap |

**示例:**

```
P
panqiangbiao 已提交
751
async function example() {
P
panqiangbiao 已提交
752 753 754 755 756 757 758 759 760 761
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail((err, pixelmap) => {
P
panqiangbiao 已提交
762
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
763 764
    });
}
P
panqiangbiao 已提交
765 766
```

P
panqiangbiao 已提交
767
## FileAsset.getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
768 769 770 771 772

getThumbnail(size: Size, callback: AsyncCallback&lt;image.PixelMap&gt;): void;

获取文件的缩略图,传入缩略图尺寸,使用callback方式返回异步结果。

P
panqiangbiao 已提交
773
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
774

P
panqiangbiao 已提交
775
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
776

P
panqiangbiao 已提交
777 778 779 780
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
781
| size     | [Size](#Size)          | 是   | 缩略图尺寸          |
P
panqiangbiao 已提交
782 783 784 785 786
| callback | AsyncCallback&lt;image.PixelMap&gt; | 是   | 回调返回缩略图的PixelMap |

**示例:**

```
P
panqiangbiao 已提交
787
async function example() {
P
panqiangbiao 已提交
788 789 790 791 792 793 794 795 796 797
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
798
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
799 800
    });
}
P
panqiangbiao 已提交
801 802
```

P
panqiangbiao 已提交
803
## FileAsset.getThumbnail<sup>8+</sup>
P
panqiangbiao 已提交
804 805 806 807 808

getThumbnail(size?: Size): Promise&lt;image.PixelMap&gt;;

获取文件的缩略图,传入缩略图尺寸,使用promise方式返回异步结果。

P
panqiangbiao 已提交
809
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
810

P
panqiangbiao 已提交
811
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
812

P
panqiangbiao 已提交
813 814 815 816 817 818 819 820 821 822
**参数:**

| 参数名 | 类型          | 必填 | 说明       |
| ------ | ------------- | ---- | ---------- |
| size   | [Size](#Size) | 否   | 缩略图尺寸 |

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
823
| Promise&lt;image.PixelMap&gt; | Promise返回缩略图的PixelMap |
P
panqiangbiao 已提交
824 825 826 827

**示例:**

```
P
panqiangbiao 已提交
828
async function example() {
P
panqiangbiao 已提交
829 830 831 832 833 834 835 836 837 838
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.getThumbnail(size, (err, pixelmap) => {
P
panqiangbiao 已提交
839
        console.info('mediaLibraryTest : getThumbnail Successfull '+ pixelmap);
P
panqiangbiao 已提交
840 841
    });
}
P
panqiangbiao 已提交
842 843
```

P
panqiangbiao 已提交
844
## FileAsset.favorite<sup>8+</sup>
P
panqiangbiao 已提交
845 846 847 848 849

favorite(isFavorite: boolean, callback: AsyncCallback&lt;void&gt;): void;

将文件设置为收藏文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
850
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
851

P
panqiangbiao 已提交
852
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
853

P
panqiangbiao 已提交
854 855 856 857
**参数:**

| 参数名     | 类型                | 必填 | 说明           |
| ---------- | ------------------- | ---- | -------------- |
P
panqiangbiao 已提交
858
| isFavorite | boolean             | 是   | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
859
| callback   | AsyncCallback&lt;void&gt; | 是   | 回调返回空    |
P
panqiangbiao 已提交
860 861 862 863

**示例:**

```
P
panqiangbiao 已提交
864
async function example() {
P
panqiangbiao 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true,function(err){
        // do something
    });
}
P
panqiangbiao 已提交
878 879
```

P
panqiangbiao 已提交
880
## FileAsset.favorite<sup>8+</sup>
P
panqiangbiao 已提交
881 882 883 884 885

favorite(isFavorite: boolean): Promise&lt;void&gt;;

将文件设置为收藏文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
886
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
887

P
panqiangbiao 已提交
888
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
889

P
panqiangbiao 已提交
890 891
**参数:**

P
panqiangbiao 已提交
892 893 894
| 参数名     | 类型    | 必填 | 说明                                                      |
| ---------- | ------- | ---- | --------------------------------------------------------- |
| isFavorite | boolean | 是   | 是否设置为收藏文件, true:设置为收藏文件,false:取消收藏 |
P
panqiangbiao 已提交
895 896 897 898 899

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
900
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
901 902 903 904

**示例:**

```
P
panqiangbiao 已提交
905
async function example() {
P
panqiangbiao 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.favorite(true).then(function() {
        console.info("favorite successfully");
    }).catch(function(err){
        console.info("favorite failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
921 922
```

P
panqiangbiao 已提交
923
## FileAsset.isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
924 925 926 927 928

isFavorite(callback: AsyncCallback&lt;boolean&gt;): void;

判断该文件是否为收藏文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
929
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
930

P
panqiangbiao 已提交
931
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
932

P
panqiangbiao 已提交
933 934 935 936 937 938 939 940 941
**参数:**

| 参数名   | 类型                   | 必填 | 说明                   |
| -------- | ---------------------- | ---- | ---------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调表示是否为收藏文件 |

**示例:**

```
P
panqiangbiao 已提交
942
async function example() {
P
panqiangbiao 已提交
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isFavorite((err, isFavorite) => {
        if (isFavorite) {
            console.info('FileAsset is favorite');
        }else{
            console.info('FileAsset is not favorite');
        }
    });
}
P
panqiangbiao 已提交
960 961
```

P
panqiangbiao 已提交
962
## FileAsset.isFavorite<sup>8+</sup>
P
panqiangbiao 已提交
963 964 965 966 967

isFavorite():Promise&lt;boolean&gt;;

判断该文件是否为收藏文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
968
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
969

P
panqiangbiao 已提交
970
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
971

P
panqiangbiao 已提交
972 973 974 975
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
976
| Promise&lt;boolean&gt; | Promise回调表示是否是收藏文件 |
P
panqiangbiao 已提交
977 978 979 980

**示例:**

```
P
panqiangbiao 已提交
981
async function example() {
P
panqiangbiao 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isFavorite().then(function(isFavorite){
        console.info("isFavorite result:"+ isFavorite);
    }).catch(function(err){
        console.info("isFavorite failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
997 998
```

P
panqiangbiao 已提交
999
## FileAsset.trash<sup>8+</sup>
P
panqiangbiao 已提交
1000 1001 1002 1003 1004

trash(isTrash: boolean, callback: AsyncCallback&lt;void&g;): void;

当文件被定位时,将文件放到垃圾文件夹,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1005 1006
放入垃圾文件夹的文件不会被真正删除,可以通过isTrash = false参数恢复成正常文件。

P
panqiangbiao 已提交
1007
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1008

P
panqiangbiao 已提交
1009
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1010

P
panqiangbiao 已提交
1011 1012 1013 1014
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
P
panqiangbiao 已提交
1015
| isTrash  | boolean                | 是   | 是否设置为垃圾文件    |
P
panqiangbiao 已提交
1016 1017 1018 1019 1020
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空 |

**示例:**

```
P
panqiangbiao 已提交
1021
async function example() {
P
panqiangbiao 已提交
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true, trashCallBack);
    function trashCallBack(err, trash) {
P
panqiangbiao 已提交
1033
        console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK trash');
P
panqiangbiao 已提交
1034
    }
P
panqiangbiao 已提交
1035
}
P
panqiangbiao 已提交
1036 1037
```

P
panqiangbiao 已提交
1038
## FileAsset.trash<sup>8+</sup>
P
panqiangbiao 已提交
1039 1040 1041 1042 1043

trash(isTrash: boolean,): Promise&lt;void&gt;;

当文件被定位时,将文件放到垃圾文件夹,使用promise方式返回异步结果。

P
panqiangbiao 已提交
1044 1045
放入垃圾文件夹的文件不会被真正删除,可以通过isTrash = false参数恢复成正常文件。

P
panqiangbiao 已提交
1046
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1047

P
panqiangbiao 已提交
1048
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1049

P
panqiangbiao 已提交
1050 1051
**参数:**

P
panqiangbiao 已提交
1052 1053 1054
| 参数名  | 类型    | 必填 | 说明               |
| ------- | ------- | ---- | ------------------ |
| isTrash | boolean | 是   | 是否设置为垃圾文件 |
P
panqiangbiao 已提交
1055 1056 1057 1058 1059

**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
1060
| Promise&lt;void&gt; | Promise返回空 |
P
panqiangbiao 已提交
1061 1062 1063 1064

**示例:**

```
P
panqiangbiao 已提交
1065
async function example() {
P
panqiangbiao 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.trash(true).then(function() {
        console.info("trash successfully");
    }).catch(function(err){
        console.info("trash failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1081 1082
```

P
panqiangbiao 已提交
1083
## FileAsset.isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1084 1085 1086 1087 1088

isTrash(callback: AsyncCallback&lt;boolean&gt;): void;

当文件被定位,判断文件是否为垃圾文件,使用callback方式返回异步结果。

P
panqiangbiao 已提交
1089
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1090

P
panqiangbiao 已提交
1091
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1092

P
panqiangbiao 已提交
1093 1094 1095 1096 1097 1098 1099 1100 1101
**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 回调返回表示文件是否为垃圾文件 |

**示例:**

```
P
panqiangbiao 已提交
1102
async function example() {
P
panqiangbiao 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash(isTrashCallBack);
    function isTrashCallBack(err, isTrash) {
            if (isTrash == true) {
P
panqiangbiao 已提交
1115
                console.info('mediaLibraryTest : ASSET_CALLBACK ASSET_CALLBACK isTrash = ' + isTrash);
P
panqiangbiao 已提交
1116 1117 1118
                asset.trash(true, trashCallBack);

            } else {
P
panqiangbiao 已提交
1119 1120
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash Unsuccessfull = ' + err);
                console.info('mediaLibraryTest : ASSET_CALLBACK isTrash : FAIL');
P
panqiangbiao 已提交
1121 1122

            }
P
panqiangbiao 已提交
1123
    }
P
panqiangbiao 已提交
1124
}
P
panqiangbiao 已提交
1125 1126
```

P
panqiangbiao 已提交
1127
## FileAsset.isTrash<sup>8+</sup>
P
panqiangbiao 已提交
1128 1129 1130 1131 1132

isTrash():Promise&lt;boolean&gt;;

当文件被定位,设置文件为垃圾文件,使用promise方式返回异步结果。

P
panqiangbiao 已提交
1133
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1134

P
panqiangbiao 已提交
1135
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1136

P
panqiangbiao 已提交
1137 1138 1139 1140
**返回值:**

| 类型          | 说明                          |
| ------------- | ----------------------------- |
P
panqiangbiao 已提交
1141
| Promise&lt;void&gt; | Promise回调表示文件是否为垃圾文件 |
P
panqiangbiao 已提交
1142 1143 1144 1145

**示例:**

```
P
panqiangbiao 已提交
1146
async function example() {
P
panqiangbiao 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    const fetchFileResult = await media.getFileAssets(getImageOp);
    const asset = await fetchFileResult.getFirstObject();
    asset.isTrash().then(function(isTrash){
        console.info("isTrash result:"+ isTrash);
    }).catch(function(err){
        console.info("isTrash failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1162 1163 1164 1165 1166 1167
```

**FetchFileResult**

文件检索结果集。

P
panqiangbiao 已提交
1168
## FetchFileResult.getCount<sup>8+</sup>
P
panqiangbiao 已提交
1169 1170 1171 1172 1173

getCount(): number;

获取文件检索结果中的文件总数。

P
panqiangbiao 已提交
1174
**需要权限**:无
P
panqiangbiao 已提交
1175

P
panqiangbiao 已提交
1176
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1177

P
panqiangbiao 已提交
1178 1179
**返回值**

P
panqiangbiao 已提交
1180 1181 1182
| 类型   | 说明             |
| ------ | ---------------- |
| number | 检索到的文件总数 |
P
panqiangbiao 已提交
1183 1184 1185 1186

**示例**

```
P
panqiangbiao 已提交
1187
async function example() {
P
panqiangbiao 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196
    let getFileCountOneOp = {
        selections: fileKeyObj.MEDIA_TYPE + '= ?',
        selectionArgs: [fileType.toString()],
        order: fileKeyObj.DATE_ADDED,
        extendArgs: "LIMIT 0,1",
    };
    let fetchFileResult = await media.getFileAssets(getFileCountOneOp);
    const fetchCount = fetchFileResult.getCount();
}
P
panqiangbiao 已提交
1197 1198
```

P
panqiangbiao 已提交
1199
## FetchFileResult.isAfterLast<sup>8+</sup>
P
panqiangbiao 已提交
1200 1201 1202 1203 1204

isAfterLast(): boolean;

检查结果集是否指向最后一行。

P
panqiangbiao 已提交
1205
**需要权限**:无
P
panqiangbiao 已提交
1206

P
panqiangbiao 已提交
1207
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1208

P
panqiangbiao 已提交
1209 1210 1211 1212
**返回值**

| 类型    | 说明                                                         |
| ------- | ------------------------------------------------------------ |
P
panqiangbiao 已提交
1213
| boolean | 当读到最后一条记录后,再继续读就到结果集尾了,没有记录了,执行isAfterLast()方法就返回true,否则返回false |
P
panqiangbiao 已提交
1214 1215 1216 1217

**示例**

```
P
panqiangbiao 已提交
1218
async function example() {
P
panqiangbiao 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1228
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1229 1230 1231 1232
    let fileAsset = await fetchFileResult.getFirstObject();
    for (var i = 1; i < fetchCount; i++) {
            fileAsset = await fetchFileResult.getNextObject();
            if(i == fetchCount - 1) {
P
panqiangbiao 已提交
1233
              console.info('mediaLibraryTest : isLast');
P
panqiangbiao 已提交
1234
              var result = fetchFileResult.isAfterLast();
P
panqiangbiao 已提交
1235 1236
              console.info('mediaLibraryTest : isAfterLast:' + result);
              console.info('mediaLibraryTest : isAfterLast end');
P
panqiangbiao 已提交
1237
              fetchFileResult.close();
P
panqiangbiao 已提交
1238

P
panqiangbiao 已提交
1239 1240
            }
    }
P
panqiangbiao 已提交
1241
}
P
panqiangbiao 已提交
1242 1243
```

P
panqiangbiao 已提交
1244
## FetchFileResult.close<sup>8+</sup>
P
panqiangbiao 已提交
1245 1246 1247 1248 1249

close(): void;

释放 FetchFileResult 实例并使其失效。无法调用其他方法。

P
panqiangbiao 已提交
1250
**需要权限**:无
P
panqiangbiao 已提交
1251

P
panqiangbiao 已提交
1252
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1253

P
panqiangbiao 已提交
1254 1255 1256
**示例**

```
P
panqiangbiao 已提交
1257
async function example() {
P
panqiangbiao 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.close();
}
P
panqiangbiao 已提交
1268 1269
```

P
panqiangbiao 已提交
1270
## FetchFileResult.getFirstObject<sup>8+</sup>
P
panqiangbiao 已提交
1271 1272 1273 1274 1275

getFirstObject(callback: AsyncCallback&lt;FileAsset&gt;): void;

获取文件检索结果中的第一个文件资产。此方法使用回调返回FileAsset。

P
panqiangbiao 已提交
1276
**需要权限**:无
P
panqiangbiao 已提交
1277

P
panqiangbiao 已提交
1278
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1279

P
panqiangbiao 已提交
1280 1281
**参数**

P
panqiangbiao 已提交
1282 1283 1284
| 参数名   | 类型                                         | 必填 | 说明                                        |
| -------- | -------------------------------------------- | ---- | ------------------------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#FileAsset)&gt; | 是   | 异步获取结果集中第一个FileAsset完成后的回调 |
P
panqiangbiao 已提交
1285 1286 1287 1288

**示例**

```
P
panqiangbiao 已提交
1289
async function example() {
P
panqiangbiao 已提交
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getFirstObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1306 1307
```

P
panqiangbiao 已提交
1308
## FetchFileResult.getFirstObject<sup>8+</sup>
P
panqiangbiao 已提交
1309 1310 1311 1312 1313

getFirstObject(): Promise&lt;FileAsset&gt;;

获取文件检索结果中的第一个文件资产。此方法使用返回FileAsset。

P
panqiangbiao 已提交
1314
**需要权限**:无
P
panqiangbiao 已提交
1315

P
panqiangbiao 已提交
1316
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1317

P
panqiangbiao 已提交
1318 1319 1320 1321
**返回值**

| 类型                | 说明                                   |
| ------------------ | -------------------------------------- |
P
panqiangbiao 已提交
1322
| Promise&lt;[FileAsset](#FileAsset)&gt; | Promise方式返回FileAsset               |
P
panqiangbiao 已提交
1323 1324 1325 1326 1327


**示例**

```
P
panqiangbiao 已提交
1328
async function example() {
P
panqiangbiao 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getFirstObject().then(function(fileAsset){
        console.info("getFirstObject successfully:"+ JSON.stringify(fileAsset));
    }).catch(function(err){
        console.info("getFirstObject failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1343 1344
```

P
panqiangbiao 已提交
1345
## FetchFileResult.getNextObject<sup>8+</sup>
P
panqiangbiao 已提交
1346 1347 1348 1349 1350

 getNextObject(callback: AsyncCallback&lt;FileAsset&gt;): void;

获取文件检索结果中的下一个文件资产。此方法使用callback形式返回结果。

P
panqiangbiao 已提交
1351
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1352

P
panqiangbiao 已提交
1353
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1354

P
panqiangbiao 已提交
1355 1356
**参数**

P
panqiangbiao 已提交
1357 1358 1359
| 参数名    | 类型                                         | 必填 | 说明                                      |
| --------- | -------------------------------------------- | ---- | ----------------------------------------- |
| callbacke | AsyncCallback&lt;[FileAsset](#FileAsset)&gt; | 是   | 异步返回结果集中下一个FileAsset之后的回调 |
P
panqiangbiao 已提交
1360 1361 1362 1363

**示例**

```
P
panqiangbiao 已提交
1364
async function example() {
P
panqiangbiao 已提交
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getNextObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1381 1382
```

P
panqiangbiao 已提交
1383
## FetchFileResult.getNextObject<sup>8+</sup>
P
panqiangbiao 已提交
1384 1385 1386 1387 1388

 getNextObject(): Promise&lt;FileAsset&gt;;

获取文件检索结果中的下一个文件资产。此方法使用promise方式来异步返回FileAsset。

P
panqiangbiao 已提交
1389
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1390

P
panqiangbiao 已提交
1391
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1392

P
panqiangbiao 已提交
1393 1394 1395 1396
**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1397
| Promise&lt;[FileAsset](#FileAsset)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1398 1399 1400 1401

**示例**

```
P
panqiangbiao 已提交
1402
async function example() {
P
panqiangbiao 已提交
1403 1404 1405 1406 1407 1408 1409 1410 1411
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    const fetchCount = fetchFileResult.getCount();
P
panqiangbiao 已提交
1412
    console.info('mediaLibraryTest : count:' + fetchCount);
P
panqiangbiao 已提交
1413 1414
    fileAsset = await fetchFileResult.getNextObject();
}
P
panqiangbiao 已提交
1415 1416
```

P
panqiangbiao 已提交
1417
## FetchFileResult.getLastObject<sup>8+</sup>
P
panqiangbiao 已提交
1418 1419 1420 1421 1422

getLastObject(callback: AsyncCallback&lt;FileAsset&gt;): void;

获取文件检索结果中的最后一个文件资产。此方法使用callback回调来返回FileAsset。

P
panqiangbiao 已提交
1423
**需要权限**:无
P
panqiangbiao 已提交
1424

P
panqiangbiao 已提交
1425
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1426

P
panqiangbiao 已提交
1427 1428
**参数**

P
panqiangbiao 已提交
1429 1430 1431
| 参数     | 类型                                         | 必填 | 说明                        |
| -------- | -------------------------------------------- | ---- | --------------------------- |
| callback | AsyncCallback&lt;[FileAsset](#FileAsset)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1432 1433 1434 1435

**示例**

```
P
panqiangbiao 已提交
1436
async function example() {
P
panqiangbiao 已提交
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getLastObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1453 1454
```

P
panqiangbiao 已提交
1455
## FetchFileResult.getLastObject<sup>8+</sup>
P
panqiangbiao 已提交
1456 1457 1458 1459 1460

getLastObject(): Promise&lt;FileAsset&gt;;

获取文件检索结果中的最后一个文件资产。此方法使用Promise方式来返回FileAsset。

P
panqiangbiao 已提交
1461
**需要权限**:无
P
panqiangbiao 已提交
1462

P
panqiangbiao 已提交
1463
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1464

P
panqiangbiao 已提交
1465 1466 1467 1468
**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1469
| Promise&lt;[FileAsset](#FileAsset)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1470 1471 1472 1473

**示例**

```
P
panqiangbiao 已提交
1474
async function example() {
P
panqiangbiao 已提交
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    let lastObject = await fetchFileResult.getLastObject();
}
P
panqiangbiao 已提交
1485 1486
```

P
panqiangbiao 已提交
1487
## FetchFileResult.getPositionObject<sup>8+</sup>
P
panqiangbiao 已提交
1488 1489 1490 1491 1492

getPositionObject(index: number, callback: AsyncCallback&lt;FileAsset&gt;): void;

获取文件检索结果中具有指定索引的文件资产。此方法使用回调来返回FileAsset。

P
panqiangbiao 已提交
1493
**需要权限**:无
P
panqiangbiao 已提交
1494

P
panqiangbiao 已提交
1495
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1496

P
panqiangbiao 已提交
1497 1498
**参数**

P
panqiangbiao 已提交
1499 1500
| 参数     | 类型                                         | 必填 | 说明                        |
| -------- | -------------------------------------------- | ---- | --------------------------- |
P
panqiangbiao 已提交
1501
| index    | number                                       | 是   | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
1502
| callback | AsyncCallback&lt;[FileAsset](#FileAsset)&gt; | 是   | 异步返回FileAsset之后的回调 |
P
panqiangbiao 已提交
1503 1504 1505 1506

**示例**

```
P
panqiangbiao 已提交
1507
async function example() {
P
panqiangbiao 已提交
1508 1509 1510 1511 1512 1513 1514 1515
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1516
    fetchFileResult.getPositionObject(0, (err, value) => {
P
panqiangbiao 已提交
1517 1518 1519 1520 1521 1522 1523
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1524 1525
```

P
panqiangbiao 已提交
1526
## FetchFileResult.getPositionObject<sup>8+</sup>
P
panqiangbiao 已提交
1527 1528 1529 1530 1531

getPositionObject(index: number): Promise&lt;FileAsset&gt;;

获取文件检索结果中具有指定索引的文件资产。此方法使用Promise形式返回文件Asset。

P
panqiangbiao 已提交
1532
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1533

P
panqiangbiao 已提交
1534
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1535

P
panqiangbiao 已提交
1536 1537 1538 1539
**参数**

| 参数  | 类型   | 必填 | 说明                 |
| ----- | ------ | ---- | -------------------- |
P
panqiangbiao 已提交
1540
| index | number | 是   | 要获取的文件的索引,从0开始 |
P
panqiangbiao 已提交
1541 1542 1543 1544 1545

**返回值**

| 类型                             | 说明                |
| -------------------------------- | ------------------- |
P
panqiangbiao 已提交
1546
| Promise&lt;[FileAsset](#FileAsset)&gt; | 返回FileAsset对象 |
P
panqiangbiao 已提交
1547 1548 1549 1550

**示例**

```
P
panqiangbiao 已提交
1551
async function example() {
P
panqiangbiao 已提交
1552 1553 1554 1555 1556 1557 1558 1559
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
P
panqiangbiao 已提交
1560
    fetchFileResult.getPositionObject(1, (err, value) => {
P
panqiangbiao 已提交
1561 1562 1563 1564 1565 1566 1567
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1568 1569
```

P
panqiangbiao 已提交
1570
## FetchFileResult.getAllObject<sup>8+</sup>
P
panqiangbiao 已提交
1571 1572 1573 1574 1575

getAllObject(callback: AsyncCallback&lt;Array&lt;FileAsset&gt;&gt;): void;

获取文件检索结果中的所有文件资产。此方法使用Callback回调来返回FileAsset结果集。

P
panqiangbiao 已提交
1576
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1577

P
panqiangbiao 已提交
1578
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1579

P
panqiangbiao 已提交
1580 1581
**参数**

P
panqiangbiao 已提交
1582 1583 1584
| 参数     | 类型                                          | 必填 | 说明                            |
| -------- | --------------------------------------------- | ---- | ------------------------------- |
| callback | AsyncCallback<Array<[FileAsset](#FileAsset)>> | 是   | 异步返回FileAsset列表之后的回调 |
P
panqiangbiao 已提交
1585 1586 1587 1588

**示例**

```
P
panqiangbiao 已提交
1589
async function example() {
P
panqiangbiao 已提交
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    fetchFileResult.getAllObject((err, value) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log(value);
    })
}
P
panqiangbiao 已提交
1606 1607
```

P
panqiangbiao 已提交
1608
## FetchFileResult.getAllObject<sup>8+</sup>
P
panqiangbiao 已提交
1609 1610 1611 1612 1613

getAllObject(): Promise&lt;Array&lt;FileAsset&gt;&gt;;

获取文件检索结果中的所有文件资产。此方法使用Promise来返回FileAsset结果集。

P
panqiangbiao 已提交
1614
**需要权限**:无
P
panqiangbiao 已提交
1615

P
panqiangbiao 已提交
1616
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1617

P
panqiangbiao 已提交
1618 1619
**返回值**

P
panqiangbiao 已提交
1620 1621 1622
| 类型                                    | 说明                  |
| --------------------------------------- | --------------------- |
| Promise<Array<[FileAsset](#FileAsset)>> | 返回FileAsset对象列表 |
P
panqiangbiao 已提交
1623 1624 1625 1626

**示例**

```
P
panqiangbiao 已提交
1627
async function example() {
P
panqiangbiao 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
    let imageType = mediaLibrary.MediaType.IMAGE;
    let getImageOp = {
      selections: fileKeyObj.MEDIA_TYPE + '= ?',
      selectionArgs: [imageType.toString()],
      order: fileKeyObj.DATE_ADDED,
      extendArgs: "LIMIT 0,10",
    };
    let fetchFileResult = await media.getFileAssets(getImageOp);
    var data = fetchFileResult.getAllObject();
}
P
panqiangbiao 已提交
1638 1639
```

P
panqiangbiao 已提交
1640
## Album.commitModify<sup>8+</sup>
P
panqiangbiao 已提交
1641 1642 1643 1644 1645

commitModify(callback: AsyncCallback&lt;void&gt;): void;

更新相册属性修改到数据库中。

P
panqiangbiao 已提交
1646
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1647

P
panqiangbiao 已提交
1648
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1649

P
panqiangbiao 已提交
1650 1651 1652 1653
**参数**

| 参数     | 类型                | 必填 | 说明                          |
| -------- | ------------------- | ---- | ----------------------------- |
P
panqiangbiao 已提交
1654
| callback | AsyncCallback&lt;void&gt; | 是   | 回调返回空                  |
P
panqiangbiao 已提交
1655 1656 1657 1658

**示例**

```
P
panqiangbiao 已提交
1659
async function example() {
P
panqiangbiao 已提交
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.albumName = 'hello';
    album.commitModify((err) => {
       if (err) {
           console.error('Failed ');
           return;
       }
       console.log('Modify successful.');
    })
}
P
panqiangbiao 已提交
1675 1676
```

P
panqiangbiao 已提交
1677
## Album.commitModify<sup>8+</sup>
P
panqiangbiao 已提交
1678 1679 1680 1681 1682

commitModify(): Promise&lt;void&gt;;

更新相册属性修改到数据库中。

P
panqiangbiao 已提交
1683
**需要权限**:ohos.permission.READ_MEDIA, ohos.permission.WRITE_MEDIA
P
panqiangbiao 已提交
1684

P
panqiangbiao 已提交
1685
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1686

P
panqiangbiao 已提交
1687 1688 1689 1690 1691 1692 1693 1694 1695
**返回值**

| 类型          | 说明                                                 |
| ------------- | ---------------------------------------------------- |
| Promise&lt;void&gt; | Promise调用返回空 |

**示例**

```
P
panqiangbiao 已提交
1696
async function example() {
P
panqiangbiao 已提交
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.albumName = 'hello';
    album.commitModify().then(function() {
        console.info("commitModify successfully");
    }).catch(function(err){
        console.info("commitModify failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1710 1711
```

P
panqiangbiao 已提交
1712
## Album.getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
1713 1714 1715 1716 1717

getFileAssets(options: MediaFetchOptions, callback: AsyncCallback&lt;FetchFileResult&gt;): void;

按照检索条件获取相册中的文件。此方法使用Callback回调来返回文件结果集。

P
panqiangbiao 已提交
1718
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1719

P
panqiangbiao 已提交
1720
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1721

P
panqiangbiao 已提交
1722 1723
**参数**

P
panqiangbiao 已提交
1724 1725 1726 1727
| 参数     | 类型                                                        | 必填 | 说明                              |
| -------- | ----------------------------------------------------------- | ---- | --------------------------------- |
| options  | [MediaFetchOptions](#MediaFetchOptions)                     | 是   | 媒体检索选项                      |
| callback | AsyncCallback<[FetchFileResult](#FetchFileResult.getCount)> | 是   | 异步返回FetchFileResult之后的回调 |
P
panqiangbiao 已提交
1728 1729 1730 1731

**示例**

```
P
panqiangbiao 已提交
1732
async function example() {
P
panqiangbiao 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp, getFileAssetsCallBack);
    function getFileAssetsCallBack(err, fetchFileResult) {
        // do something
    }
P
panqiangbiao 已提交
1743 1744 1745
}
```

P
panqiangbiao 已提交
1746
## Album.getFileAssets<sup>8+</sup>
P
panqiangbiao 已提交
1747 1748 1749 1750 1751

 getFileAssets(options?: MediaFetchOptions): Promise&lt;FetchFileResult&gt;;

按照检索条件获取相册中的文件。此方法使用异步回调来返回文件结果集。

P
panqiangbiao 已提交
1752
**需要权限**:ohos.permission.READ_MEDIA
P
panqiangbiao 已提交
1753

P
panqiangbiao 已提交
1754
**系统能力**:SystemCapability.Multimedia.MediaLibrary.Core
P
panqiangbiao 已提交
1755 1756 1757

**参数**

P
panqiangbiao 已提交
1758 1759 1760
| 参数    | 类型                                    | 必填 | 说明         |
| ------- | --------------------------------------- | ---- | ------------ |
| options | [MediaFetchOptions](#MediaFetchOptions) | 否   | 媒体检索选项 |
P
panqiangbiao 已提交
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770

**返回值**

| 类型                                                  | 说明                    |
| ----------------------------------------------------- | ----------------------- |
| Promise<[FetchFileResult](#FetchFileResult.getCount)> | 返回FetchFileResult对象 |

**示例**

```
P
panqiangbiao 已提交
1771
async function example() {
P
panqiangbiao 已提交
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
    let AlbumNoArgsfetchOp = {
        selections: '',
        selectionArgs: [],
    };
    const albumList = await media.getAlbums(AlbumNoArgsfetchOp);
    const album = albumList[0];
    album.getFileAssets(fileNoArgsfetchOp).then(function(albumFetchFileResult){
        console.info("getFileAssets successfully:"+ JSON.stringify(albumFetchFileResult));
    }).catch(function(err){
        console.info("getFileAssets failed with error:"+ err);
    });
}
P
panqiangbiao 已提交
1784 1785
```

P
panqiangbiao 已提交
1786
## PeerInfo<sup>8+</sup>
P
panqiangbiao 已提交
1787

P
panqiangbiao 已提交
1788
注册设备信息。
P
panqiangbiao 已提交
1789

P
panqiangbiao 已提交
1790 1791
| 名称       | 类型       | 可读 | 可写 | 说明           |
| ---------- | ---------- | ---- | ---- | -------------- |
P
panqiangbiao 已提交
1792 1793
| deviceName | string     | 是   | 否   | 注册设备名称   |
| networkId  | string     | 是   | 否   | 注册设备网络ID |
P
panqiangbiao 已提交
1794 1795
| deviceType | DeviceType | 是   | 否   | 设备类型       |
| isOnline   | boolean    | 是   | 否   | 是否在线       |
P
panqiangbiao 已提交
1796 1797 1798 1799 1800 1801

FileAsset
---------

**属性:**

P
panqiangbiao 已提交
1802 1803 1804 1805 1806 1807 1808 1809
| 名称         | 类型      | 可读 | 可写 | 说明                                                   |
| ------------ | --------- | ---- | ---- | ------------------------------------------------------ |
| id           | number    | 是   | 否   | 文件资源编号                                           |
| uri          | string    | 是   | 否   | 文件资源uri(如:dataability:///media/image/2)         |
| mimeType     | string    | 是   | 否   | 文件扩展属性                                           |
| mediaType    | MediaType | 是   | 否   | 媒体类型                                               |
| displayName  | string    | 是   | 是   | 显示文件名                                             |
| title        | string    | 是   | 是   | 文件标题                                               |
P
panqiangbiao 已提交
1810
| relativePath | string    | 是   | 是   | 相对公共目录路径                                               |
P
panqiangbiao 已提交
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
| parent       | number    | 是   | 否   | 父目录id                                               |
| size         | number    | 是   | 否   | 文件大小(单位:字节)                                   |
| dateAdded    | number    | 是   | 否   | 添加日期(添加文件时间到1970年1月1日的秒数值)         |
| dateModified | number    | 是   | 否   | 修改日期(修改文件时间到1970年1月1日的秒数值)         |
| dateTaken    | number    | 是   | 否   | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)         |
| artist       | string    | 是   | 否   | 作者                                                   |
| audioAlbum   | string    | 是   | 否   | 专辑                                                   |
| width        | number    | 是   | 否   | 图片宽度(单位:像素)                                 |
| height       | number    | 是   | 否   | 图片高度(单位:像素)                                 |
| orientation  | number    | 是   | 是   | 图片显示方向(顺时针旋转角度,如0,90,180  单位:度) |
| duration     | number    | 是   | 否   | 持续时间(单位:秒)                                   |
| albumId      | number    | 是   | 否   | 文件所归属的相册编号                                   |
| albumUri     | string    | 是   | 否   | 文件所归属相册uri                                      |
| albumName    | string    | 是   | 否   | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
1825 1826 1827

Album
---------
P
panqiangbiao 已提交
1828

P
panqiangbiao 已提交
1829 1830 1831 1832 1833 1834
实体相册。

**属性**

| 名称         | 参数型 | 可读 | 可写 | 说明           |
| ------------ | ------ | ---- | ---- | -------------- |
P
panqiangbiao 已提交
1835 1836
| albumId      | number | 是   | 否   | 相册编号       |
| albumName    | string | 是   | 是   | 相册名称       |
P
panqiangbiao 已提交
1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
| albumUri     | string | 是   | 否   | 相册Uri        |
| dateModified | number | 是   | 否   | 修改日期       |
| count        | number | 是   | 否   | 相册中文件数量 |
| relativePath | string | 是   | 否   | 相对路径       |
| coverUri     | string | 是   | 否   | 封面文件Uri    |

MediaType
---------

枚举,媒体类型。

P
panqiangbiao 已提交
1848 1849 1850 1851 1852 1853
| 名称  | 默认值 | 描述 |
| ----- | ------ | ---- |
| FILE  | 0      | 文件 |
| IMAGE | 1      | 图片 |
| VIDEO | 2      | 视频 |
| AUDIO | 3      | 音频 |
P
panqiangbiao 已提交
1854 1855 1856 1857 1858 1859

FileKey
-------

枚举,文件关键信息。

P
panqiangbiao 已提交
1860 1861 1862
| 名称          | 默认值              | 描述                                                   |
| ------------- | ------------------- |  ------------------------------------------------------ |
| ID            | file_id             | 文件编号                                               |
P
panqiangbiao 已提交
1863
| RELATIVE_PATH | relative_path       |  相对公共目录路径                                               |
P
panqiangbiao 已提交
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
| DISPLAY_NAME  | display_name        |  显示名字                                               |
| PARENT        | parent              |  父目录id                                               |
| MIME_TYPE     | mime_type           | 文件扩展属性                                           |
| MEDIA_TYPE    | media_type          |  媒体类型                                               |
| SIZE          | size                |  文件大小                                               |
| DATE_ADDED    | date_added          | 添加日期(添加文件时间到1970年1月1日的秒数值)         |
| DATE_MODIFIED | date_modified       | 修改日期(修改文件时间到1970年1月1日的秒数值)         |
| DATE_TAKEN    | date_taken          | 拍摄日期(文件拍照时间到1970年1月1日的秒数值)         |
| TITLE         | title               |  文件标题                                               |
| ARTIST        | artist              |  作者                                                   |
| AUDIOALBUM    | audio_album         | 专辑                                                   |
| DURATION      | duration            |  持续时间(单位:秒)                                   |
| WIDTH         | width               | 图片宽度(单位:像素)                                 |
| HEIGHT        | height              |  图片高度(单位:像素)                                 |
| ORIENTATION   | orientation         | 图片显示方向(顺时针旋转角度,如0,90,180  单位:度) |
| ALBUM_ID      | bucket_id           | 文件所归属的相册编号                                   |
| ALBUM_NAME    | bucket_display_name | 文件所归属相册名称                                     |
P
panqiangbiao 已提交
1881 1882 1883 1884 1885 1886

DirectoryType
-------------

枚举,目录类型。

P
panqiangbiao 已提交
1887 1888 1889 1890 1891 1892 1893 1894
| 名称          | 默认值 | 描述               |
| ------------- | ------ | ------------------ |
| DIR_CAMERA    | 0      | 表示Camera文件路径 |
| DIR_VIDEO     | 1      | 表示视频路径       |
| DIR_IMAGE     | 2      | 表示图片路径       |
| DIR_AUDIO     | 3      | 表示音频路径       |
| DIR_DOCUMENTS | 4      | 表示文档路径       |
| DIR_DOWNLOAD  | 5      | 表示下载路径       |
P
panqiangbiao 已提交
1895

P
panqiangbiao 已提交
1896
DeviceType
P
panqiangbiao 已提交
1897 1898 1899 1900
-----------

枚举,设备类型。

P
panqiangbiao 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909
| 名称         | 默认值 | 描述       |
| ------------ | ------ | ---------- |
| TYPE_UNKNOWN | 0      | 未识别设备 |
| TYPE_LAPTOP  | 1      | 笔记本电脑 |
| TYPE_PHONE   | 2      | 手机       |
| TYPE_TABLET  | 3      | 平板电脑   |
| TYPE_WATCH   | 4      | 智能手表   |
| TYPE_CAR     | 5      | 车载设备   |
| TYPE_TV      | 6      | 电视设备   |
P
panqiangbiao 已提交
1910

P
panqiangbiao 已提交
1911
## MediaFetchOptions<sup>8+</sup>
P
panqiangbiao 已提交
1912 1913 1914

检索条件。

P
panqiangbiao 已提交
1915 1916 1917
| 名称          | 类型          | 可读 | 可写 |  必填 |说明             |
| ------------- | ------------- | ---- | ---- |  ---- |---------------- |
| selections    | string        | 是   | 是   |是   | 检索条件         |
P
panqiangbiao 已提交
1918
| selectionArgs | Array&lt;string&gt; | 是   | 是   |是   | 检索条件的值     |
P
panqiangbiao 已提交
1919 1920 1921 1922
| order         | string        | 是   | 是   | 否   |检索结果排序方式 |
| uri           | string        | 是   | 是   | 否   |文件URI          |
| networkId     | string        | 是   | 是   | 否   |注册设备网络ID   |
| extendArgs    | string        | 是   | 是   | 否   |扩展的检索参数   |
P
panqiangbiao 已提交
1923

P
panqiangbiao 已提交
1924
## Size<sup>8+</sup>
P
panqiangbiao 已提交
1925 1926 1927

图片尺寸。

P
panqiangbiao 已提交
1928 1929 1930 1931
| 名称   | 类型   | 可读 | 可写 | 说明             |
| ------ | ------ | ---- | ---- | ---------------- |
| width  | number | 是   | 是   | 宽(单位:像素) |
| height | number | 是   | 是   | 高(单位:像素) |
P
panqiangbiao 已提交
1932