]> git.imager.perl.org - imager.git/blob - png.c
Added STATUS, other updates are just from touching files.
[imager.git] / png.c
1 #include "image.h"
2 #include "png.h"
3
4 /* Check to see if a file is a PNG file using png_sig_cmp().  png_sig_cmp()
5  * returns zero if the image is a PNG and nonzero if it isn't a PNG.
6  *
7  * The function check_if_png() shown here, but not used, returns nonzero (true)
8  * if the file can be opened and is a PNG, 0 (false) otherwise.
9  *
10  * If this call is successful, and you are going to keep the file open,
11  * you should call png_set_sig_bytes(png_ptr, PNG_BYTES_TO_CHECK); once
12  * you have created the png_ptr, so that libpng knows your application
13  * has read that many bytes from the start of the file.  Make sure you
14  * don't call png_set_sig_bytes() with more than 8 bytes read or give it
15  * an incorrect number of bytes read, or you will either have read too
16  * many bytes (your fault), or you are telling libpng to read the wrong
17  * number of magic bytes (also your fault).
18  *
19  * Many applications already read the first 2 or 4 bytes from the start
20  * of the image to determine the file type, so it would be easiest just
21  * to pass the bytes to png_sig_cmp() or even skip that if you know
22  * you have a PNG file, and call png_set_sig_bytes().
23  */
24
25 /* this is a way to get number of channels from color space 
26  * Color code to channel number */
27
28 int CC2C[PNG_COLOR_MASK_PALETTE|PNG_COLOR_MASK_COLOR|PNG_COLOR_MASK_ALPHA];
29
30 #define PNG_BYTES_TO_CHECK 4
31  
32
33
34
35
36
37
38
39
40 /*
41 png_set_read_fn(png_structp read_ptr, voidp read_io_ptr, png_rw_ptr read_data_fn)
42 png_set_write_fn(png_structp write_ptr, voidp write_io_ptr, png_rw_ptr write_data_fn,
43 png_flush_ptr output_flush_fn);
44 voidp read_io_ptr = png_get_io_ptr(read_ptr);
45 voidp write_io_ptr = png_get_io_ptr(write_ptr);
46 */
47
48 struct png_scalar_info {
49   char *data;
50   int length;
51   int cpos;
52 };
53
54
55 struct png_wiol_info {
56   io_glue *cp;
57   int length;
58   int cpos;
59 };
60
61 static void
62 user_read_data(png_structp png_ptr,png_bytep data, png_size_t length) {
63   struct png_scalar_info *sci=(struct png_scalar_info *)png_ptr->io_ptr;
64   
65   /*   fprintf(stderr,"user_read_data: cpos %d/%d (%d)\n",sci->cpos,sci->length,length); */
66   
67   if (sci->cpos+(ssize_t)length > sci->length ) { png_error(png_ptr, "Read overflow error on a scalar."); }
68   
69   memcpy(data, sci->data+sci->cpos , length);
70   sci->cpos+=length;
71 }
72
73 /*
74 static void
75 user_write_data(png_structp png_ptr, png_bytep data, png_uint_32 length) {
76    FIXME: implement these 
77 }
78
79 static void
80 user_flush_data(png_structp png_ptr) {
81   FIXME: implement these 
82 }
83 */
84
85
86 void
87 scalar_png_init_io(png_structp png_ptr,struct png_scalar_info *sci) {
88   png_ptr->io_ptr = (png_voidp)sci;
89 }
90
91
92
93
94
95
96 int
97 check_if_png(char *file_name, FILE **fp) {
98    char buf[PNG_BYTES_TO_CHECK];
99    
100    /* Open the prospective PNG file. */
101    if ((*fp = fopen(file_name, "rb")) != NULL) return 0;
102    
103    /* Read in some of the signature bytes */
104    if (fread(buf, 1, PNG_BYTES_TO_CHECK, *fp) != PNG_BYTES_TO_CHECK) return 0;
105
106    /* Compare the first PNG_BYTES_TO_CHECK bytes of the signature.
107       Return nonzero (true) if they match */
108
109    return(!png_sig_cmp((png_bytep)buf, (png_size_t)0, PNG_BYTES_TO_CHECK));
110 }
111
112 /* Read a PNG file.  You may want to return an error code if the read
113  * fails (depending upon the failure).  There are two "prototypes" given
114  * here - one where we are given the filename, and we need to open the
115  * file, and the other where we are given an open file (possibly with
116  * some or all of the magic bytes read - see comments above).
117  */
118
119 i_img *
120 i_readpng(int fd) {
121   i_img *im;
122   png_structp png_ptr;
123   png_infop info_ptr;
124   png_uint_32 width, height, y;
125   int bit_depth, color_type, interlace_type;
126   int number_passes;
127   int channels, pass;
128   
129   FILE *fp;
130   unsigned int sig_read;
131
132   sig_read=0;
133
134   if ((fp = fdopen(fd,"r")) == NULL) {
135     mm_log((1,"can't fdopen.\n"));
136     exit(1);
137   }
138
139   mm_log((1,"i_readpng(fd %d)\n",fd));
140
141   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL);
142   
143   if (png_ptr == NULL) {
144     fclose(fp);
145     return 0;
146   }
147   
148   /* Allocate/initialize the memory for image information.  REQUIRED. */
149   info_ptr = png_create_info_struct(png_ptr);
150   if (info_ptr == NULL) {
151     fclose(fp);
152     png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
153     return 0;
154   }
155   
156   /* Set error handling if you are using the setjmp/longjmp method (this is
157    * the normal method of doing things with libpng).  REQUIRED unless you
158    * set up your own error handlers in the png_create_read_struct() earlier.
159    */
160   
161   if (setjmp(png_ptr->jmpbuf)) {
162     /* Free all of the memory associated with the png_ptr and info_ptr */
163     png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
164     fclose(fp);
165     /* If we get here, we had a problem reading the file */
166     return NULL;
167   }
168   
169   /* Set up the input control if you are using standard C streams */
170   png_init_io(png_ptr, fp);
171   /* If we have already read some of the signature */
172   png_set_sig_bytes(png_ptr, sig_read);
173   
174   /* The call to png_read_info() gives us all of the information from the
175    * PNG file before the first IDAT (image data chunk).  REQUIRED
176    */
177   
178   png_read_info(png_ptr, info_ptr);
179   png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
180                &interlace_type, NULL, NULL);
181   
182   mm_log((1,
183           "png_get_IHDR results: width %d, height %d, bit_depth %d,color_type %d,interlace_type %d\n",
184           width,height,bit_depth,color_type,interlace_type));
185
186   CC2C[PNG_COLOR_TYPE_GRAY]=1;
187   CC2C[PNG_COLOR_TYPE_PALETTE]=3;
188   CC2C[PNG_COLOR_TYPE_RGB]=3;
189   CC2C[PNG_COLOR_TYPE_RGB_ALPHA]=4;
190   CC2C[PNG_COLOR_TYPE_GRAY_ALPHA]=2;
191
192   channels=CC2C[color_type];
193   
194   mm_log((1,"channels %d\n",channels));
195   
196   im=i_img_empty_ch(NULL,width,height,channels);
197
198   /**** Set up the data transformations you want.  Note that these are all
199    **** optional.  Only call them if you want/need them.  Many of the
200    **** transformations only work on specific types of images, and many
201    **** are mutually exclusive.
202    ****/
203
204   /* tell libpng to strip 16 bit/color files down to 8 bits/color */
205   png_set_strip_16(png_ptr);
206   
207   /* Strip alpha bytes from the input data without combining with the
208    * background (not recommended).
209    */
210   /*  png_set_strip_alpha(png_ptr); */
211   
212   /* Extract multiple pixels with bit depths of 1, 2, and 4 from a single
213    * byte into separate bytes (useful for paletted and grayscale images).
214    */
215
216   png_set_packing(png_ptr);
217
218   /* Expand paletted colors into true RGB triplets */
219   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr);
220   
221   /* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */
222   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr);
223
224   /* Expand paletted or RGB images with transparency to full alpha channels
225    * so the data will be available as RGBA quartets.
226    */
227   if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr);
228   
229   number_passes = png_set_interlace_handling(png_ptr);
230
231   mm_log((1,"number of passes=%d\n",number_passes));
232   
233   png_read_update_info(png_ptr, info_ptr);
234   for (pass = 0; pass < number_passes; pass++)
235     for (y = 0; y < height; y++) { png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL); }
236   /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
237
238   png_read_end(png_ptr, info_ptr); 
239   /* clean up after the read, and free any memory allocated - REQUIRED */
240   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
241
242   fclose(fp);
243   return im;
244 }
245
246   
247
248
249 undef_int
250 i_writepng(i_img *im,int fd) {
251   FILE *fp;
252   png_structp png_ptr;
253   png_infop info_ptr;
254   int width,height,y;
255   volatile int cspace,channels;
256
257   mm_log((1,"i_writepng(0x%x,fd %d)\n",im,fd));
258   
259   if ((fp = fdopen(fd,"w")) == NULL) {
260     mm_log((1,"can't fdopen.\n"));
261     exit(1);
262   }
263
264   height=im->ysize;
265   width=im->xsize;
266
267   channels=im->channels;
268
269   if (channels>2) { cspace=PNG_COLOR_TYPE_RGB; channels-=3; }
270   else { cspace=PNG_COLOR_TYPE_GRAY; channels--; }
271   
272   if (channels) cspace|=PNG_COLOR_MASK_ALPHA;
273   mm_log((1,"cspace=%d\n",cspace));
274
275   channels=im->channels;
276
277   /* Create and initialize the png_struct with the desired error handler
278    * functions.  If you want to use the default stderr and longjump method,
279    * you can supply NULL for the last three parameters.  We also check that
280    * the library version is compatible with the one used at compile time,
281    * in case we are using dynamically linked libraries.  REQUIRED.
282    */
283   
284   png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL);
285   
286   if (png_ptr == NULL) {
287     fclose(fp);
288     return 0;
289   }
290   
291   /* Allocate/initialize the image information data.  REQUIRED */
292   info_ptr = png_create_info_struct(png_ptr);
293
294   if (info_ptr == NULL) {
295     fclose(fp);
296     png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
297     return(0);
298   }
299   
300   /* Set error handling.  REQUIRED if you aren't supplying your own
301    * error hadnling functions in the png_create_write_struct() call.
302    */
303   if (setjmp(png_ptr->jmpbuf)) {
304     /* If we get here, we had a problem reading the file */
305     fclose(fp);
306     png_destroy_write_struct(&png_ptr,  (png_infopp)NULL);
307     return(0);
308   }
309   
310   png_init_io(png_ptr, fp);
311
312   /* Set the image information here.  Width and height are up to 2^31,
313    * bit_depth is one of 1, 2, 4, 8, or 16, but valid values also depend on
314    * the color_type selected. color_type is one of PNG_COLOR_TYPE_GRAY,
315    * PNG_COLOR_TYPE_GRAY_ALPHA, PNG_COLOR_TYPE_PALETTE, PNG_COLOR_TYPE_RGB,
316    * or PNG_COLOR_TYPE_RGB_ALPHA.  interlace is either PNG_INTERLACE_NONE or
317    * PNG_INTERLACE_ADAM7, and the compression_type and filter_type MUST
318    * currently be PNG_COMPRESSION_TYPE_BASE and PNG_FILTER_TYPE_BASE. REQUIRED
319    */
320
321   png_set_IHDR(png_ptr, info_ptr, width, height, 8, cspace,
322                PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
323
324   png_write_info(png_ptr, info_ptr);
325   for (y = 0; y < height; y++) png_write_row(png_ptr, (png_bytep) &(im->data[channels*width*y]));
326   png_write_end(png_ptr, info_ptr);
327   png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
328
329   fclose(fp);
330   return(1);
331 }
332
333
334
335
336 i_img*
337 i_readpng_scalar(char *data, int length) {
338   i_img *im;
339   png_structp png_ptr;
340   png_infop info_ptr;
341   png_uint_32 width, height, y;
342   int bit_depth, color_type, interlace_type;
343   int number_passes;
344   int channels, pass;
345   unsigned int sig_read;
346
347   struct png_scalar_info sci;
348
349   sci.data=data;
350   sci.length=length;
351   sci.cpos=0;
352
353   sig_read=0;
354   mm_log((1,"i_readpng_scalar(char 0x%08X, length %d)\n",data,length));
355
356   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL);
357   png_set_read_fn(png_ptr, (void*) (&sci), user_read_data);
358   
359   info_ptr = png_create_info_struct(png_ptr);
360   if (info_ptr == NULL) {
361     png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
362     return NULL;
363   }
364   
365   if (setjmp(png_ptr->jmpbuf)) {
366     mm_log((1,"i_readpng_scalar: error.\n"));
367     png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
368     return NULL;
369   }
370   
371   scalar_png_init_io(png_ptr, &sci);
372   png_set_sig_bytes(png_ptr, sig_read);
373   png_read_info(png_ptr, info_ptr);
374   png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL);
375   
376   mm_log((1,
377           "png_get_IHDR results: width %d, height %d, bit_depth %d,color_type %d,interlace_type %d\n",
378           width,height,bit_depth,color_type,interlace_type));
379   
380   CC2C[PNG_COLOR_TYPE_GRAY]=1;
381   CC2C[PNG_COLOR_TYPE_PALETTE]=3;
382   CC2C[PNG_COLOR_TYPE_RGB]=3;
383   CC2C[PNG_COLOR_TYPE_RGB_ALPHA]=4;
384   CC2C[PNG_COLOR_TYPE_GRAY_ALPHA]=2;
385   channels=CC2C[color_type];
386   mm_log((1,"channels %d\n",channels));
387   im=i_img_empty_ch(NULL,width,height,channels);
388   png_set_strip_16(png_ptr);
389   png_set_packing(png_ptr);
390   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr);
391   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr);
392   if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr);
393   number_passes = png_set_interlace_handling(png_ptr);
394   mm_log((1,"number of passes=%d\n",number_passes));
395   png_read_update_info(png_ptr, info_ptr);
396   mm_log((1,"made it to here 1\n"));
397   for (pass = 0; pass < number_passes; pass++)
398     for (y = 0; y < height; y++) { png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL); }
399   mm_log((1,"made it to here 2\n"));
400   png_read_end(png_ptr, info_ptr); 
401   mm_log((1,"made it to here 3\n"));
402   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
403   mm_log((1,"made it to here 4\n"));
404   mm_log((1,"(0x%08X) <- i_readpng_scalar\n",im));  
405   return im;
406 }
407
408
409
410
411 /* i_img* */
412 /* i_readpng_wiol(io_glue *ig, int length) { */
413 /*   i_img *im; */
414 /*   png_structp png_ptr; */
415 /*   png_infop info_ptr; */
416 /*   png_uint_32 width, height; */
417 /*   int bit_depth, color_type, interlace_type; */
418 /*   int number_passes,y; */
419 /*   int channels,pass; */
420 /*   unsigned int sig_read; */
421
422 /*   struct png_wiol_info wi; */
423
424 /*   wi.data   = ig; */
425 /*   wi.length = length; */
426 /*   wi.cpos   = 0; */
427     
428 /*   sig_read=0; */
429 /*   mm_log((1,"i_readpng_wiol(char 0x%p, length %d)\n", data, length)); */
430
431 /*   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL); */
432 /*   png_set_read_fn(png_ptr, (void*) (&wi), user_read_data); */
433   
434 /*   info_ptr = png_create_info_struct(png_ptr); */
435 /*   if (info_ptr == NULL) { */
436 /*     png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); */
437 /*     return NULL; */
438 /*   } */
439   
440 /*   if (setjmp(png_ptr->jmpbuf)) { */
441 /*     mm_log((1,"i_readpng_wiol: error.\n")); */
442 /*     png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); */
443 /*     return NULL; */
444 /*   } */
445   
446 /*   scalar_png_init_io(png_ptr, &sci); */
447 /*   png_set_sig_bytes(png_ptr, sig_read); */
448 /*   png_read_info(png_ptr, info_ptr); */
449 /*   png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); */
450   
451 /*   mm_log((1, */
452 /*        "png_get_IHDR results: width %d, height %d, bit_depth %d,color_type %d,interlace_type %d\n", */
453 /*        width,height,bit_depth,color_type,interlace_type)); */
454   
455 /*   CC2C[PNG_COLOR_TYPE_GRAY]=1; */
456 /*   CC2C[PNG_COLOR_TYPE_PALETTE]=3; */
457 /*   CC2C[PNG_COLOR_TYPE_RGB]=3; */
458 /*   CC2C[PNG_COLOR_TYPE_RGB_ALPHA]=4; */
459 /*   CC2C[PNG_COLOR_TYPE_GRAY_ALPHA]=2; */
460 /*   channels = CC2C[color_type]; */
461
462 /*   mm_log((1,"i_readpng_wiol: channels %d\n",channels)); */
463
464 /*   im = i_img_empty_ch(NULL,width,height,channels); */
465 /*   png_set_strip_16(png_ptr); */
466 /*   png_set_packing(png_ptr); */
467 /*   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr); */
468 /*   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr); */
469 /*   if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr); */
470 /*   number_passes = png_set_interlace_handling(png_ptr); */
471 /*   mm_log((1,"number of passes=%d\n",number_passes)); */
472 /*   png_read_update_info(png_ptr, info_ptr); */
473 /*   mm_log((1,"made it to here 1\n")); */
474 /*   for (pass = 0; pass < number_passes; pass++) */
475 /*     for (y = 0; y < height; y++) { png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL); } */
476 /*   mm_log((1,"made it to here 2\n")); */
477 /*   png_read_end(png_ptr, info_ptr);  */
478 /*   mm_log((1,"made it to here 3\n")); */
479 /*   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); */
480 /*   mm_log((1,"made it to here 4\n")); */
481 /*   mm_log((1,"(0x%08X) <- i_readpng_scalar\n",im));   */
482
483 /*   return im; */
484 /* } */