-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmplib.cpp
443 lines (361 loc) · 12.3 KB
/
bmplib.cpp
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#include <stdio.h>
#include <iostream>
#include <cstdlib>
#include "bmplib.h"
#include "unistd.h"
using namespace std;
using std::cout;
using std::cin;
using std::endl;
typedef unsigned char uint8;
typedef unsigned short int uint16;
typedef unsigned int uint32;
//#define BMP_BIG_ENDIAN
#define BYTE_SWAP(num) (((num>>24)&0xff) | ((num<<8)&&0xff0000) | ((num>>8)&0xff00) | ((num<<24)&0xff000000))
typedef struct {
uint8 bfType1;
uint8 bfType2;
uint32 bfSize;
uint16 bfReserved1;
uint16 bfReserved2;
uint32 bfOffBits;
uint32 biSize; // size of structure, in bytes
uint32 biWidth; // bitmap width, in pixels
uint32 biHeight; // bitmap height, in pixels
uint16 biPlanes; // see below
uint16 biBitCount; // see below
uint32 biCompression; // see below
uint32 biSizeImage; // see below
uint32 biXPelsPerMeter; // see below
uint32 biYPelsPerMeter; // see below
uint32 biClrUsed; // see below
uint32 biClrImportant; // see below
} BITMAPFILEHEADER, *PBITMAPFILEHEADER;
typedef struct {
uint8 rgbBlue;
uint8 rgbGreen;
uint8 rgbRed;
} RGBTRIPLE;
void write_hdr(uint8 *hdr, int *hdr_idx, uint32 data, uint32 size);
uint8 tempImage[SIZE][SIZE][RGB];
uint8 tempGSImage[SIZE][SIZE];
int readRGBBMP(const char* filename, unsigned char inputImage[][SIZE][RGB])
{
uint8 type[2];
int headersize = 0;
int i,j,k;
//BITMAPFILEHEADER bfh;
/* file pointer */
FILE *file;
/* read input bmp into the data matrix */
if (!(file=fopen(filename,"rb")))
{
cout << "Cannot open file: " << filename <<endl;
return(1);
}
fread(type, sizeof(unsigned char), 0x2, file);
if(type[0] != 'B' and type[1] != 'M'){
cout << "Not a BMP file" << endl;
return(1);
}
fseek(file, 8, SEEK_CUR);
fread(&headersize, sizeof(uint32), 1, file);
#ifdef BMP_BIG_ENDIAN
headersize = BYTE_SWAP(headersize);
#endif
//cout << "Header size is " << headersize << endl;
fseek(file, headersize, SEEK_SET);
fread(tempImage, sizeof(uint8), SIZE*SIZE*RGB, file);
// cout << (int)tempImage[0][0][0] << "," << (int)tempImage[0][0][1] << "," << (int)tempImage[0][0][2] << endl;
fclose(file);
for(i=0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
for(k=0; k < RGB; k++){
inputImage[SIZE-1-i][j][RGB-1-k] = tempImage[i][j][k];
//cerr << tempImage[i][j][k] << ",";
}
}
//cerr << endl;
}
return 0;
}
int writeRGBBMP(const char* filename, unsigned char outputImage[][SIZE][RGB])
{
uint8 hdr[54];
int hdr_idx = 0;
int i,j,k;
BITMAPFILEHEADER bfh;
// file pointer
FILE *file;
bfh.bfType1 = 'B';
bfh.bfType2 = 'M';
bfh.bfSize = 0x36;
bfh.bfReserved1 = 0x0;
bfh.bfReserved2 = 0x0;
bfh.bfOffBits = 0x36;
bfh.biSize = 0x28;
bfh.biWidth = SIZE;
bfh.biHeight = SIZE;
bfh.biPlanes = 1;
bfh.biBitCount = 24;
bfh.biCompression = 0;
bfh.biSizeImage = sizeof(RGBTRIPLE)*SIZE*SIZE;
bfh.biXPelsPerMeter = 2400;
bfh.biYPelsPerMeter = 2400;
bfh.biClrUsed = 0;
bfh.biClrImportant = 0;
write_hdr(hdr, &hdr_idx, bfh.bfType1, sizeof(uint8));
write_hdr(hdr, &hdr_idx, bfh.bfType2, sizeof(uint8));
write_hdr(hdr, &hdr_idx, bfh.bfSize, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.bfReserved1, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.bfReserved2, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.bfOffBits, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biSize, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biWidth, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biHeight, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biPlanes, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.biBitCount, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.biCompression, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biSizeImage, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biXPelsPerMeter, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biYPelsPerMeter, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biClrUsed, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biClrImportant, sizeof(uint32));
for(i=0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
for(k=0; k < RGB; k++){
tempImage[SIZE-1-i][j][RGB-1-k] = outputImage[i][j][k];
}
}
}
// write result bmp file
if (!(file=fopen(filename,"wb")))
{
cout << "Cannot open file: " << filename << endl;
return(1);
}
fwrite(&hdr, sizeof(unsigned char), 0x36, file);
fwrite(tempImage, sizeof(unsigned char), SIZE*SIZE*RGB, file);
fclose(file);
return 0;
}
void write_hdr(uint8 *hdr, int *hdr_idx, uint32 data, uint32 size)
{
if(size == 1){
hdr[*hdr_idx] = (uint8) data;
(*hdr_idx) += 1;
}
else if(size == 2){
hdr[*hdr_idx] = (uint8) (data & 0x00ff);
(*hdr_idx) += 1;
hdr[*hdr_idx] = (uint8) ((data & 0xff00) >> 8);
(*hdr_idx) += 1;
}
else if(size == 4){
hdr[*hdr_idx] = (uint8) (data & 0x000000ff);
(*hdr_idx) += 1;
hdr[*hdr_idx] = (uint8) ((data & 0x0000ff00) >> 8);
(*hdr_idx) += 1;
hdr[*hdr_idx] = (uint8) ((data & 0x00ff0000) >> 16);
(*hdr_idx) += 1;
hdr[*hdr_idx] = (uint8) ((data & 0xff000000) >> 24);
(*hdr_idx) += 1;
}
else {
printf("Illegal size in write_hdr...consult your instructor\n");
}
}
int readGSBMP(const char* filename, unsigned char inputImage[][SIZE])
{
uint8 type[2];
int headersize = 0;
int i,j;
//BITMAPFILEHEADER bfh;
/* file pointer */
FILE *file;
/* read input bmp into the data matrix */
if (!(file=fopen(filename,"rb")))
{
cout << "Cannot open file: " << filename <<endl;
return(1);
}
fread(type, sizeof(unsigned char), 0x2, file);
if(type[0] != 'B' and type[1] != 'M'){
cout << "Not a BMP file" << endl;
return(1);
}
fseek(file, 8, SEEK_CUR);
fread(&headersize, sizeof(uint32), 1, file);
#ifdef BMP_BIG_ENDIAN
headersize = BYTE_SWAP(headersize);
#endif
//cout << "Header size is " << headersize << endl;
fseek(file, headersize, SEEK_SET);
fread(tempGSImage, sizeof(uint8), SIZE*SIZE, file);
// cout << (int)tempGSImage[0][0][0] << "," << (int)tempGSImage[0][0][1] << "," << (int)tempGSImage[0][0][2] << endl;
fclose(file);
for(i=0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
inputImage[SIZE-1-i][j] = tempGSImage[i][j];
// inputImage[SIZE-1-i][SIZE-1-j] = tempGSImage[i][j];
//cerr << tempGSImage[i][j][k] << ",";
}
//cerr << endl;
}
return 0;
}
int writeGSBMP(const char* filename, unsigned char outputImage[][SIZE])
{
uint8 hdr[54];
int hdr_idx = 0;
int i,j;
BITMAPFILEHEADER bfh;
// file pointer
FILE *file;
bfh.bfType1 = 'B';
bfh.bfType2 = 'M';
// 0x10436 = 2^16 + 1024 for color def + 0x36 for header
bfh.bfSize = 0x010436; //0x36;
bfh.bfReserved1 = 0x0;
bfh.bfReserved2 = 0x0;
// 0x0436
bfh.bfOffBits = 0x436; //0x36;
bfh.biSize = 0x28;
bfh.biWidth = SIZE;
bfh.biHeight = SIZE;
bfh.biPlanes = 1;
bfh.biBitCount = 8;
bfh.biCompression = 0;
bfh.biSizeImage = SIZE*SIZE;
bfh.biXPelsPerMeter = 0; //2400;
bfh.biYPelsPerMeter = 0; //2400;
bfh.biClrUsed = SIZE; // 0;
bfh.biClrImportant = SIZE; // 0;
write_hdr(hdr, &hdr_idx, bfh.bfType1, sizeof(uint8));
write_hdr(hdr, &hdr_idx, bfh.bfType2, sizeof(uint8));
write_hdr(hdr, &hdr_idx, bfh.bfSize, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.bfReserved1, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.bfReserved2, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.bfOffBits, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biSize, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biWidth, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biHeight, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biPlanes, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.biBitCount, sizeof(uint16));
write_hdr(hdr, &hdr_idx, bfh.biCompression, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biSizeImage, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biXPelsPerMeter, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biYPelsPerMeter, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biClrUsed, sizeof(uint32));
write_hdr(hdr, &hdr_idx, bfh.biClrImportant, sizeof(uint32));
for(i=0; i < SIZE; i++){
for(j=0; j < SIZE; j++){
//tempGSImage[SIZE-1-i][SIZE-1-j] = outputImage[i][j];
tempGSImage[SIZE-1-i][j] = outputImage[i][j];
}
}
// write result bmp file
if (!(file=fopen(filename,"wb")))
{
cout << "Cannot open file: " << filename << endl;
return(1);
}
uint8 z = 0;
fwrite(&hdr, sizeof(unsigned char), 0x36, file);
for(i=0; i < SIZE; i++){
uint8 x = (uint8) i;
//cout << (int)x << endl;
fwrite(&x, sizeof(uint8), 0x01, file);
fwrite(&x, sizeof(uint8), 0x01, file);
fwrite(&x, sizeof(uint8), 0x01, file);
fwrite(&z, sizeof(uint8), 0x01, file);
}
fwrite(tempGSImage, sizeof(unsigned char), SIZE*SIZE, file);
fclose(file);
return 0;
}
// int readGS_BMP(char filename[], unsigned char image[][SIZE], BMPHDR *hdr)
// {
// int i,j;
// // Open the file for reading and ensure it opened successfully
// // Print a message and return -1 if it fails
// ifstream ifile(filename);
// if( ! ifile.good() ){
// cerr << "Unable to open file: " << filename << endl;
// return -1;
// }
// BMPTYPE type;
// // Read in the BMP Header
// ifile.read( reinterpret_cast<char *>(&type), sizeof(BMPTYPE) );
// // Check its the format we want
// if(type.signature[0] != 'B' && type.signature[1] != 'M'){
// cerr << "Not a BMP file" << endl;
// return -1;
// }
// // Read in the BMP Header
// ifile.read( reinterpret_cast<char *>(hdr), sizeof(BMPHDR) );
// // Print out the file size in bytes and the byte offset to the pixel array
// cout << "Size of the file: " << hdr->fh.fileSize << endl;
// cout << "Pixel offset: " << hdr->fh.pixelOffset << endl;
// // Print out the dimensions (height x width) read in from the file header
// cout << "Dimensions: " << hdr->bh.height << "x" << hdr->bh.width << endl;
// // Print out the color depth (planes * bits_per_pixel)
// // read in from the file header
// cout << "Color depth: " << hdr->bh.planes * hdr->bh.bpp << endl;
// // Seek to the point in the file where the pixel data starts
// ifile.seekg(hdr->fh.pixelOffset, ios::beg);
// // Ensure the SEEK (read) pointer of the FILE is now pointing at the
// // pixel array
// // Data is read in opposite order (it is stored backwards in the file)
// for(i=0; i < SIZE; i++){
// for(j=0; j < SIZE; j++){
// ifile.read( reinterpret_cast<char *>(&image[SIZE-1-i][j]), sizeof(uint8));
// }
// }
// return 0;
// }
// int writeGS_BMP(char *filename, uint8 outputImage[][SIZE], BMPHDR *hdr)
// {
// ofstream ofile(filename);
// if(! ofile.good() ){
// cerr << "Can't open file: " << filename << endl;
// return -1;
// }
// BMPTYPE type;
// type.signature[0] = 'B';
// type.signature[1] = 'M';
// ofile.write( reinterpret_cast<char *>(&type), sizeof(BMPTYPE) );
// // Write the hdr (which is of size: sizeof(BMPHDR size) ) data to the file
// ofile.write( reinterpret_cast<char *>(hdr), sizeof(BMPHDR) );
// // For bits_per_pixel <= 8 we have to write in the color table
// uint8 colorVal[4] = {0,0,0,0};
// for(int i=0; i < SIZE; i++){
// colorVal[0] = colorVal[1] = colorVal[2] = i;
// ofile.write( reinterpret_cast<char *>(colorVal), 4*sizeof(uint8) );
// }
// // Write the data in opposite order
// for(int i=0; i < SIZE; i++){
// for(int j=0; j < SIZE; j++){
// ofile.write( reinterpret_cast<char *>(&outputImage[SIZE-1-i][j]), sizeof(uint8) );
// }
// }
// ofile.close();
// return 0;
// }
int shows = 0;
void show() {
system("eog --single-window /tmp/bmplib.bmp &");
// wait longer on the first show, OS takes time to start eog
//if (shows == 0) sleep(1);
// generally, wait 0.2 seconds = 200000 milliseconds
usleep(200000);
shows++;
}
void showRGBBMP(unsigned char inputImage[][SIZE][RGB]) {
writeRGBBMP("/tmp/bmplib.bmp", inputImage);
show();
}
void showGSBMP(unsigned char inputImage[][SIZE]) {
writeGSBMP("/tmp/bmplib.bmp", inputImage);
show();
}