blob: 5c1640173138c91bdea17f99d8d1012169a62146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef _BITMAP_H_
#define _BITMAP_H_
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#define _HEADER_SIZE 54 //Fileheader + infoheader
#define IDENTIFIER 0x424d //BM BitMap identifier
//Address Definitions
#define BF_TYPE 0x00
#define BF_SIZE 0x02
#define BF_OFF_BITS 0x0a
#define BI_SIZE 0x0e
#define BI_WIDTH 0x12
#define BI_HEIGHT 0x16
#define BI_BIT_COUNT 0x1c
#define BI_COMPRESSION 0x1e
#define BI_SIZE_IMAGE 0x22
#define BI_CLR_USED 0x2e
#define BI_CLR_IMPORTANT 0x32
#define R(x) (0xff0000 & x) >> 16
#define G(x) (0x00ff00 & x) >> 8
#define B(x) (0x0000ff & x)
struct bitmap_file_header
{
uint8_t error;
uint16_t bfType;
uint32_t bfSize;
uint32_t bfOffBits;
uint32_t biSize;
int32_t biWidth;
int32_t biHeight;
uint16_t biBitCount;
uint32_t biCompression;
uint32_t biSizeImage;
uint32_t biClrUsed;
uint32_t biClrImportant;
unsigned char *tables;
uint32_t tablesc;
};
struct bitmap_pixel_data
{
unsigned int x,y;
uint8_t **R;
uint8_t **G;
uint8_t **B;
};
uint32_t bitmap_flip_byte(unsigned char* _v, int _c);
struct bitmap_pixel_data bitmap_read(char *_file);
struct bitmap_file_header bitmap_read_file_header(FILE *_file);
struct bitmap_pixel_data bitmap_read_pixel_data(FILE *_file, struct bitmap_file_header _header);
#endif /* end of include guard: _BITMAP_H_ */
|