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