1# Image_Region 2 3 4## 概述 5 6待解码的图像源区域结构体。 7 8**起始版本:** 12 9 10**相关模块:**[Image_NativeModule](_image___native_module.md) 11 12**所在头文件:**[image_common.h](image__common_8h.md) 13 14 15## 汇总 16 17 18### 成员变量 19 20| 名称 | 描述 | 21| -------- | -------- | 22| uint32_t [x](#x) | 区域横坐标,不能大于原图的宽度。 | 23| uint32_t [y](#y) | 区域纵坐标,不能大于原图的高度。 | 24| uint32_t [width](#width) | 输出图片的宽,单位:像素。 | 25| uint32_t [height](#height) | 输出图片的高,单位:像素。 | 26 27 28## 结构体成员变量说明 29 30 31### height 32 33``` 34uint32_t Image_Region::height 35``` 36**描述** 37输出图片的高,单位:像素。 38 39 40### width 41 42``` 43uint32_t Image_Region::width 44``` 45**描述** 46输出图片的宽,单位:像素。 47 48 49### x 50 51``` 52uint32_t Image_Region::x 53``` 54**描述** 55区域横坐标,不能大于原图的宽度。 56 57 58### y 59 60``` 61uint32_t Image_Region::y 62``` 63**描述** 64区域纵坐标,不能大于原图的高度。 65