STM32 V5 source code
guowenxue
2018-02-04 785deec23b4cb1e7c4c4d81eb808f195adb1d98a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _GIMP_IMAGE_
#define _GIMP_IMAGE_
 
#include <stdint.h>
 
typedef struct _SGIMPImage
{
  uint32_t dwWidth;
  uint32_t dwHeight;
  uint32_t dwBytes_per_pixel; /* 3:RGB, 4:RGBA */ 
  uint8_t* pucPixel_data ;
} SGIMPImage ;
 
#endif // _GIMP_IMAGE_