1# ImageEffect_Region
2
3
4## Overview
5
6The **ImageEffect_Region** struct describes the image region.
7
8**System capability**: SystemCapability.Multimedia.ImageEffect.Core
9
10**Since**: 12
11
12**Related module**: [ImageEffect](_image_effect.md)
13
14
15## Summary
16
17
18### Member Variables
19
20| Name| Description|
21| -------- | -------- |
22| int32_t [x0](#x0) | Start coordinate of the X axis. |
23| int32_t [y0](#y0) | Start coordinate of the Y axis. |
24| int32_t [x1](#x1) | End coordinate of the X axis. |
25| int32_t [y1](#y1) | End coordinate of the Y axis. |
26
27
28## Member Variable Description
29
30
31### x0
32
33```
34int32_t ImageEffect_Region::x0
35```
36**Description**
37
38Start coordinate of the X axis.
39
40
41### x1
42
43```
44int32_t ImageEffect_Region::x1
45```
46**Description**
47
48End coordinate of the X axis.
49
50
51### y0
52
53```
54int32_t ImageEffect_Region::y0
55```
56**Description**
57
58Start coordinate of the Y axis.
59
60
61### y1
62
63```
64int32_t ImageEffect_Region::y1
65```
66**Description**
67
68End coordinate of the Y axis.