Image Struct
The image struct contains 3 members. width
, height
, and data
.
int32_t width
is the images width.int32_t width
is the images height.uint8_t* data
is the images pixel data and has to be aunsigned char*
/uint8_t*
.
The image struct contains 3 members. width
, height
, and data
.
int32_t width
is the images width.int32_t width
is the images height.uint8_t* data
is the images pixel data and has to be a unsigned char*
/uint8_t*
.