• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 图形图像子系统JS API变更
2
3OpenHarmony 3.2 Beta2版本相较于OpenHarmony 3.2 Beta1版本,图形图像子系统的API变更如下:
4
5## 接口变更
6
7| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
8|---|---|---|---|
9| ohos.effectKit | effectKit | createColorPicker(source: image.PixelMap): Promise\<ColorPicker>;<br>function createColorPicker(source: image.PixelMap, callback: AsyncCallback\<ColorPicker>): void; | 新增 |
10| ohos.effectKit | effectKit | createEffect(source: image.PixelMap): Filter; | 新增 |
11| ohos.effectKit | Color | alpha: number; | 新增 |
12| ohos.effectKit | Color | blue: number; | 新增 |
13| ohos.effectKit | Color | green: number; | 新增 |
14| ohos.effectKit | Color | red: number; | 新增 |
15| ohos.effectKit | ColorPicker | getMainColorSync(): Color; | 新增 |
16| ohos.effectKit | ColorPicker | getMainColor(): Promise\<Color>; | 新增 |
17| ohos.effectKit | Filter | getPixelMap(): image.PixelMap; | 新增 |
18| ohos.effectKit | Filter | grayscale(): Filter; | 新增 |
19| ohos.effectKit | Filter | brightness(bright:number): Filter; | 新增 |
20| ohos.effectKit | Filter | blur(radius:number): Filter; | 新增 |