未验证 提交 9c2f70fe 编写于 作者: O openharmony_ci 提交者: Gitee

!7016 【轻量级 PR】:update zh-cn/application-dev/reference/apis/js-apis-effectKit.md:示例代码问题修改,需同步翻译

Merge pull request !7016 from 葛亚芳/N/A
...@@ -42,10 +42,10 @@ createEffect(source: image.PixelMap): Filter ...@@ -42,10 +42,10 @@ createEffect(source: image.PixelMap): Filter
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts) image.createPixelMap(color, opts)
.then((pixelmap) => { .then((pixelMap) => {
let headFilter = effectKit.createEffect(pixelmap) let headFilter = effectKit.createEffect(pixelMap)
}) })
``` ```
...@@ -74,13 +74,12 @@ createColorPicker(source: image.PixelMap): Promise\<ColorPicker> ...@@ -74,13 +74,12 @@ createColorPicker(source: image.PixelMap): Promise\<ColorPicker>
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts, (pixelmap) => { image.createPixelMap(color, opts, (pixelMap) => {
effectKit.createColorPicker(pixelMap).then(colorPicker => { effectKit.createColorPicker(pixelMap).then(colorPicker => {
console.info("color picker=" + colorPicker); console.info("color picker=" + colorPicker);
})
.catch(ex => console.error(".error=" + ex.toString()))
}) })
.catch(ex => console.error(".error=" + ex.toString()))
}) })
``` ```
...@@ -104,15 +103,15 @@ createColorPicker(source: image.PixelMap, callback: AsyncCallback\<ColorPicker>) ...@@ -104,15 +103,15 @@ createColorPicker(source: image.PixelMap, callback: AsyncCallback\<ColorPicker>)
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts, (pixelmap) => { image.createPixelMap(color, opts, (pixelMap) => {
effectKit.createColorPicker(pixelMap, (error, colorPicker) ) { effectKit.createColorPicker(pixelMap, (error, colorPicker) => {
if(error) { if(error) {
console.log('Failed to create color picker.'); console.log('Failed to create color picker.');
} else { } else {
console.log('Succeeded in creating color picker.'); console.log('Succeeded in creating color picker.');
} }
}) })
}) })
``` ```
...@@ -152,7 +151,7 @@ getMainColor(): Promise\<Color> ...@@ -152,7 +151,7 @@ getMainColor(): Promise\<Color>
```js ```js
colorPicker.getMainColor().then(color => { colorPicker.getMainColor().then(color => {
console.log('Succeeded in getting main color.') console.log('Succeeded in getting main color.')
console.info("color[ARGB]=" + color.alpha "," + color.red + "," + color.green + "," + color.blue); console.info("color[ARGB]=" + color.alpha + "," + color.red + "," + color.green + "," + color.blue);
}).catch(error => { }).catch(error => {
console.log('Failed to get main color.'); console.log('Failed to get main color.');
}) })
...@@ -175,8 +174,8 @@ getMainColorSync(): Color ...@@ -175,8 +174,8 @@ getMainColorSync(): Color
**示例:** **示例:**
```js ```js
let color = colorPicker.getMainColorSync() let color = colorPicker.getMainColorSync();
console.log('get main color =' + color) console.log('get main color =' + color);
``` ```
## Filter ## Filter
...@@ -208,11 +207,11 @@ blur(radius: number): Filter ...@@ -208,11 +207,11 @@ blur(radius: number): Filter
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts) image.createPixelMap(color, opts)
.then((pixelmap) => { .then((pixelMap) => {
let radius = 5; let radius = 5;
let headFilter = effectKit.createEffect(pixelmap) let headFilter = effectKit.createEffect(pixelMap)
if (headFilter != null) { if (headFilter != null) {
headFilter.blur(radius) headFilter.blur(radius)
} }
...@@ -244,11 +243,11 @@ brightness(bright: number): Filter ...@@ -244,11 +243,11 @@ brightness(bright: number): Filter
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts) image.createPixelMap(color, opts)
.then((pixelmap) => { .then((pixelMap) => {
let bright = 0.5; let bright = 0.5;
let headFilter = effectKit.createEffect(pixelmap) let headFilter = effectKit.createEffect(pixelMap)
if (headFilter != null) { if (headFilter != null) {
headFilter.brightness(bright) headFilter.brightness(bright)
} }
...@@ -274,10 +273,10 @@ grayscale(): Filter ...@@ -274,10 +273,10 @@ grayscale(): Filter
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts) image.createPixelMap(color, opts)
.then((pixelmap) => { .then((pixelMap) => {
let headFilter = effectKit.createEffect(pixelmap) let headFilter = effectKit.createEffect(pixelMap)
if (headFilter != null) { if (headFilter != null) {
headFilter.grayscale() headFilter.grayscale()
} }
...@@ -303,9 +302,9 @@ getPixelMap(): image.PixelMap ...@@ -303,9 +302,9 @@ getPixelMap(): image.PixelMap
```js ```js
import image from "@ohos.multimedia.image" import image from "@ohos.multimedia.image"
const color = new ArrayBuffer(96); const color = new ArrayBuffer(96);
let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } } let opts = { editable: true, pixelFormat: 3, size: { height: 4, width: 6 } };
image.createPixelMap(color, opts) image.createPixelMap(color, opts)
.then((pixelmap) => { .then((pixelMap) => {
let pixel = effectKit.createEffect(pixelmap).grayscale().getPixelMap() let pixel = effectKit.createEffect(pixelMap).grayscale().getPixelMap()
}) })
``` ```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册