-
Notifications
You must be signed in to change notification settings - Fork 10
/
pnm.c
672 lines (646 loc) · 16.1 KB
/
pnm.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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
/**
* @file pnm.c
*
* Copyright (c) 2015 大前良介 (OHMAE Ryosuke)
*
* This software is released under the MIT License.
* http://opensource.org/licenses/MIT
*
* @brief PNM(PPM/PGM/PBM)ファイルの読み書き処理
* @author <a href="mailto:[email protected]">大前良介 (OHMAE Ryosuke)</a>
* @date 2015/02/07
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#include "image.h"
/**
* @brief 2値の最小値を返すマクロ
*/
#define MIN(x, y) ((x) < (y) ? (x) : (y))
static uint8_t normalize(int value, int max);
static int get_next_non_space_char(FILE *fp);
static int get_next_token(FILE *fp, char *buf, size_t size);
static int parse_int(const char *str);
static int get_next_int(FILE *fp);
static result_t read_p1(FILE *fp, image_t *img);
static result_t read_p2(FILE *fp, image_t *img, int max);
static result_t read_p3(FILE *fp, image_t *img, int max);
static result_t read_p4(FILE *fp, image_t *img);
static result_t read_p5(FILE *fp, image_t *img, int max);
static result_t read_p6(FILE *fp, image_t *img, int max);
static result_t write_p1(FILE *fp, image_t *img);
static result_t write_p2(FILE *fp, image_t *img);
static result_t write_p3(FILE *fp, image_t *img);
static result_t write_p4(FILE *fp, image_t *img);
static result_t write_p5(FILE *fp, image_t *img);
static result_t write_p6(FILE *fp, image_t *img);
/**
* @brief [0,max]の値を[0,255]の範囲に正規化する
*/
static uint8_t normalize(int value, int max) {
// valueがmaxを超える場合はmaxとする
return (MIN(value, max) * 255 + max / 2) / max;
}
/**
* @brief 次のトークンをintにパースしたものを返す。
*
* 次のトークンがない、
* トークンに数字以外が含まれる場合、
* エラーとして-1を返す
*
* @return 次の整数値、エラー時-1
*/
static int get_next_int(FILE *fp) {
char token[11];
get_next_token(fp, token, sizeof(token));
return parse_int(token);
}
/**
* @brief atoiのエラー判定を厳しくした処理。
*
* 空の場合、数字以外の文字が含まれる場合に
* エラーとして-1を返す。
*
* @param[in] str 読み込む文字列
* return パース結果
*/
static int parse_int(const char *str) {
int i;
int r = 0;
if (str[0] == 0) {
return -1;
}
for (i = 0; str[i] != 0; i++) {
if (!isdigit((int)str[i])) {
return -1;
}
r *= 10;
r += str[i] - '0';
}
return r;
}
/**
* @brief 空白で区切られた次のトークンを返す。
*
* 空白とコメントを読み飛ばす。
* トークンの末尾の空白は読み込み済みとなる。
*
* @param[in] fp ファイルストリーム
* @param[in,out] buf トークン格納先
* @param[in] size トークン格納先のサイズ
* @return トークンのサイズ、エラー時0
*/
static int get_next_token(FILE *fp, char *buf, size_t size) {
int i = 0;
int c = get_next_non_space_char(fp);
while (c != EOF && !isspace(c) && i < size - 1) {
buf[i++] = c;
c = getc(fp);
}
buf[i] = 0;
return i;
}
/**
* @brief 空白文字とコメントを読み飛ばした次の文字を返す。
*
* @param[in] fp ファイルストリーム
* @return 次の文字、EOFに到達した場合はEOF
*/
static int get_next_non_space_char(FILE *fp) {
int c;
int comment = FALSE;
while ((c = getc(fp)) != EOF) {
if (comment) {
if (c == '\n' || c == '\r') {
comment = FALSE;
}
continue;
}
if (c == '#') {
comment = TRUE;
continue;
}
if (!isspace(c)) {
break;
}
}
return c;
}
/**
* @brief PNM(PPM/PGM/PBM)形式のファイルを読み込む。
*
* @param[in] filename ファイル名
* @return 読み込んだ画像、読み込みに失敗した場合NULL
*/
image_t *read_pnm_file(const char *filename) {
FILE *fp = fopen(filename, "rb");
if (fp == NULL) {
perror(filename);
return NULL;
}
image_t *img = read_pnm_stream(fp);
fclose(fp);
return img;
}
/**
* @brief P1の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @return 成否
*/
static result_t read_p1(FILE *fp, image_t *img) {
int x, y;
int tmp;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
tmp = get_next_non_space_char(fp);
if (tmp == '0') {
img->map[y][x].i = 0;
} else if (tmp == '1') {
img->map[y][x].i = 1;
} else {
return FAILURE;
}
}
}
return SUCCESS;
}
/**
* @brief P2の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @param[in] max 輝度最大値
* @return 成否
*/
static result_t read_p2(FILE *fp, image_t *img, int max) {
int x, y;
int tmp;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
if ((tmp = get_next_int(fp)) < 0) {
return FAILURE;
}
img->map[y][x].g = normalize(tmp, max);
}
}
return SUCCESS;
}
/**
* @brief P3の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @param[in] max 輝度最大値
* @return 成否
*/
static result_t read_p3(FILE *fp, image_t *img, int max) {
int x, y;
int tmp;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
if ((tmp = get_next_int(fp)) < 0) {
return FAILURE;
}
img->map[y][x].c.r = normalize(tmp, max);
if ((tmp = get_next_int(fp)) < 0) {
return FAILURE;
}
img->map[y][x].c.g = normalize(tmp, max);
if ((tmp = get_next_int(fp)) < 0) {
return FAILURE;
}
img->map[y][x].c.b = normalize(tmp, max);
img->map[y][x].c.a = 0xff;
}
}
return SUCCESS;
}
/**
* @brief P4の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @return 成否
*/
static result_t read_p4(FILE *fp, image_t *img) {
int x, y;
uint8_t *row;
int stride;
stride = (img->width + 7) / 8;
if ((row = malloc(stride)) == NULL) {
return FAILURE;
}
for (y = 0; y < img->height; y++) {
int pos = 0;
int shift = 8;
if (fread(row, stride, 1, fp) != 1) {
free(row);
return FAILURE;
}
for (x = 0; x < img->width; x++) {
shift--;
img->map[y][x].i = (row[pos] >> shift) & 1;
if (shift == 0) {
shift = 8;
pos++;
}
}
}
free(row);
return SUCCESS;
}
/**
* @brief P5の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @param[in] max 輝度最大値
* @return 成否
*/
static result_t read_p5(FILE *fp, image_t *img, int max) {
int x, y;
int tmp;
uint8_t *row;
uint8_t *buffer;
int stride;
int bpc = max > 255 ? 2 : 1;
stride = img->width * bpc;
if ((buffer = malloc(stride)) == NULL) {
return FAILURE;
}
for (y = 0; y < img->height; y++) {
if (fread(buffer, stride, 1, fp) != 1) {
free(buffer);
return FAILURE;
}
row = buffer;
if (bpc == 1) {
for (x = 0; x < img->width; x++) {
img->map[y][x].g = normalize(*row++, max);
}
} else {
for (x = 0; x < img->width; x++) {
tmp = *row++ << 8;
tmp |= *row++;
img->map[y][x].g = normalize(tmp, max);
}
}
}
free(buffer);
return SUCCESS;
}
/**
* @brief P6の画像データを読み込む。
*
* @param[in] fp ファイルストリーム
* @param[in,out] img 画像構造体
* @param[in] max 輝度最大値
* @return 成否
*/
static result_t read_p6(FILE *fp, image_t *img, int max) {
int x, y;
int tmp;
uint8_t *row;
uint8_t *buffer;
int stride;
int bpc = max > 255 ? 2 : 1;
stride = img->width * 3 * bpc;
if ((buffer = malloc(stride)) == NULL) {
return FAILURE;
}
for (y = 0; y < img->height; y++) {
if (fread(buffer, stride, 1, fp) != 1) {
free(buffer);
return FAILURE;
}
row = buffer;
if (bpc == 1) {
for (x = 0; x < img->width; x++) {
img->map[y][x].c.r = normalize(*row++, max);
img->map[y][x].c.g = normalize(*row++, max);
img->map[y][x].c.b = normalize(*row++, max);
img->map[y][x].c.a = 0xff;
}
} else {
for (x = 0; x < img->width; x++) {
tmp = *row++ << 8;
tmp |= *row++;
img->map[y][x].c.r = normalize(tmp, max);
tmp = *row++ << 8;
tmp |= *row++;
img->map[y][x].c.g = normalize(tmp, max);
tmp = *row++ << 8;
tmp |= *row++;
img->map[y][x].c.b = normalize(tmp, max);
img->map[y][x].c.a = 0xff;
}
}
}
free(buffer);
return SUCCESS;
}
/**
* @brief PNM(PPM/PGM/PBM)形式のファイルを読み込む。
*
* @param[in] fp ファイルストリーム
* @return 読み込んだ画像、読み込みに失敗した場合NULL
*/
image_t *read_pnm_stream(FILE *fp) {
char token[4];
int type;
int width;
int height;
int max = 0;
result_t result = FAILURE;
image_t *img = NULL;
memset(token, 0, sizeof(token));
get_next_token(fp, token, sizeof(token));
type = token[1] - '0';
if (token[0] != 'P' || type < 1 || type > 6 || token[2] != 0) {
return NULL;
}
width = get_next_int(fp);
height = get_next_int(fp);
if (width <= 0 || height <= 0) {
return NULL;
}
if (type != 1 && type != 4) {
max = get_next_int(fp);
if (max < 1 || max > 65535) {
return NULL;
}
}
// タイプに応じて初期化
switch (type) {
case 1:
case 4:// pbmは2色のカラーパレット形式で表現する
if ((img = allocate_image(width, height, COLOR_TYPE_INDEX)) == NULL) {
return NULL;
}
img->palette_num = 2;
img->palette[0] = color_from_rgb(255, 255, 255);
img->palette[1] = color_from_rgb(0, 0, 0);
break;
case 2:
case 5:
if ((img = allocate_image(width, height, COLOR_TYPE_GRAY)) == NULL) {
return NULL;
}
break;
case 3:
case 6:
if ((img = allocate_image(width, height, COLOR_TYPE_RGB)) == NULL) {
return NULL;
}
break;
}
switch (type) {
case 1: // ASCII 2値
result = read_p1(fp, img);
break;
case 2: // ASCII グレースケール
result = read_p2(fp, img, max);
break;
case 3: // ASCII RGB
result = read_p3(fp, img, max);
break;
case 4: // バイナリ 2値
result = read_p4(fp, img);
break;
case 5: // バイナリ グレースケール
result = read_p5(fp, img, max);
break;
case 6: // バイナリ RGB
result = read_p6(fp, img, max);
break;
}
if (result != SUCCESS) {
free_image(img);
return NULL;
}
return img;
}
/**
* @brief PNM(PPM/PGM/PBM)形式としてファイルに書き出す。
*
* 入力された画像データが出力タイプと合致しない場合、
* 内部で変換して出力を行う。
*
* @param[in] filename 書き出すファイル名
* @param[in] img 画像データ
* @param[in] type 出力タイプ、1~6を指定
* @return 成否
*/
result_t write_pnm_file(const char *filename, image_t *img, int type) {
result_t result = FAILURE;
if (img == NULL) {
return result;
}
FILE *fp = fopen(filename, "wb");
if (fp == NULL) {
perror(filename);
return result;
}
result = write_pnm_stream(fp, img, type);
fclose(fp);
return result;
}
/**
* @brief P1の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
static result_t write_p1(FILE *fp, image_t *img) {
int x, y;
for (y = 0; y < img->height; y++) {
int line = 0;
for (x = 0; x < img->width; x++) {
if(++line > 69) {
putc('\n', fp);
line = 1;
}
putc('0' + img->map[y][x].i, fp);
}
putc('\n', fp);
}
return SUCCESS;
}
/**
* @brief P2の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
static result_t write_p2(FILE *fp, image_t *img) {
int x, y;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
fprintf(fp, "%u\n", img->map[y][x].g);
}
}
return SUCCESS;
}
/**
* @brief P3の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
static result_t write_p3(FILE *fp, image_t *img) {
int x, y;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
fprintf(fp, "%u %u %u\n",
img->map[y][x].c.r,
img->map[y][x].c.g,
img->map[y][x].c.b);
}
}
return SUCCESS;
}
/**
* @brief P4の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
static result_t write_p4(FILE *fp, image_t *img) {
int x, y;
uint8_t p;
for (y = 0; y < img->height; y++) {
int shift = 8;
p = 0;
// 上位ビットから詰め込み、1byte分たまったら出力
for (x = 0; x < img->width; x++) {
shift--;
p |= img->map[y][x].i << shift;
if (shift == 0) {
putc(p, fp);
shift = 8;
p = 0;
}
}
// 端があればここで出力
if (shift != 8) {
putc(p, fp);
}
}
return SUCCESS;
}
/**
* @brief P5の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @return 成否
*/
static result_t write_p5(FILE *fp, image_t *img) {
int x, y;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
putc(img->map[y][x].g, fp);
}
}
return SUCCESS;
}
/**
* @brief P6の画像データを読み込む。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @param 成否
*/
static result_t write_p6(FILE *fp, image_t *img) {
int x, y;
for (y = 0; y < img->height; y++) {
for (x = 0; x < img->width; x++) {
putc(img->map[y][x].c.r, fp);
putc(img->map[y][x].c.g, fp);
putc(img->map[y][x].c.b, fp);
}
}
return SUCCESS;
}
/**
* @brief PNM(PPM/PGM/PBM)形式としてファイルに書き出す。
*
* 入力された画像データが出力タイプと合致しない場合、
* 内部で変換して出力を行う。
*
* @param[in] fp 書き出すファイルストリームのポインタ
* @param[in] img 画像データ
* @param[in] type 出力タイプ、1~6を指定
* @return 成否
*/
result_t write_pnm_stream(FILE *fp, image_t *img, int type) {
image_t *work = NULL;
if (img == NULL) {
return FAILURE;
}
if (type < 1 || type > 6) {
return FAILURE;
}
// 出力形式を指定するので、所望の形式でない場合は自動的に変換する
switch (type) {
case 1:
case 4:
if (img->palette_num != 2) {
work = clone_image(img);
img = image_to_gray(work);
img = image_gray_to_binary(img);
}
break;
case 2:
case 5:
if (img->color_type != COLOR_TYPE_GRAY) {
work = clone_image(img);
img = image_to_gray(work);
}
break;
case 3:
case 6:
if (img->color_type != COLOR_TYPE_RGB) {
work = clone_image(img);
img = image_to_rgb(work);
}
break;
}
// ヘッダ出力、コメントなし
fprintf(fp, "P%d\n", type);
fprintf(fp, "%u %u\n", img->width, img->height);
if (type != 1 && type != 4) {
fprintf(fp, "255\n");
}
switch (type) {
case 1: // ASCII 2値
write_p1(fp, img);
break;
case 2: // ASCII グレースケール
write_p2(fp, img);
break;
case 3: // ASCII RGB
write_p3(fp, img);
break;
case 4: // バイナリ 2値
write_p4(fp, img);
break;
case 5: // バイナリ グレースケール
write_p5(fp, img);
break;
case 6: // バイナリ RGB
write_p6(fp, img);
break;
}
free_image(work);
return SUCCESS;
}