JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
PngTool.cpp
Go to the documentation of this file.
1
11#include "PngTool.h"
12
13#ifdef ENABLE_PNG
14
15
16using namespace jbxl;
17
18
19
25void PNGImage::init(void)
26{
27 xs = ys = col = length = 0;
28 state = 0;
29 type = 0;
30 //gp = NULL;
31
32 strct = NULL;
33 info = NULL;
34
35 return;
36}
37
38
44bool PNGImage::isNull(void)
45{
46 if (gp==NULL) return true;
47 return false;
48}
49
50
54void PNGImage::clear(void)
55{
56 if (gp!=NULL) memset(gp, 0, length);
57 return;
58}
59
60
64void PNGImage::fill(uByte v)
65{
66 if (gp!=NULL) memset(gp, v, length);
67 return;
68}
69
70
76void PNGImage::free(void)
77{
78 if (gp!=NULL) ::free(gp);
79 gp = NULL;
80 return;
81}
82
83
87void PNGImage::getm(int x, int y, int c)
88{
89 xs = x;
90 ys = y;
91 col = c;
92 length = xs*ys*col;
93 //
94 gp = (uByte*)malloc(length);
95 if (gp==NULL) {
96 length = 0;
97 xs = ys = col = 0;
99 return;
100 }
101
102 memset(gp, 0, length);
103
104 return;
105}
106
107
124void PNGImage::readData(FILE* fp)
125{
126 init();
127 if (fp==NULL) {
129 return;
130 }
131
132 // ヘッダチェック
133 unsigned char png_sig[PNG_SIGNATURE_SIZE];
134 unsigned int sz = (unsigned int)fread(png_sig, 1, PNG_SIGNATURE_SIZE, fp);
135 if (sz!=PNG_SIGNATURE_SIZE || png_sig_cmp(png_sig, 0, PNG_SIGNATURE_SIZE)) {
137 return;
138 }
139
140 strct = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
141 if (strct==NULL) {
142 state = JBXL_ERROR;
143 return;
144 }
145 info = png_create_info_struct(strct);
146 if (info==NULL) {
147 png_destroy_read_struct(&strct, NULL, NULL);
148 strct = NULL;
149 state = JBXL_ERROR;
150 return;
151 }
152
153 png_init_io(strct, fp);
154 png_set_sig_bytes(strct, PNG_SIGNATURE_SIZE);
155 png_read_png(strct, info, PNG_TRANSFORM_PACKING | PNG_TRANSFORM_STRIP_16, NULL);
156
157 xs = png_get_image_width(strct, info);
158 ys = png_get_image_height(strct, info);
159 type = png_get_color_type(strct, info);
160
161 if (type == PNG_COLOR_TYPE_GRAY) col = 1;
162 else if (type == PNG_COLOR_TYPE_GA) col = 2;
163 else if (type == PNG_COLOR_TYPE_RGB) col = 3;
164 else if (type == PNG_COLOR_TYPE_RGBA) col = 4;
165 else {
166 png_destroy_read_struct(&strct, &info, NULL);
167 strct = NULL;
168 info = NULL;
170 return;
171 }
172 length = xs*ys*col;
173
174 gp = (uByte*)malloc(length);
175 if (gp==NULL) {
176 png_destroy_read_struct(&strct, &info, NULL);
177 strct = NULL;
178 info = NULL;
180 return;
181 }
182
183 uByte** datap = png_get_rows(strct, info);
184 int len = xs*col;
185 for (int j=0; j<ys; j++) {
186 memcpy(gp + j*len, datap[j], len);
187 }
188
189 png_destroy_read_struct(&strct, &info, NULL);
190 strct = NULL;
191 info = NULL;
192 state = JBXL_NORMAL;
193
194 return;
195}
196
197
212int PNGImage::writeData(FILE* fp)
213{
214 if (fp==NULL) {
216 return state;
217 }
218 if (state!=JBXL_NORMAL || gp==NULL) {
220 return state;
221 }
222 //
223 strct = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
224 if (strct==NULL) {
225 state = JBXL_ERROR;
226 return state;
227 }
228 info = png_create_info_struct(strct);
229 if (info==NULL) {
230 png_destroy_write_struct(&strct, NULL);
231 strct = NULL;
232 state = JBXL_ERROR;
233 return state;
234 }
235
236 if (col==1) type = PNG_COLOR_TYPE_GRAY;
237 else if (col==2) type = PNG_COLOR_TYPE_GA;
238 else if (col==3) type = PNG_COLOR_TYPE_RGB;
239 else if (col==4) type = PNG_COLOR_TYPE_RGBA;
240 else {
241 png_destroy_write_struct(&strct, &info);
242 strct = NULL;
243 info = NULL;
245 return state;
246 }
247
248 png_init_io(strct, fp);
249 png_set_IHDR(strct, info, xs, ys, 8, type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
250 uByte** datap = (uByte**)png_malloc(strct, sizeof(uByte*) * ys);
251 if (datap==NULL) {
252 png_destroy_write_struct(&strct, &info);
253 strct = NULL;
254 info = NULL;
256 return state;
257 }
258 png_set_rows(strct, info, datap);
259
260 int len = xs*col;
261 for (int j=0; j<ys; j++) {
262 datap[j] = (uByte*)malloc(len);
263 if (datap[j]==NULL) {
264 for (int i=0; i<j; i++) png_free(strct, datap[i]);
265 png_free(strct, datap);
266 png_destroy_write_struct(&strct, &info);
267 strct = NULL;
268 info = NULL;
270 return state;
271 }
272 memcpy(datap[j], gp + j*len, len);
273 }
274 //
275 png_write_png(strct, info, PNG_TRANSFORM_IDENTITY, NULL);
276
277 for (int j=0; j<ys; j++) png_free(strct, datap[j]);
278 png_free(strct, datap);
279 png_destroy_write_struct(&strct, &info);
280 strct = NULL;
281 info = NULL;
282 state = JBXL_NORMAL;
283 return state;
284}
285
286
287
289
307PNGImage jbxl::readPNGFile(const char* fname)
308{
309 PNGImage png;
310
311 if (fname==NULL) {
312 png.state = JBXL_GRAPH_IVDARG_ERROR;
313 return png;
314 }
315 //
316 FILE* fp = fopen(fname, "rb");
317 if (fp==NULL) {
318 png.state = JBXL_GRAPH_OPFILE_ERROR;
319 return png;
320 }
321 //
322 png = readPNGData(fp);
323 fclose(fp);
324
325 return png;
326}
327
328
345PNGImage jbxl::readPNGData(FILE* fp)
346{
347 PNGImage png;
348
349 if (fp==NULL) {
350 png.state = JBXL_GRAPH_OPFILE_ERROR;
351 return png;
352 }
353 //
354 png.readData(fp);
355
356 return png;
357}
358
359
376int jbxl::writePNGFile(const char* fname, PNGImage* png)
377{
378 if (fname==NULL) return JBXL_GRAPH_IVDARG_ERROR;
379 if (png->state!=JBXL_NORMAL || png->gp==NULL) return JBXL_GRAPH_NODATA_ERROR;
380
381 FILE* fp = fopen(fname, "wb");
382 if (fp==NULL) {
384 }
385 int ret = writePNGData(fp, png);
386 fclose(fp);
387
388 return ret;
389}
390
391
407int jbxl::writePNGData(FILE* fp, PNGImage* png)
408{
409 if (fp==NULL) return JBXL_GRAPH_OPFILE_ERROR;
410 if (png->state!=JBXL_NORMAL || png->gp==NULL) return JBXL_GRAPH_NODATA_ERROR;
411 //
412 int ret = png->writeData(fp);
413 //
414 if (ret==JBXL_NORMAL) ret = 0;
415 else if (ret==0) ret = JBXL_ERROR; // 情報なし?
416 return ret;
417}
418
419
420#endif // ENABLE_PNG
421
unsigned char uByte
1Byte
Definition common.h:332
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
Definition jbxl_state.h:178
#define JBXL_GRAPH_NODATA_ERROR
データが無い
Definition jbxl_state.h:171
#define JBXL_ERROR
エラー
Definition jbxl_state.h:34
#define JBXL_GRAPH_OPFILE_ERROR
ファイルのオープンエラー
Definition jbxl_state.h:173
#define JBXL_GRAPH_IVDCOLOR_ERROR
無効なカラー指定
Definition jbxl_state.h:183
#define JBXL_NORMAL
正常
Definition jbxl_state.h:32
#define JBXL_GRAPH_HEADER_ERROR
画像ヘッダーのエラー
Definition jbxl_state.h:169
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170
Definition Brep.h:29