-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPNM.h
executable file
·77 lines (64 loc) · 2.31 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
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
/* ------------------------------------------------------------------------- *
* PNM.
* Interface for loading and writing PNM images.
*
* Partly adapted from http://stackoverflow.com/a/2699908
* ------------------------------------------------------------------------- */
#ifndef _PNM_H_
#define _PNM_H_
#include <stddef.h>
// Types ----------------------------------------------------------------------
typedef struct {
unsigned char red, green, blue;
} PNMPixel;
typedef struct {
size_t width;
size_t height;
PNMPixel* data; // Pixel (i, j) is at position i * width + j
} PNMImage;
// Methods --------------------------------------------------------------------
/* ------------------------------------------------------------------------- *
* Create an empty PNM image.
* The PNM image must later be deleted by calling freePNM().
*
* PARAMETERS
* width Width of the image (in pixels)
* height Height of the image (in pixels)
*
* RETURN
* image Pointer to an empty PNM image
* NULL if an error occured
* ------------------------------------------------------------------------- */
PNMImage* createPNM(size_t width, size_t height);
/* ------------------------------------------------------------------------- *
* Free a PNM image.
*
* PARAMETER
* image Pointer to a PNM image
* ------------------------------------------------------------------------- */
void freePNM(PNMImage* image);
/* ------------------------------------------------------------------------- *
* Load a PNM image from a file.
* The PNM image must later be deleted by calling freePNM().
*
* PARAMETERS
* filename Path to the PNM file
*
* RETURN
* image Pointer to the loaded PNM image
* NULL if an error occured
* ------------------------------------------------------------------------- */
PNMImage* readPNM(const char* filename);
/* ------------------------------------------------------------------------- *
* Write a PNM image into a file.
*
* PARAMETERS
* filename Path to the PNM file
* image Pointer to the PNM image to write
*
* RETURN
* 0 In case of success
* -1 Otherwise
* ------------------------------------------------------------------------- */
int writePNM(const char* filename, const PNMImage* image);
#endif // _PNM_H_