1# ImageEffect_Size
2
3
4## 概述
5
6图像尺寸结构体。
7
8**系统能力:** SystemCapability.Multimedia.ImageEffect.Core
9
10**起始版本:** 12
11
12**相关模块:**[ImageEffect](_image_effect.md)
13
14
15## 汇总
16
17
18### 成员变量
19
20| 名称 | 描述 |
21| -------- | -------- |
22| int32_t [width](#width) | 图像宽度,单位:像素。  |
23| int32_t [height](#height) | 图像高度,单位:像素。  |
24
25
26## 结构体成员变量说明
27
28
29### height
30
31```
32int32_t ImageEffect_Size::height
33```
34**描述**
35图像高度,单位:像素。
36
37
38### width
39
40```
41int32_t ImageEffect_Size::width
42```
43**描述**
44图像宽度,单位:像素。
45