14 typedef struct bitmap_s
{ /* bitmap description */
17 uint8_t palette
[256*3];
21 #define DEFAULT_CMAP_SIZE 16 /* size of default color map */
24 * Neutralize little endians.
26 uint16_t le_short(uint16_t x
)
29 uint8_t *p
= (uint8_t *)(&x
);
31 val
= (*p
++ & 0xff) << 0;
32 val
|= (*p
& 0xff) << 8;
37 void skip_bytes (FILE *fp
, int n
)
43 int main (int argc
, char *argv
[])
49 uint16_t data_offset
, n_colors
;
52 fprintf (stderr
, "Usage: %s file\n", argv
[0]);
56 if ((fp
= fopen (argv
[1], "rb")) == NULL
) {
61 if (fgetc (fp
) != 'B' || fgetc (fp
) != 'M') {
62 fprintf (stderr
, "%s is not a bitmap file.\n", argv
[1]);
67 * read width and height of the image, and the number of colors used;
71 fread (&data_offset
, sizeof (uint16_t), 1, fp
);
73 fread (&b
->width
, sizeof (uint16_t), 1, fp
);
75 fread (&b
->height
, sizeof (uint16_t), 1, fp
);
77 fread (&n_colors
, sizeof (uint16_t), 1, fp
);
83 data_offset
= le_short(data_offset
);
84 b
->width
= le_short(b
->width
);
85 b
->height
= le_short(b
->height
);
86 n_colors
= le_short(n_colors
);
88 /* assume we are working with an 8-bit file */
89 if ((n_colors
== 0) || (n_colors
> 256 - DEFAULT_CMAP_SIZE
)) {
90 /* reserve DEFAULT_CMAP_SIZE color map entries for default map */
91 n_colors
= 256 - DEFAULT_CMAP_SIZE
;
95 " * Automatically generated by \"tools/bmp_logo\"\n"
100 "#ifndef __BMP_LOGO_H__\n"
101 "#define __BMP_LOGO_H__\n\n"
102 "#define BMP_LOGO_WIDTH\t\t%d\n"
103 "#define BMP_LOGO_HEIGHT\t\t%d\n"
104 "#define BMP_LOGO_COLORS\t\t%d\n"
105 "#define BMP_LOGO_OFFSET\t\t%d\n"
107 b
->width
, b
->height
, n_colors
,
110 /* allocate memory */
111 if ((b
->data
= (uint8_t *)malloc(b
->width
* b
->height
)) == NULL
) {
113 printf ("Error allocating memory for file %s.\n", argv
[1]);
117 /* read and print the palette information */
118 printf ("unsigned short bmp_logo_palette[] = {\n");
120 for (i
=0; i
<n_colors
; ++i
) {
121 b
->palette
[(int)(i
*3+2)] = fgetc(fp
);
122 b
->palette
[(int)(i
*3+1)] = fgetc(fp
);
123 b
->palette
[(int)(i
*3+0)] = fgetc(fp
);
126 printf ("%s0x0%X%X%X,%s",
127 ((i
%8) == 0) ? "\t" : " ",
128 (b
->palette
[(int)(i
*3+0)] >> 4) & 0x0F,
129 (b
->palette
[(int)(i
*3+1)] >> 4) & 0x0F,
130 (b
->palette
[(int)(i
*3+2)] >> 4) & 0x0F,
131 ((i
%8) == 7) ? "\n" : ""
135 /* seek to offset indicated by file header */
136 fseek(fp
, (long)data_offset
, SEEK_SET
);
138 /* read the bitmap; leave room for default color map */
142 printf ("unsigned char bmp_logo_bitmap[] = {\n");
143 for (i
=(b
->height
-1)*b
->width
; i
>=0; i
-=b
->width
) {
144 for (x
= 0; x
< b
->width
; x
++) {
145 b
->data
[(uint16_t) i
+ x
] = (uint8_t) fgetc (fp
) \
151 for (i
=0; i
<(b
->height
*b
->width
); ++i
) {
156 ((i
%8) == 7) ? '\n' : ' '
161 "#endif /* __BMP_LOGO_H__ */\n"