-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnm.h
45 lines (34 loc) · 1.49 KB
/
pnm.h
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
#ifndef PNM_INCLUDED
#define PNM_INCLUDED
#include <stdio.h>
#include <stdint.h>
#include <except.h>
#include "a2methods.h"
// functions in this interface use only the 'new', 'free',
// 'cell', and 'map_default' methods
// every function in this interface uses the (x, y) coordinate system,
// which is the same as the (col, row) or (width, height) system.
typedef struct Pnm_rgb { // colored pixel (scaled integers)
unsigned red, green, blue;
} *Pnm_rgb;
typedef struct Pnm_ppm {
unsigned width, height, denominator;
A2Methods_Array2 pixels; // 2D array with element type 'struct Pnm_rgb'
const struct A2Methods_T *methods; // used to operate on 'pixels' field
} *Pnm_ppm;
// clients may read 'methods, but to mutate 'methods' or any
// field of 'methods' is an UNCHECKED run-time error
extern const Except_T Pnm_Badformat; // raised by ppmread when not a pnm file
Pnm_ppm Pnm_ppmread(FILE *fp, A2Methods_T methods);
/* Read a file using the given methods and return a pixmap
containing a 2D array of the type returned by 'methods->new'.
'methods' field of the result is the same as the argument.
Raises Pnm_Badformat if not given a proper PNM file.
methods are not copied, so caller must ensure they live as long as the pixmap.
*/
void Pnm_ppmwrite(FILE *fp, Pnm_ppm pixmap);
/* Write 'pixmap' to a file. If 'pixmap' is empty, it's a checked
run-time error. */
void Pnm_ppmfree(Pnm_ppm *ppmp);
/* Free pixmap pointed to by ppmp. Does not free methods. */
#endif