From ff75ef49f3a8be77e6bdea5f2ddf077a26f3ae99 Mon Sep 17 00:00:00 2001 From: xu-rui-w Date: Thu, 8 Sep 2022 15:33:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9createImageSource=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: xu-rui-w --- .../application-dev/reference/apis/js-apis-image.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 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 62b1dfcb40..70eab373d5 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -948,7 +948,8 @@ createImageSource(uri: string, options: SourceOptions): ImageSource **示例:** ```js -const imageSourceApi = image.createImageSource('/sdcard/test.jpg'); +var sourceOptions = { sourceDensity: 120 }; +let imageSource = image.createImageSource('test.png', sourceOptions); ``` ## image.createImageSource7+ @@ -1001,7 +1002,8 @@ createImageSource(fd: number, options: SourceOptions): ImageSource **示例:** ```js -const imageSourceApi = image.createImageSource(fd); +var sourceOptions = { sourceDensity: 120 }; +let imageSource = image.createImageSource(-2, sourceOptions); ``` ## image.createImageSource9+ @@ -1118,7 +1120,7 @@ const imageSourceApi = image.CreateIncrementalSource(buf); | 名称 | 类型 | 可读 | 可写 | 说明 | | ---------------- | -------------- | ---- | ---- | ------------------------------------------------------------ | -| supportedFormats | Array\ | 是 | 否 | 支持的图片格式,包括:png,jpeg,wbmp,bmp,gif,webp,heif等。 | +| supportedFormats | Array\ | 是 | 否 | 支持的图片格式,包括:png,jpeg,bmp,gif,webp,RAW。 | ### getImageInfo @@ -1545,7 +1547,7 @@ const imagePackerApi = image.createImagePacker(); ## ImagePacker -图片打包器类,用于图片压缩和打包。在调用ImagePacker的方法前,需要先通过createImagePacker构建一个ImagePacker实例。 +图片打包器类,用于图片压缩和打包。在调用ImagePacker的方法前,需要先通过createImagePacker构建一个ImagePacker实例,当前支持格式有:jpeg webp。 ### 属性 @@ -2457,7 +2459,7 @@ PixelMap的初始化选项。 | 名称 | 类型 | 可读 | 可写 | 说明 | | ------- | ------ | ---- | ---- | --------------------------------------------------- | -| format | string | 是 | 是 | 目标格式。
当前支持格式有:.jpg .png .gif .bmp .webp RAW。 | +| format | string | 是 | 是 | 目标格式。
当前支持格式有:jpeg webp。 | | quality | number | 是 | 是 | JPEG编码中设定输出图片质量的参数,取值范围为1-100。 | | bufferSize9+ | number | 是 | 是 | 用于设置图片大小,默认为10M。 | -- GitLab