From c6ce6c95b5cea97ba246d33d3427ae2fdaa46c58 Mon Sep 17 00:00:00 2001 From: xu-rui-w Date: Tue, 26 Jul 2022 19:51:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: xu-rui-w --- zh-cn/application-dev/reference/apis/js-apis-image.md | 4 ++-- 1 file changed, 2 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 949d189826..9aa409b0d2 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-image.md +++ b/zh-cn/application-dev/reference/apis/js-apis-image.md @@ -1311,7 +1311,7 @@ modifyImageProperty(key: string, value: string): Promise\ **示例:** ```js -imageSourceApi.modifyImageProperty("ImageWidth", "abc") +imageSourceApi.modifyImageProperty("ImageWidth", "120") .then(() => { const w = imageSourceApi.getImageProperty("ImageWidth") console.info('w', w); @@ -1337,7 +1337,7 @@ modifyImageProperty(key: string, value: string, callback: AsyncCallback\): **示例:** ```js -imageSourceApi.modifyImageProperty("ImageWidth", "abc",() => {}) +imageSourceApi.modifyImageProperty("ImageWidth", "120",() => {}) ``` ### updateData9+ -- GitLab