-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbif.h
168 lines (151 loc) · 4.33 KB
/
bif.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
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
/**
* Basic Image Format
**/
enum bif_error {
BIF_OK = 0,
BIF_ERROR_UNKNOWN,
BIF_ERROR_FILE_OPEN,
BIF_ERROR_BAD_ARGUMENT,
BIF_ERROR_IO_FAILED,
BIF_ERROR_OUT_OF_MEMORY,
BIF_ERROR_HORRIBLY_MANGLED
};
#define BIF_FLAG(N) (1 << (N))
#define BIF_CHECK_FLAG(VAR, FLAG) (!!(VAR & FLAG))
enum bif_flags {
BIF_FLAG_NONE = 0,
BIF_FLAG_WIBBLE = BIF_FLAG(0),
BIF_FLAG_WOBBLE = BIF_FLAG(1),
BIF_FLAG_WIBBLE_WOBBLE = BIF_FLAG_WIBBLE | BIF_FLAG_WOBBLE
};
/* Note: not including stdint. Cffi defines these for us - if this were
a real library we would need to do some trickery since the CDef parser
doesn't support includes and we'd need to include stdint.h. */
struct bif_image {
uint16_t width;
uint16_t height;
uint32_t* buffer; /* RGBA pixels. */
};
/**
* Read an image from a file.
*
* Reading will only proceed if BIF_FLAG_WIBBLE is set.
*
* @param filename Path to the file to read.
* @param flags Option flags
* @param image Pointer to a struct that will contain the image data.
* @return BIF_OK on success, an error code otherwise.
* @post On success, image will contain the image data comprising width,
* height, and pixel data buffer. It is the responsibility of the
* caller to free this with bif_image_free().
*
*/
enum bif_error bif_image_read(
const char* filename,
enum bif_flags flags,
struct bif_image* image
);
/**
* Free resources for an image read with bif_image_read().
* @param image The image to free.
* @return BIF_OK on success, an error code otherwise.
*/
enum bif_error bif_image_free(
struct bif_image* image
);
/**
* Write an image to a file.
*
* Writing will only proceed if BIF_FLAG_WOBBLE is set.
*
* @param filename Path to the file to read.
* @param flags Option flags
* @param image Pointer to a struct that contains the image data.
* @pre image must be properly initialised with image data.
* @return BIF_OK on success, an error code otherwise.
*/
enum bif_error bif_image_write(
const char* filename,
enum bif_flags flags,
struct bif_image* image
);
#ifdef BIF_IMPLEMENTATION
#include <stdlib.h>
#include <stdio.h>
enum bif_error bif_image_read(const char* filename, enum bif_flags flags, struct bif_image* image)
{
FILE* file;
uint8_t bif[4];
size_t pixel_count;
if (!filename || !*filename || !image) {
return BIF_ERROR_BAD_ARGUMENT;
}
if (!BIF_CHECK_FLAG(flags, BIF_FLAG_WIBBLE)) {
return BIF_ERROR_BAD_ARGUMENT;
}
file = fopen(filename, "rb");
if (!file) {
return BIF_ERROR_FILE_OPEN;
}
if (fread(bif, 1, 4, file) != 4) {
return BIF_ERROR_IO_FAILED;
}
if (bif[0] != 'B' || bif[1] != 'I' || bif[2] != 'F' || bif[3] != '\0') {
return BIF_ERROR_IO_FAILED;
}
if (fread(&image->width, 2, 1, file) != 1) {
return BIF_ERROR_IO_FAILED;
}
if (fread(&image->height, 2, 1, file) != 1) {
return BIF_ERROR_IO_FAILED;
}
pixel_count = image->width*image->height;
image->buffer = malloc(pixel_count*4);
if (!image->buffer) {
return BIF_ERROR_OUT_OF_MEMORY;
}
if (fread(image->buffer, 4, pixel_count, file) != pixel_count) {
free(image->buffer);
return BIF_ERROR_IO_FAILED;
}
return BIF_OK;
}
enum bif_error bif_image_free(struct bif_image* image)
{
free(image->buffer);
return BIF_OK;
}
enum bif_error bif_image_write(const char* filename, enum bif_flags flags, struct bif_image* image)
{
size_t pixel_count;
FILE* file;
uint8_t bif[] = {'B', 'I', 'F', '\0'};
if (!filename || !*filename || !image || !image->buffer) {
return BIF_ERROR_BAD_ARGUMENT;
}
if (!BIF_CHECK_FLAG(flags, BIF_FLAG_WOBBLE)) {
return BIF_ERROR_BAD_ARGUMENT;
}
pixel_count = image->width*image->height;
if (pixel_count < 1) {
return BIF_ERROR_BAD_ARGUMENT;
}
file = fopen(filename, "wb");
if (!file) {
return BIF_ERROR_FILE_OPEN;
}
if (fwrite(bif, 1, 4, file) != 4) {
return BIF_ERROR_IO_FAILED;
}
if (fwrite(&image->width, 2, 1, file) != 1) {
return BIF_ERROR_IO_FAILED;
}
if (fwrite(&image->height, 2, 1, file) != 1) {
return BIF_ERROR_IO_FAILED;
}
if (fwrite(image->buffer, 4, pixel_count, file) != pixel_count) {
return BIF_ERROR_IO_FAILED;
}
return BIF_OK;
}
#endif