提交 cea301bf 编写于 作者: X xu-rui-w

文档整修

Signed-off-by: Nxu-rui-w <xurui101@huawei.com>
上级 4c1ae2d5
...@@ -949,7 +949,7 @@ createImageSource(uri: string, options: SourceOptions): ImageSource ...@@ -949,7 +949,7 @@ createImageSource(uri: string, options: SourceOptions): ImageSource
**示例:** **示例:**
```js ```js
、、、、、、、、、、、 const imageSourceApi = image.createImageSource('/sdcard/test.jpg');
``` ```
## image.createImageSource<sup>7+</sup> ## image.createImageSource<sup>7+</sup>
...@@ -1002,7 +1002,7 @@ createImageSource(fd: number, options: SourceOptions): ImageSource ...@@ -1002,7 +1002,7 @@ createImageSource(fd: number, options: SourceOptions): ImageSource
**示例:** **示例:**
```js ```js
。。。。。。。。。。。。。。。。。。。。。 const imageSourceApi = image.createImageSource(fd);
``` ```
## image.createImageSource<sup>9+</sup> ## image.createImageSource<sup>9+</sup>
...@@ -1050,7 +1050,8 @@ createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource ...@@ -1050,7 +1050,8 @@ createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource
**示例:** **示例:**
```js ```js
......................... const data = new ArrayBuffer(112);
const imageSourceApi = image.createImageSource(data);
``` ```
## image.CreateIncrementalSource<sup>9+</sup> ## image.CreateIncrementalSource<sup>9+</sup>
...@@ -1076,7 +1077,8 @@ CreateIncrementalSource(buf: ArrayBuffer): ImageSource ...@@ -1076,7 +1077,8 @@ CreateIncrementalSource(buf: ArrayBuffer): ImageSource
**示例:** **示例:**
```js ```js
。。。。。。。。。。。。。。。。。。 const buf = new ArrayBuffer(96);
const imageSourceApi = image.CreateIncrementalSource(buf);
``` ```
## image.CreateIncrementalSource<sup>9+</sup> ## image.CreateIncrementalSource<sup>9+</sup>
...@@ -2188,15 +2190,15 @@ ImageSource的初始化选项。 ...@@ -2188,15 +2190,15 @@ ImageSource的初始化选项。
PixelMap的初始化选项。 PixelMap的初始化选项。
**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Code **系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core
| 名称 | 类型 | 可读 | 可写 | 说明 | | 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------------------- | ---------------------------------- | ---- | ---- | -------------- | | ------------------------ | ---------------------------------- | ---- | ---- | -------------- |
| alphaType<sup>9+</sup> | [AlphaType](#alphatype9) | 是 | 是 | 透明度。 | | alphaType<sup>9+</sup> | [AlphaType](#alphatype9) | 是 | 是 | 透明度。 |
| editable | boolean | 是 | 是 | 是否可编辑。 | | editable<sup>8+</sup> | boolean | 是 | 是 | 是否可编辑。 |
| pixelFormat | [PixelMapFormat](#pixelmapformat7) | 是 | 是 | 像素格式。 | | pixelFormat<sup>8+</sup> | [PixelMapFormat](#pixelmapformat7) | 是 | 是 | 像素格式。 |
| scaleMode<sup>9+</sup> | [ScaleMode](#scalemode9) | 是 | 是 | 缩略值。 | | scaleMode<sup>9+</sup> | [ScaleMode](#scalemode9) | 是 | 是 | 缩略值。 |
| size | [Size](#size) | 是 | 是 | 创建图片大小。 | | size<sup>8+</sup> | [Size](#size) | 是 | 是 | 创建图片大小。 |
## DecodingOptions<sup>7+</sup> ## DecodingOptions<sup>7+</sup>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册