File: bmp2c.cpp

package info (click to toggle)
powder 118%2Bdfsg1-1
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 10,528 kB
  • sloc: cpp: 55,308; java: 824; makefile: 541; sh: 260; objc: 245; ansic: 107; xml: 55; csh: 54
file content (213 lines) | stat: -rw-r--r-- 4,615 bytes parent folder | download | duplicates (5)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// bmp2c.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <string.h>

#include <iostream>
#include <fstream>

using namespace std;

#pragma pack(push, 1)

struct BMPHEAD
{
    char    id[2];
    int	    size;
    int reserved;
    int	    headersize;
    int	    infosize;
    int	    width;
    int	    depth;
    short   biplane;
    short   bits;
    int	    comp;
    int	    imagesize;
    int	    xpelperm;
    int	    ypelperm;
    int	    clrused;
    int	    clrimport;
};

#pragma pack(pop)

static short
gfx_readportableshort(istream &is)
{
    unsigned char	c[2];
    short	result;

    // This is one of my top-ten stupid conversions.
    // If MSVC weren't such crap, I could just use char * everywhere.
    is.read((char *) c, 2);

    // By reading a byte at a time we can re-assemble the short
    // without worrying about the native format as arithimatic is the 
    // same.
    result = c[0];
    result |= c[1] << 8;

    return result;
}

static int
gfx_readportableint(istream &is)
{
    unsigned short	s1, s2;
    int			result;

    s1 = (unsigned short) gfx_readportableshort(is);
    s2 = (unsigned short) gfx_readportableshort(is);

    result = s1;
    result |= s2 << 16;

    return result;
}

unsigned short *
loadbitmap(const char *name, int &size)
{
    ifstream	    is;
    BMPHEAD	    head;
    int		    i, x, y;

    is.open(name, ios_base::in | ios_base::binary);

    if (!is)
    {
	cerr << "Failure to open: " << name << endl;
	return 0;
    }

    is.read(head.id, 2);

    head.size = gfx_readportableint(is);
    head.reserved = gfx_readportableint(is);
    head.headersize = gfx_readportableint(is);
    head.infosize = gfx_readportableint(is);
    head.width = gfx_readportableint(is);
    head.depth = gfx_readportableint(is);
    head.biplane = gfx_readportableshort(is);
    head.bits = gfx_readportableshort(is);
    head.comp = gfx_readportableint(is);
    head.imagesize = gfx_readportableint(is);
    head.xpelperm = gfx_readportableint(is);
    head.ypelperm = gfx_readportableint(is);
    head.clrused = gfx_readportableint(is);
    head.clrimport = gfx_readportableint(is);

    if (head.bits != 24)
    {
	cerr << "Head.bits is " << head.bits << endl;
	cerr << "Can only support 24 bit colour bitmaps." << endl;
	cerr << "If this is 6144, maybe endianness problem?" << endl;
	return 0;
    }

    unsigned short	*result;

    size = head.imagesize / 3;
    result = new unsigned short [size];

    // BMPs are stored bottom up, so we reverse it here.
    for (y = head.depth - 1; y >= 0; y--)
    {
	for (x = 0; x < head.width; x++)
	{
	    unsigned char		red, blue, green;

	    // BMPs are stored BGR.
	    is.read((char *) &blue, 1);
	    is.read((char *) &green, 1);
	    is.read((char *) &red, 1);
	
	    // Convert to 15 bit BGR.

	    // Convert all to 5 bits from 8 bits.
	    red >>= 3;
	    green >>= 3;
	    blue >>= 3;

	    // Account for endian issues & repack
	    i = x + y * head.width;
	    //result[i] = (((blue << 2) | (green >> 3)) << 8) |
	    //		(((green << 5) | red));
	    result[i] = blue;
	    result[i] <<= 5;
	    result[i] |= green;
	    result[i] <<= 5;
	    result[i] |= red;

	    // Swap endianness.
	    // Because we save this as 16 bit text we don't
	    // have to correct for the machine's endianess.  I hope.
	    //result[i] = (result[i] << 8) | (result[i] >> 8);
	}
    }

    return result;
}

int main(int argc, char *argv[])
{
    cout << "bmp2c: Version 001" << endl;

    if (argc < 2)
    {
	cerr << "No given source file, aborting." << endl;
	return -1;
    }

    unsigned short	*result;
    int			 size;
    int			 i;
    
    result = loadbitmap(argv[1], size);

    if (!result)
	return -1;

    char		outputname[500];
    char		varname[500];

    sprintf(outputname, "%s.c", argv[1]);

    ofstream	os(outputname);

    if (!os)
    {
	cerr << "Unable to write to " << outputname << ", aborting." << endl;
	return -1;
    }

    strcpy(varname, argv[1]);
    // Terminate at .
    if (strchr(varname, '.'))
	*strchr(varname, '.') = '\0';

    os << "// Auto-generated .bmp file" << endl;
    os << "// DO NOT HAND EDIT" << endl;
    os << "// Generated from " << argv[1] << endl;
    os << endl;
    os << "const unsigned short bmp_" << varname << "[" << size << "] = {" << endl;

    for (i = 0; i < size; i++)
    {
	char		buf[100];

	sprintf(buf, "0x%04x", (unsigned int) result[i]);
	if (i < size-1)
	    strcat(buf, ", ");
	os << buf;
	if ((i & 7) == 7)
	    os << endl;
    }
    if (i & 7)
	os << endl;
    
    os << "};" << endl;
    
    return 0;
}