-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtinytga.c
656 lines (617 loc) · 18.4 KB
/
tinytga.c
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
#include "tinytga.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include <string.h>
#define HEADER_LENGTH 18
void _colormap_to_true_color(tt_image *image, uint8_t *image_raw, tt_color *color_map, long *cp)
{
uint8_t pixel_depth = image_raw[16];
uint8_t color_map_size = image_raw[7];
switch (pixel_depth)
{
case 32:
switch (color_map_size)
{
case 32:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += (uint32_t)image_raw[(*cp)++];
color_index += (uint32_t)image_raw[(*cp)++] << 8;
color_index += (uint32_t)image_raw[(*cp)++] << 16;
color_index += (uint32_t)image_raw[(*cp)++] << 24;
uint32_t color_value = ((uint32_t)color_map[color_index - 1].b) + ((uint32_t)color_map[color_index].g << 8) + ((uint32_t)color_map[color_index].r << 16) + ((uint32_t)color_map[color_index].a << 24);
image->pixels[i] = color_value;
}
break;
case 24:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += (uint32_t)image_raw[(*cp)++];
color_index += (uint32_t)image_raw[(*cp)++] << 8;
color_index += (uint32_t)image_raw[(*cp)++] << 16;
color_index += (uint32_t)image_raw[(*cp)++] << 24;
uint32_t color_value = ((uint32_t)color_map[color_index - 1].b) + ((uint32_t)color_map[color_index].g << 8) + ((uint32_t)color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
case 16:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += (uint32_t)image_raw[(*cp)++];
color_index += (uint32_t)image_raw[(*cp)++] << 8;
color_index += (uint32_t)image_raw[(*cp)++] << 16;
color_index += (uint32_t)image_raw[(*cp)++] << 24;
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
default:
fprintf(stderr, "[ERR]Unsupport colormap entry size: %u", color_map_size);
exit(1);
break;
}
break;
case 24:
switch (color_map_size)
{
case 32:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
color_index += image_raw[(*cp)++] << 16;
uint32_t color_value = ((uint32_t)color_map[color_index - 1].b) + ((uint32_t)color_map[color_index].g << 8) + ((uint32_t)color_map[color_index].r << 16) + ((uint32_t)color_map[color_index].a << 24);
image->pixels[i] = color_value;
}
break;
case 24:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
color_index += image_raw[(*cp)++] << 16;
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
case 16:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
color_index += image_raw[(*cp)++] << 16;
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
default:
fprintf(stderr, "[ERR]Unsupport colormap entry size: %u", color_map_size);
exit(1);
break;
}
break;
case 16:
switch (color_map_size)
{
case 32:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
uint32_t color_value = ((uint32_t)color_map[color_index - 1].b) + ((uint32_t)color_map[color_index].g << 8) + ((uint32_t)color_map[color_index].r << 16) + ((uint32_t)color_map[color_index].a << 24);
image->pixels[i] = color_value;
}
break;
case 24:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
case 16:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
color_index += image_raw[(*cp)++] << 8;
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
default:
fprintf(stderr, "[ERR]Unsupport colormap entry size: %u", color_map_size);
exit(1);
break;
}
break;
case 8:
switch (color_map_size)
{
case 32:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
uint32_t color_value = ((uint32_t)color_map[color_index - 1].b) + ((uint32_t)color_map[color_index].g << 8) + ((uint32_t)color_map[color_index].r << 16) + ((uint32_t)color_map[color_index].a << 24);
image->pixels[i] = color_value;
}
break;
case 24:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
uint32_t color_value = (color_map[color_index].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000;
image->pixels[i] = color_value;
}
break;
case 16:
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_index = 0;
color_index += image_raw[(*cp)++];
uint32_t color_value = (color_map[color_index - 1].b) + (color_map[color_index].g << 8) + (color_map[color_index].r << 16) + 0xFF000000; /* bgra */
image->pixels[i] = color_value;
}
break;
default:
fprintf(stderr, "[ERR]Unsupport colormap entry size: %u", color_map_size);
exit(1);
break;
}
break;
default:
fprintf(stderr, "[ERR]Unsupported pixel depth: %u", pixel_depth);
exit(1);
break;
}
}
void _load_color_map(uint8_t *image_raw, tt_color *color_map, long *cp)
{
uint8_t color_map_entry_size = image_raw[7];
uint16_t color_map_length = image_raw[5] +
(image_raw[6] << 8);
switch (color_map_entry_size)
{
case 16:
/* gggbbbbb arrrrrgg */
for (int i = 0; i < color_map_length; i++)
{
uint16_t color_value = 0;
color_value += image_raw[(*cp)++];
color_value += image_raw[(*cp)++] << 8;
/* arrrrrgg gggbbbbb */
color_map[i].a = (color_value >> 15) & 0x0001;
color_map[i].r = (color_value >> 10) & 0x001F;
color_map[i].g = (color_value >> 5) & 0x001F;
color_map[i].b = color_value & 0x001F;
}
break;
case 24:
/* bgr in order */
for (int i = 0; i < color_map_length; i++)
{
color_map[i].b = image_raw[(*cp)++];
color_map[i].g = image_raw[(*cp)++];
color_map[i].r = image_raw[(*cp)++];
}
break;
case 32:
/* bgra in order */
for (int i = 0; i < color_map_length; i++)
{
color_map[i].b = image_raw[(*cp)++];
color_map[i].g = image_raw[(*cp)++];
color_map[i].r = image_raw[(*cp)++];
color_map[i].a = image_raw[(*cp)++];
}
break;
default: /* 15 and more */
fprintf(stderr, "[ERR]Unsupport colormap entry size: %u\n", color_map_entry_size);
exit(1);
break;
}
}
void _handle_pixels(tt_image *image, uint8_t *image_raw, tt_color *color_map, long *cp)
{
switch (image->image_type)
{
case NO_IMAGE_DATA: /* No Image Data Included */
image->pixels = NULL;
break;
case COLOR_MAPPED_U: /* Uncompressed, Color mapped image */
image->pixels = (uint32_t *)malloc(sizeof(uint32_t) * image->height * image->width);
_colormap_to_true_color(image, image_raw, color_map, cp);
break;
case TRUE_COLOR_U: /* Uncompressed, True Color Image */
image->pixels = (uint32_t *)malloc(sizeof(uint32_t) * image->height * image->width);
switch (image->pixel_depth)
{
case 32: /* bbbbbbbbggggggggrrrrrrrraaaaaaaa */
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_value = 0;
color_value += (uint32_t)image_raw[(*cp)++];
color_value += (uint32_t)image_raw[(*cp)++] << 8;
color_value += (uint32_t)image_raw[(*cp)++] << 16;
color_value += (uint32_t)image_raw[(*cp)++] << 24;
image->pixels[i] = color_value;
}
break;
case 24: /* bbbbbbbbggggggggrrrrrrrr */
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_value = 0;
color_value += image_raw[(*cp)++];
color_value += image_raw[(*cp)++] << 8;
color_value += image_raw[(*cp)++] << 16;
image->pixels[i] = color_value + 0xFF000000;
}
break;
case 16: /* arrrrrgg gggbbbbb -> gggbbbbb arrrrrgg */
// TODO: handle 16 bit pixel true color
assert(false); /* not support yet */
for (int i = 0; i < image->width * image->height; i++)
{
uint32_t color_value = 0;
color_value += image_raw[(*cp)++] << 8;
color_value += image_raw[(*cp)++];
image->pixels[i] = color_value;
}
break;
case 8:
// TODO: handle 8 bit pixel true color
assert(false);
for (int i = 0; i < image->width * image->height; i++)
{
image->pixels[i] = image_raw[(*cp)++];
}
break;
default:
assert(false);
break;
}
break;
case TRUE_COLOR_R:
// FIX: BROKEN run length encoded true color, 10
assert(false && "Run-length-encoded now unsupported.");
image->pixels = (uint32_t *)malloc(sizeof(uint32_t) * image->height * image->width);
int total_pixel = image->width * image->height;
int pixel_count = 0;
uint8_t header;
uint8_t continuous_count;
switch (image->pixel_depth)
{
case 32:
while (pixel_count < total_pixel)
{
header = image_raw[(*cp)++];
if (header < 128)
{ // raw
continuous_count = (header & 0x7F) + 1;
for (int i = 0; i < continuous_count; i++)
{
uint32_t color_value = 0;
color_value += (uint32_t)image_raw[(*cp)++];
color_value += (uint32_t)image_raw[(*cp)++] << 8;
color_value += (uint32_t)image_raw[(*cp)++] << 16;
color_value += (uint32_t)image_raw[(*cp)++] << 24;
image->pixels[pixel_count++] = color_value;
}
}
else
{ // run-length-encoded
uint32_t color_value = 0;
color_value += (uint32_t)image_raw[(*cp)++];
color_value += (uint32_t)image_raw[(*cp)++] << 8;
color_value += (uint32_t)image_raw[(*cp)++] << 16;
color_value += (uint32_t)image_raw[(*cp)++] << 24;
continuous_count = (header & 0x7F) + 1;
while (continuous_count--)
{
image->pixels[pixel_count++] = color_value;
}
}
}
break;
case 24:
while (pixel_count < total_pixel)
{
header = image_raw[(*cp)++];
if (header < 128)
{
continuous_count = (header & 0x7F) + 1;
for (int i = 0; i < continuous_count; i++)
{
uint32_t color_value = 0;
color_value += image_raw[(*cp)++];
color_value += image_raw[(*cp)++] << 8;
color_value += image_raw[(*cp)++] << 16;
color_value += 0xFF000000;
image->pixels[pixel_count++] = color_value;
}
}
else
{
uint32_t color_value = 0;
color_value += image_raw[(*cp)++];
color_value += image_raw[(*cp)++] << 8;
color_value += image_raw[(*cp)++] << 16;
color_value += 0xFF000000;
continuous_count = header & 0x7F;
while (continuous_count--)
{
image->pixels[pixel_count++] = color_value;
}
}
}
break;
default:
assert(false);
break;
}
break;
case BLACK_AND_WHITE_U:
image->pixels = (uint32_t *)malloc(sizeof(uint32_t) * image->height * image->width);
switch (image->pixel_depth)
{
case 8:
for (int i = 0; i < image->width * image->height; i++)
{
tt_color color;
color.b = image_raw[(*cp)];
color.g = image_raw[(*cp)];
color.r = image_raw[(*cp)];
color.a = 0xFF;
(*cp)++;
image->pixels[i] = tt_get_color_value(color);
}
break;
default:
assert(false && "[ERR]Unsupport pixel depth with image type 3\n");
break;
}
break;
case COLOR_MAPPED_R: /* Run-length encoded, Color mapped image */
case BLACK_AND_WHITE_C: /* Run-Length encoded, Black and white image */
/* not support yet */
default:
printf("[ERR]Unsupport image type: %u\n", image->image_type);
exit(1);
break;
}
}
/*
* Load TGA file and convert to "standerd" tga file, meaning 32 bit true color one
* */
tt_image *tt_load_from_file(const char *file_path)
{
FILE *image_stream = fopen(file_path, "rb");
if (image_stream == NULL)
{
fprintf(stderr, "[ERR]File %s not found\n", file_path);
fclose(image_stream);
return NULL;
}
/* get image file length */
fseek(image_stream, 0, SEEK_END);
long image_size = ftell(image_stream);
fseek(image_stream, 0, SEEK_SET);
/* read image file */
uint8_t *image_raw = (uint8_t *)malloc(image_size);
if (!image_raw)
{
fprintf(stderr, "[ERR]Memory allocation failed\n");
fclose(image_stream);
return NULL;
}
if (fread(image_raw, sizeof(uint8_t), image_size, image_stream) != (unsigned long)image_size)
{
fprintf(stderr, "[ERR]Read file failed\n");
fclose(image_stream);
free(image_raw);
return NULL;
}
/* 18 bytes header */
if (image_size < HEADER_LENGTH)
{
fprintf(stderr, "[ERR]File %s is too small\n", file_path);
fclose(image_stream);
free(image_raw);
return NULL;
}
tt_image *image = (tt_image *)malloc(sizeof(tt_image));
uint8_t id_length = image_raw[0];
uint8_t color_map_type = image_raw[1];
image->image_type = image_raw[2];
uint8_t *color_map_specification = (uint8_t *)malloc(5); /* the length of field 4 is 5 bytes */
for (int i = 0; i < 5; i++)
{
color_map_specification[i] = image_raw[i + 3];
}
uint8_t *image_specification = (uint8_t *)malloc(10); /* the length of field 5 is 10 bytes */
for (int i = 0; i < 10; i++)
{
image_specification[i] = image_raw[i + 8];
}
uint8_t *image_id = NULL;
long cp = HEADER_LENGTH; /* current_position */
/* ID */
if (id_length != 0)
{
image_id = (uint8_t *)malloc(id_length);
for (int i = 0; i < id_length; i++)
{
image_id[i] = image_raw[cp + i];
}
cp += id_length;
}
/* color map */
tt_color *color_map = NULL;
if (color_map_type == 1)
{
uint16_t color_map_length = color_map_specification[2] +
(color_map_specification[3] << 8);
// uint8_t color_map_entry_size = color_map_specification[4];
color_map = (tt_color *)malloc(sizeof(tt_color) * color_map_length);
_load_color_map(image_raw, color_map, &cp);
}
/* image */
image->width = image_specification[4] +
(image_specification[5] << 8);
image->height = image_specification[6] +
(image_specification[7] << 8);
image->pixel_depth = image_specification[8];
_handle_pixels(image, image_raw, color_map, &cp);
if (image_raw != NULL)
free(image_raw);
if (image_specification != NULL)
free(image_specification);
if (color_map_specification != NULL)
free(color_map_specification);
if (color_map != NULL)
free(color_map);
if (image_id != NULL)
free(image_id);
fclose(image_stream);
return image;
}
/*
* Save all image type to 32 bit uncompressed true color
* */
void tt_save(tt_image *image, const char *filename)
{
assert(image != NULL);
FILE *file = fopen(filename, "wb");
/* header */
uint8_t header[] = "\0\0\2\0\0\0\0\0\0\0\0\0"; /* TRUE_COLOR_U header */
uint8_t width[2], height[2], others[2];
width[0] = image->width & 0x00FF;
width[1] = (image->width >> 8) & 0x00FF;
height[0] = image->height & 0x00FF;
height[1] = (image->height >> 8) & 0x00FF;
others[0] = 32;
others[1] = 0;
fwrite(header, sizeof(uint8_t), 12, file);
fwrite(width, sizeof(uint8_t), 2, file);
fwrite(height, sizeof(uint8_t), 2, file);
fwrite(others, sizeof(uint8_t), 2, file);
/* header end */
/* pixels */
fwrite(image->pixels, sizeof(uint32_t), image->width * image->height, file);
fclose(file);
}
/* Create single-color tga file variable */
tt_image *tt_create(uint16_t w, uint16_t h, tt_color color)
{
tt_image *image = (tt_image *)malloc(sizeof(tt_image));
image->width = w, image->height = h;
image->image_type = TRUE_COLOR_U;
image->pixel_depth = 32;
if (w * h == 0)
{
image->pixels = NULL;
}
else
{
image->pixels = (uint32_t *)malloc(sizeof(uint32_t) * w * h);
uint32_t pixel_value = 0; /* argb saved as bgra */
pixel_value = tt_get_color_value(color);
for (int i = 0; i < w * h; i++)
{
image->pixels[i] = pixel_value;
}
}
return image;
}
/* Destroy tt_image variable */
void tt_destroy(tt_image *image)
{
if (image == NULL)
{
return;
}
free(image->pixels);
image = NULL;
free(image);
}
/* set a dot to certain color */
void tt_set_color(tt_image *image, int w, int h, tt_color color)
{
assert(w < image->width && h < image->height);
uint32_t color_value = tt_get_color_value(color);
uint16_t x = w;
uint16_t y = image->height - 1 - h;
image->pixels[y * image->width + x] = color_value;
}
/* get color from color value */
tt_color tt_make_color(uint32_t color_value)
{
tt_color color;
color.b = color_value & 0xFF;
color_value >>= 8;
color.g = color_value & 0xFF;
color_value >>= 8;
color.r = color_value & 0xFF;
color_value >>= 8;
color.a = color_value & 0xFF;
return color;
}
/* get color value from color */
uint32_t tt_get_color_value(tt_color color)
{
uint32_t color_value = 0;
color_value += (uint32_t)color.a << 24;
color_value += (uint32_t)color.r << 16;
color_value += (uint32_t)color.g << 8;
color_value += (uint32_t)color.b;
return color_value;
}
void tt_flip_vertically(tt_image *image)
{
uint32_t *pixels = (uint32_t *)malloc(sizeof(uint32_t) * image->width * image->height);
memcpy(pixels, image->pixels, sizeof(uint32_t) * image->width * image->height);
for (int i = 0; i < image->height; i++)
{
for (int j = 0; j < image->width; j++)
{
int y = image->height - 1 - i;
int x = j;
image->pixels[i * image->width + j] = pixels[y * image->width + x];
}
}
free(pixels);
}
uint32_t tt_get_color_value_from(tt_image *image, int w, int h)
{
assert(image != NULL);
assert(image->width >= w && image->height >= h);
return image->pixels[h * image->width + w];
}
tt_color tt_get_color_from(tt_image *image, int w, int h)
{
assert(image != NULL);
assert(image->width >= w && image->height >= h);
return tt_make_color(image->pixels[h * image->width + w]);
}
void tt_color_intensity(tt_color *color, float intensity)
{
assert(intensity <= 1 && intensity >= 0);
color->r *= intensity;
color->g *= intensity;
color->b *= intensity;
}