• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Image_Region
2
3## Overview
4
5The Image_Region struct describes the region of an image to decode.
6
7**Since**: 12
8
9**Related module**: [Image_NativeModule](capi-image-nativemodule.md)
10
11**Header file**: [image_common.h](capi-image-common-h.md)
12
13## Summary
14
15### Member Variables
16
17| Name| Description|
18| -- | -- |
19| uint32_t x | X coordinate of the region. It cannot be greater than the width of the original image.|
20| uint32_t y | Y coordinate of the region. It cannot be greater than the height of the original image.|
21| uint32_t width | Width of the output image, in px.|
22| uint32_t height | Height of the output image, in px.|
23