1# ImageEffect_Region 2 3 4## 概述 5 6图像区域结构体。 7 8**系统能力:** SystemCapability.Multimedia.ImageEffect.Core 9 10**起始版本:** 12 11 12**相关模块:**[ImageEffect](_image_effect.md) 13 14 15## 汇总 16 17 18### 成员变量 19 20| 名称 | 描述 | 21| -------- | -------- | 22| int32_t [x0](#x0) | X轴起始坐标。 | 23| int32_t [y0](#y0) | Y轴起始坐标。 | 24| int32_t [x1](#x1) | X轴终止坐标。 | 25| int32_t [y1](#y1) | Y轴终止坐标。 | 26 27 28## 结构体成员变量说明 29 30 31### x0 32 33``` 34int32_t ImageEffect_Region::x0 35``` 36**描述** 37X轴起始坐标。 38 39 40### x1 41 42``` 43int32_t ImageEffect_Region::x1 44``` 45**描述** 46X轴终止坐标。 47 48 49### y0 50 51``` 52int32_t ImageEffect_Region::y0 53``` 54**描述** 55Y轴起始坐标。 56 57 58### y1 59 60``` 61int32_t ImageEffect_Region::y1 62``` 63**描述** 64Y轴终止坐标。 65