diff --git a/zh-cn/application-dev/media/image-tool.md b/zh-cn/application-dev/media/image-tool.md index 4407bef007dc9fa21874d58aad221412ea5eaeff..cfd8a7a557f6ee1b86265d17dec704e0b19e1a2b 100644 --- a/zh-cn/application-dev/media/image-tool.md +++ b/zh-cn/application-dev/media/image-tool.md @@ -20,7 +20,7 @@ EXIF信息的读取与编辑相关API的详细介绍请参见[API参考](../refe // 获取沙箱路径创建ImageSource const fd : number = ...; // 获取需要被处理的图片的fd - const imageSource : ImageSource = image.createImageSource(fd); + const imageSource : image.ImageSource = image.createImageSource(fd); ``` 2. 读取、编辑EXIF信息。 @@ -37,7 +37,7 @@ EXIF信息的读取与编辑相关API的详细介绍请参见[API参考](../refe // 编辑EXIF信息 imageSource.modifyImageProperty('ImageWidth', '120').then(() => { - const width : string = imageSource.getImageProperty("ImageWidth"); + const width : Promise = imageSource.getImageProperty("ImageWidth"); console.info('The new imageWidth is ' + width); }) ```