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