1# Image_Size 2 3 4## 概述 5 6图像大小结构体。 7 8**起始版本:** 12 9 10**相关模块:**[Image_NativeModule](_image___native_module.md) 11 12 13## 汇总 14 15 16### 成员变量 17 18| 名称 | 描述 | 19| -------- | -------- | 20| uint32_t [width](#width) | 图片的宽,单位:像素。 | 21| uint32_t [height](#height) | 图片的高,单位:像素。 | 22 23 24## 结构体成员变量说明 25 26 27### height 28 29``` 30uint32_t Image_Size::height 31``` 32**描述** 33图片的高,单位:像素。 34 35 36### width 37 38``` 39uint32_t Image_Size::width 40``` 41**描述** 42图片的宽,单位:像素。 43