From cea301bf42c61f2e9dd36c29eeafffbfabe0b6c7 Mon Sep 17 00:00:00 2001 From: xu-rui-w Date: Thu, 21 Jul 2022 09:57:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3=E6=95=B4=E4=BF=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: xu-rui-w --- .../reference/apis/js-apis-image.md | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-image.md b/zh-cn/application-dev/reference/apis/js-apis-image.md index 43cbc6de32..a599623f3b 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -949,7 +949,7 @@ createImageSource(uri: string, options: SourceOptions): ImageSource **示例:** ```js -、、、、、、、、、、、 +const imageSourceApi = image.createImageSource('/sdcard/test.jpg'); ``` ## image.createImageSource7+ @@ -1002,7 +1002,7 @@ createImageSource(fd: number, options: SourceOptions): ImageSource **示例:** ```js -。。。。。。。。。。。。。。。。。。。。。 +const imageSourceApi = image.createImageSource(fd); ``` ## image.createImageSource9+ @@ -1050,7 +1050,8 @@ createImageSource(buf: ArrayBuffer, options: SourceOptions): ImageSource **示例:** ```js -......................... +const data = new ArrayBuffer(112); +const imageSourceApi = image.createImageSource(data); ``` ## image.CreateIncrementalSource9+ @@ -1076,7 +1077,8 @@ CreateIncrementalSource(buf: ArrayBuffer): ImageSource **示例:** ```js -。。。。。。。。。。。。。。。。。。 +const buf = new ArrayBuffer(96); +const imageSourceApi = image.CreateIncrementalSource(buf); ``` ## image.CreateIncrementalSource9+ @@ -2188,15 +2190,15 @@ ImageSource的初始化选项。 PixelMap的初始化选项。 -**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Code +**系统能力:** 以下各项对应的系统能力均为SystemCapability.Multimedia.Image.Core -| 名称 | 类型 | 可读 | 可写 | 说明 | -| ---------------------- | ---------------------------------- | ---- | ---- | -------------- | -| alphaType9+ | [AlphaType](#alphatype9) | 是 | 是 | 透明度。 | -| editable | boolean | 是 | 是 | 是否可编辑。 | -| pixelFormat | [PixelMapFormat](#pixelmapformat7) | 是 | 是 | 像素格式。 | -| scaleMode9+ | [ScaleMode](#scalemode9) | 是 | 是 | 缩略值。 | -| size | [Size](#size) | 是 | 是 | 创建图片大小。 | +| 名称 | 类型 | 可读 | 可写 | 说明 | +| ------------------------ | ---------------------------------- | ---- | ---- | -------------- | +| alphaType9+ | [AlphaType](#alphatype9) | 是 | 是 | 透明度。 | +| editable8+ | boolean | 是 | 是 | 是否可编辑。 | +| pixelFormat8+ | [PixelMapFormat](#pixelmapformat7) | 是 | 是 | 像素格式。 | +| scaleMode9+ | [ScaleMode](#scalemode9) | 是 | 是 | 缩略值。 | +| size8+ | [Size](#size) | 是 | 是 | 创建图片大小。 | ## DecodingOptions7+ -- GitLab