From 6f6e872b1470f0e733bd3260dd2c66860851ce68 Mon Sep 17 00:00:00 2001 From: renhongwei Date: Tue, 14 Feb 2023 18:56:39 +0800 Subject: [PATCH] modify image docs Signed-off-by: renhongwei --- zh-cn/application-dev/reference/apis/js-apis-image.md | 5 +++-- 1 file changed, 3 insertions(+), 2 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 3cf22878de..64c4c4f6a9 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -947,7 +947,8 @@ createImageSource(uri: string): ImageSource **示例:** ```js -let path = this.context.getApplicationContext().fileDirs + "test.jpg"; +let context = featureAbility.getContext(); +let path = context.getCacheDir() + "test.jpg"; const imageSourceApi = image.createImageSource(path); ``` @@ -2529,7 +2530,7 @@ PixelMap的初始化选项。 | 名称 | 类型 | 可读 | 可写 | 说明 | | ------- | ------ | ---- | ---- | --------------------------------------------------- | -| format | string | 是 | 是 | 目标格式。
当前支持格式有:.jpg .png .gif .bmp .webp RAW。 | +| format | string | 是 | 是 | 目标格式。
当前只支持jpg和webp。 | | quality | number | 是 | 是 | JPEG编码中设定输出图片质量的参数,取值范围为1-100。 | | bufferSize9+ | number | 是 | 是 | 用于设置图片大小,默认为10M | -- GitLab