1# ImageEffect_Size
2
3
4## Overview
5
6The **ImageEffect_Size** struct describes the image size.
7
8**System capability**: SystemCapability.Multimedia.ImageEffect.Core
9
10**Since**: 12
11
12**Related module**: [ImageEffect](_image_effect.md)
13
14
15## Summary
16
17
18### Member Variables
19
20| Name| Description|
21| -------- | -------- |
22| int32_t [width](#width) | Image width, in px. |
23| int32_t [height](#height) | Image height, in px. |
24
25
26## Member Variable Description
27
28
29### height
30
31```
32int32_t ImageEffect_Size::height
33```
34**Description**
35
36Image height, in px.
37
38
39### width
40
41```
42int32_t ImageEffect_Size::width
43```
44**Description**
45
46Image width, in px.