未验证 提交 1e71e6f9 编写于 作者: O openharmony_ci 提交者: Gitee

!17306 3.2Release分支:拼写错误修改:无需翻译

Merge pull request !17306 from 葛亚芳/OpenHarmony-3.2-Release
...@@ -92,7 +92,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses an async ...@@ -92,7 +92,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses an async
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
return; return;
} }
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // Release the memory in time after the PixelMap is used. pixelMap.release(); // Release the memory in time after the PixelMap is used.
}); });
} catch (exception) { } catch (exception) {
...@@ -125,7 +125,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses an async ...@@ -125,7 +125,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses an async
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
return; return;
} }
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // Release the memory in time after the PixelMap is used. pixelMap.release(); // Release the memory in time after the PixelMap is used.
}); });
} catch (exception) { } catch (exception) {
...@@ -173,7 +173,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses a promis ...@@ -173,7 +173,7 @@ Takes a screenshot and saves it as a **PixelMap** object. This API uses a promis
try { try {
let promise = screenshot.save(screenshotOptions); let promise = screenshot.save(screenshotOptions);
promise.then((pixelMap) => { promise.then((pixelMap) => {
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // Release the memory in time after the PixelMap is used. pixelMap.release(); // Release the memory in time after the PixelMap is used.
}).catch((err) => { }).catch((err) => {
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
......
...@@ -92,7 +92,7 @@ save(options: ScreenshotOptions, callback: AsyncCallback<image.PixelMap>): ...@@ -92,7 +92,7 @@ save(options: ScreenshotOptions, callback: AsyncCallback<image.PixelMap>):
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
return; return;
} }
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // PixelMap使用完后及时释放内存 pixelMap.release(); // PixelMap使用完后及时释放内存
}); });
} catch (exception) { } catch (exception) {
...@@ -125,7 +125,7 @@ save(callback: AsyncCallback<image.PixelMap>): void ...@@ -125,7 +125,7 @@ save(callback: AsyncCallback<image.PixelMap>): void
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
return; return;
} }
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // PixelMap使用完后及时释放内存 pixelMap.release(); // PixelMap使用完后及时释放内存
}); });
} catch (exception) { } catch (exception) {
...@@ -173,7 +173,7 @@ save(options?: ScreenshotOptions): Promise<image.PixelMap> ...@@ -173,7 +173,7 @@ save(options?: ScreenshotOptions): Promise<image.PixelMap>
try { try {
let promise = screenshot.save(screenshotOptions); let promise = screenshot.save(screenshotOptions);
promise.then((pixelMap) => { promise.then((pixelMap) => {
console.log('Succeeded in saving sreenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber()); console.log('Succeeded in saving screenshot. Pixel bytes number: ' + pixelMap.getPixelBytesNumber());
pixelMap.release(); // PixelMap使用完后及时释放内存 pixelMap.release(); // PixelMap使用完后及时释放内存
}).catch((err) => { }).catch((err) => {
console.log('Failed to save screenshot. Code: ' + JSON.stringify(err)); console.log('Failed to save screenshot. Code: ' + JSON.stringify(err));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册