未验证 提交 786c3508 编写于 作者: 刘关鹏 提交者: Gitee

update zh-cn/application-dev/media/image-tool.md.

Signed-off-by: N刘关鹏 <liuguanpeng1@huawei.com>
上级 2909b0bc
......@@ -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<string> = imageSource.getImageProperty("ImageWidth");
console.info('The new imageWidth is ' + width);
})
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册