未验证 提交 7ee895e7 编写于 作者: 刘关鹏 提交者: Gitee

update zh-cn/application-dev/media/image-pixelmap-operation.md.

Signed-off-by: N刘关鹏 <liuguanpeng1@huawei.com>
上级 69b2588f
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
const readBuffer = new ArrayBuffer(pixelBytesNumber); const readBuffer = new ArrayBuffer(pixelBytesNumber);
pixelMap.readPixelsToBuffer(readBuffer).then(() => { pixelMap.readPixelsToBuffer(readBuffer).then(() => {
console.info('Succeeded in reading image pixel data.'); console.info('Succeeded in reading image pixel data.');
}).catch(error => { }).catch((error : BusinessError) => {
console.error('Failed to read image pixel data. And the error is: ' + error); console.error('Failed to read image pixel data. And the error is: ' + error);
}) })
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
} }
pixelMap.readPixels(area).then(() => { pixelMap.readPixels(area).then(() => {
console.info('Succeeded in reading the image data in the area.'); console.info('Succeeded in reading the image data in the area.');
}).catch(error => { }).catch((error : BusinessError) => {
console.error('Failed to read the image data in the area. And the error is: ' + error); console.error('Failed to read the image data in the area. And the error is: ' + error);
}) })
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册