What is the purpose of Int32Rect variables

2

I downloaded a project that works with images and in some cases it uses variables of this type, I do not understand the purpose of this type of variable in image processing.

    
asked by anonymous 22.11.2015 / 04:01

1 answer

2

Int32Rect is a structure of data that expresses a rectangle whose height, width, X origin, and Y origin are all 32-bit integers ( Int32 ").

It can be used, for example, to delimit a rectangular area in a selection to write data to a Bitmap , even for game applications . There are several applications.

    
22.11.2015 / 04:14