1# Image_Region 2 3 4## Overview 5 6The Image_Region struct describes the region of an image to decode. 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 [x](#x) | X coordinate of the region. It cannot be greater than the width of the original image. | 21| uint32_t [y](#y) | Y coordinate of the region. It cannot be greater than the height of the original image. | 22| uint32_t [width](#width) | Width of the output image, in px. | 23| uint32_t [height](#height) | Height of the output image, in px. | 24 25 26## Member Variable Description 27 28 29### height 30 31``` 32uint32_t Image_Region::height 33``` 34**Description** 35 36Height of the output image, in px. 37 38 39### width 40 41``` 42uint32_t Image_Region::width 43``` 44**Description** 45 46Width of the output image, in px. 47 48 49### x 50 51``` 52uint32_t Image_Region::x 53``` 54**Description** 55 56X coordinate of the region. It cannot be greater than the width of the original image. 57 58 59### y 60 61``` 62uint32_t Image_Region::y 63``` 64**Description** 65 66Y coordinate of the region. It cannot be greater than the height of the original image. 67