-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_png.c
executable file
·176 lines (143 loc) · 5.58 KB
/
load_png.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
/*
* Copyright (c) 2015-2019 Alaskan Emily, Transnat Games,
* 2016 Eric Armstrong
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "image.h"
#include "bufferfile/bufferfile.h"
#include <string.h>
#include <stdlib.h>
#include <png.h>
struct aimg_png_buffer { const void *data; unsigned size, at; };
static void AImg_PNGReadCallback(png_struct *png_ctx, png_byte *data, png_size_t length){
struct aimg_png_buffer *data_buffer = png_get_io_ptr(png_ctx);
if(data_buffer->at + length > data_buffer->size){
png_error(png_ctx, "Unexpected EOF");
return;
}
memcpy(data, ((png_byte *)data_buffer->data) + data_buffer->at, length);
data_buffer->at += length;
}
unsigned AIMG_FASTCALL AImg_LoadPNG(struct AImg_Image *to, const char *path){
const void *data;
int size;
if(!to || !path)
return AIMG_LOADPNG_IS_NULL;
data = BufferFile(path, &size);
if(data == NULL)
return AIMG_LOADPNG_NO_FILE;
{
const int r = AImg_LoadPNGMem(to, data, size);
FreeBufferFile((void*)data, size);
return r;
}
}
unsigned AIMG_FASTCALL AImg_LoadPNGMem(struct AImg_Image *to, const void *data, unsigned size){
struct aimg_png_buffer data_buffer;
unsigned char color_type, bit_depth;
int interlaced;
png_struct *png_ctx;
png_info *png_info;
memset(&data_buffer, 0, sizeof(struct aimg_png_buffer));
data_buffer.data = data;
data_buffer.size = size;
if(!data_buffer.data)
return AIMG_LOADPNG_NO_FILE;
if(png_sig_cmp((void*)data_buffer.data, 0, 8)!=0)
return AIMG_LOADPNG_BADFILE;
if(!(png_ctx = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL))){
fputs("Could not create PNG read struct", stderr);
return AIMG_LOADPNG_PNG_ERR;
}
if(!(png_info = png_create_info_struct(png_ctx))){
fputs("Could not create PNG info struct", stderr);
return AIMG_LOADPNG_PNG_ERR;
}
if(setjmp(png_jmpbuf(png_ctx)))
return AIMG_LOADPNG_PNG_ERR;
png_set_read_fn(png_ctx, &data_buffer, AImg_PNGReadCallback);
png_set_sig_bytes(png_ctx, 0);
if(setjmp(png_jmpbuf(png_ctx))){
fputs("Error reading PNG info struct", stderr);
return AIMG_LOADPNG_PNG_ERR;
}
png_read_info(png_ctx, png_info);
if(setjmp(png_jmpbuf(png_ctx))){
fputs("Error reading PNG attributes", stderr);
return AIMG_LOADPNG_PNG_ERR;
}
/* We do not use the AImg_CreateImage function here because there are a couple
* error cases left, and this avoids having to deallocate the pixel buffer if they
* occur.
*/
to->w = png_get_image_width(png_ctx, png_info);
to->h = png_get_image_height(png_ctx, png_info);
if((interlaced = png_get_interlace_type(png_ctx, png_info))!=PNG_INTERLACE_NONE){
/* num_passes = png_set_interlace_handling(png_ctx);*/
}
bit_depth = png_get_bit_depth(png_ctx, png_info);
if((color_type = png_get_color_type(png_ctx, png_info)) == PNG_COLOR_TYPE_PALETTE){
png_set_expand(png_ctx);
}
else if(bit_depth<8){
png_set_expand(png_ctx);
}
if(png_get_valid(png_ctx, png_info, PNG_INFO_tRNS))
png_set_expand(png_ctx);
if(bit_depth == 16)
png_set_strip_16(png_ctx);
if(color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb(png_ctx);
png_read_update_info(png_ctx, png_info);
if((bit_depth = png_get_bit_depth(png_ctx, png_info))!=8){
return AIMG_LOADPNG_NFORMAT;
}
color_type = png_get_color_type(png_ctx, png_info);
to->pixels = malloc((to->w * to->h << 2));
{
unsigned char *row_buf = NULL;
unsigned h = 0;
/* We kind of had to cheat to avoid a 'loop'. MSVC refused to allow tail-call recursion here, and
* Solaris Studio refused on `start_pixel_mux'. I suspect this is because of memcpy builtins.
* So I just used gotos. Which are loops, in a way. I still avoided using the `while' keyword.
* And this is kind of not in the game engine proper, so whatever.
*/
start_row:
{
unsigned char * row_p = (unsigned char *)(to->pixels + to->w * h);
png_read_row(png_ctx, row_p, NULL);
if(!(color_type & PNG_COLOR_MASK_ALPHA)){
unsigned w = 0;
unsigned char *row_mem;
if(!row_buf)
row_buf = malloc(to->w*3);
row_mem = row_buf;
memcpy(row_mem, row_p, to->w * 3);
start_pixel_mux:
memcpy(row_p, row_mem, 3);
row_p += 3;
row_mem += 3;
row_p[0] = 0xFF;
row_p++;
if(++w<to->w)
goto start_pixel_mux;
}
}
if(++h < to->h)
goto start_row;
else if(row_buf)
free(row_buf);
}
return AIMG_LOADPNG_SUCCESS;
}