Library to control a Graphics TFT connected to 4-wire SPI - revised for the Raio RA8875 Display Controller.

Dependents:   FRDM_RA8875_mPaint RA8875_Demo RA8875_KeyPadDemo SignalGenerator ... more

Fork of SPI_TFT by Peter Drescher

Embed: (wiki syntax)

« Back to documentation index

BITMAPINFOHEADER Struct Reference

BITMAPINFOHEADER Struct Reference

Bitmap information header. More...

#include <Bitmap.h>

Data Fields

uint32_t biSize
 Size of info header.
uint32_t biWidth
 Width of image.
uint32_t biHeight
 Height of image.
uint16_t biPlanes
 Number of color planes.
uint16_t biBitCount
 Number of bits per pixel.
uint32_t biCompression
 Type of compression to use.
uint32_t biSizeImage
 Size of image data.
int32_t biXPelsPerMeter
 X pixels per meter.
int32_t biYPelsPerMeter
 Y pixels per meter.
uint32_t biClrUsed
 Number of colors used.
uint32_t biClrImportant
 Number of important colors.

Detailed Description

Bitmap information header.

Definition at line 48 of file Bitmap.h.


Field Documentation

uint16_t biBitCount

Number of bits per pixel.

Definition at line 54 of file Bitmap.h.

uint32_t biClrImportant

Number of important colors.

Definition at line 60 of file Bitmap.h.

uint32_t biClrUsed

Number of colors used.

Definition at line 59 of file Bitmap.h.

uint32_t biCompression

Type of compression to use.

Definition at line 55 of file Bitmap.h.

uint32_t biHeight

Height of image.

Definition at line 52 of file Bitmap.h.

uint16_t biPlanes

Number of color planes.

Definition at line 53 of file Bitmap.h.

uint32_t biSize

Size of info header.

Definition at line 50 of file Bitmap.h.

uint32_t biSizeImage

Size of image data.

Definition at line 56 of file Bitmap.h.

uint32_t biWidth

Width of image.

Definition at line 51 of file Bitmap.h.

int32_t biXPelsPerMeter

X pixels per meter.

Definition at line 57 of file Bitmap.h.

int32_t biYPelsPerMeter

Y pixels per meter.

Definition at line 58 of file Bitmap.h.