]> git.imager.perl.org - imager.git/blob - png.c
1c0a6ab1fa4d6731bd7674c6db593065426dd2ab
[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  
208   /* Extract multiple pixels with bit depths of 1, 2, and 4 from a single
209    * byte into separate bytes (useful for paletted and grayscale images).
210    */
211
212   png_set_packing(png_ptr);
213
214   /* Expand paletted colors into true RGB triplets */
215   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr);
216   
217   /* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */
218   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr);
219
220   /* Expand paletted or RGB images with transparency to full alpha channels
221    * so the data will be available as RGBA quartets.
222    *
223    * if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr);
224    * 
225    */
226   
227   /* Strip alpha bytes from the input data without combining with the
228    * background (not recommended).
229    */
230   if ( (color_type != PNG_COLOR_TYPE_RGB_ALPHA) && (color_type != PNG_COLOR_TYPE_GRAY_ALPHA) )
231     png_set_strip_alpha(png_ptr);
232
233   number_passes = png_set_interlace_handling(png_ptr);
234
235   mm_log((1,"number of passes=%d\n",number_passes));
236   
237   png_read_update_info(png_ptr, info_ptr);
238
239   for (pass = 0; pass < number_passes; pass++)
240     for (y = 0; y < height; y++) {
241       png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL);
242     }
243   /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
244
245   png_read_end(png_ptr, info_ptr); 
246   /* clean up after the read, and free any memory allocated - REQUIRED */
247   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
248
249   fclose(fp);
250   return im;
251 }
252
253   
254
255
256 undef_int
257 i_writepng(i_img *im,int fd) {
258   FILE *fp;
259   png_structp png_ptr;
260   png_infop info_ptr;
261   int width,height,y;
262   volatile int cspace,channels;
263
264   mm_log((1,"i_writepng(0x%x,fd %d)\n",im,fd));
265   
266   if ((fp = fdopen(fd,"w")) == NULL) {
267     mm_log((1,"can't fdopen.\n"));
268     exit(1);
269   }
270
271   height=im->ysize;
272   width=im->xsize;
273
274   channels=im->channels;
275
276   if (channels>2) { cspace=PNG_COLOR_TYPE_RGB; channels-=3; }
277   else { cspace=PNG_COLOR_TYPE_GRAY; channels--; }
278   
279   if (channels) cspace|=PNG_COLOR_MASK_ALPHA;
280   mm_log((1,"cspace=%d\n",cspace));
281
282   channels=im->channels;
283
284   /* Create and initialize the png_struct with the desired error handler
285    * functions.  If you want to use the default stderr and longjump method,
286    * you can supply NULL for the last three parameters.  We also check that
287    * the library version is compatible with the one used at compile time,
288    * in case we are using dynamically linked libraries.  REQUIRED.
289    */
290   
291   png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL);
292   
293   if (png_ptr == NULL) {
294     fclose(fp);
295     return 0;
296   }
297   
298   /* Allocate/initialize the image information data.  REQUIRED */
299   info_ptr = png_create_info_struct(png_ptr);
300
301   if (info_ptr == NULL) {
302     fclose(fp);
303     png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
304     return(0);
305   }
306   
307   /* Set error handling.  REQUIRED if you aren't supplying your own
308    * error hadnling functions in the png_create_write_struct() call.
309    */
310   if (setjmp(png_ptr->jmpbuf)) {
311     /* If we get here, we had a problem reading the file */
312     fclose(fp);
313     png_destroy_write_struct(&png_ptr,  (png_infopp)NULL);
314     return(0);
315   }
316   
317   png_init_io(png_ptr, fp);
318
319   /* Set the image information here.  Width and height are up to 2^31,
320    * bit_depth is one of 1, 2, 4, 8, or 16, but valid values also depend on
321    * the color_type selected. color_type is one of PNG_COLOR_TYPE_GRAY,
322    * PNG_COLOR_TYPE_GRAY_ALPHA, PNG_COLOR_TYPE_PALETTE, PNG_COLOR_TYPE_RGB,
323    * or PNG_COLOR_TYPE_RGB_ALPHA.  interlace is either PNG_INTERLACE_NONE or
324    * PNG_INTERLACE_ADAM7, and the compression_type and filter_type MUST
325    * currently be PNG_COMPRESSION_TYPE_BASE and PNG_FILTER_TYPE_BASE. REQUIRED
326    */
327
328   png_set_IHDR(png_ptr, info_ptr, width, height, 8, cspace,
329                PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
330
331   png_write_info(png_ptr, info_ptr);
332   for (y = 0; y < height; y++) png_write_row(png_ptr, (png_bytep) &(im->data[channels*width*y]));
333   png_write_end(png_ptr, info_ptr);
334   png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
335
336   fclose(fp);
337   return(1);
338 }
339
340
341
342
343 i_img*
344 i_readpng_scalar(char *data, int length) {
345   i_img *im;
346   png_structp png_ptr;
347   png_infop info_ptr;
348   png_uint_32 width, height, y;
349   int bit_depth, color_type, interlace_type;
350   int number_passes;
351   int channels, pass;
352   unsigned int sig_read;
353
354   struct png_scalar_info sci;
355
356   sci.data=data;
357   sci.length=length;
358   sci.cpos=0;
359
360   sig_read=0;
361   mm_log((1,"i_readpng_scalar(char 0x%08X, length %d)\n",data,length));
362
363   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL);
364   png_set_read_fn(png_ptr, (void*) (&sci), user_read_data);
365   
366   info_ptr = png_create_info_struct(png_ptr);
367   if (info_ptr == NULL) {
368     png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
369     return NULL;
370   }
371   
372   if (setjmp(png_ptr->jmpbuf)) {
373     mm_log((1,"i_readpng_scalar: error.\n"));
374     png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
375     return NULL;
376   }
377   
378   scalar_png_init_io(png_ptr, &sci);
379   png_set_sig_bytes(png_ptr, sig_read);
380   png_read_info(png_ptr, info_ptr);
381   png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL);
382   
383   mm_log((1,
384           "png_get_IHDR results: width %d, height %d, bit_depth %d,color_type %d,interlace_type %d\n",
385           width,height,bit_depth,color_type,interlace_type));
386   
387   CC2C[PNG_COLOR_TYPE_GRAY]=1;
388   CC2C[PNG_COLOR_TYPE_PALETTE]=3;
389   CC2C[PNG_COLOR_TYPE_RGB]=3;
390   CC2C[PNG_COLOR_TYPE_RGB_ALPHA]=4;
391   CC2C[PNG_COLOR_TYPE_GRAY_ALPHA]=2;
392   channels=CC2C[color_type];
393   mm_log((1,"channels %d\n",channels));
394   im=i_img_empty_ch(NULL,width,height,channels);
395   png_set_strip_16(png_ptr);
396   png_set_packing(png_ptr);
397   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr);
398   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr);
399   if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr);
400   number_passes = png_set_interlace_handling(png_ptr);
401   mm_log((1,"number of passes=%d\n",number_passes));
402   png_read_update_info(png_ptr, info_ptr);
403   mm_log((1,"made it to here 1\n"));
404   for (pass = 0; pass < number_passes; pass++)
405     for (y = 0; y < height; y++) { png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL); }
406   mm_log((1,"made it to here 2\n"));
407   png_read_end(png_ptr, info_ptr); 
408   mm_log((1,"made it to here 3\n"));
409   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
410   mm_log((1,"made it to here 4\n"));
411   mm_log((1,"(0x%08X) <- i_readpng_scalar\n",im));  
412   return im;
413 }
414
415
416
417
418 /* i_img* */
419 /* i_readpng_wiol(io_glue *ig, int length) { */
420 /*   i_img *im; */
421 /*   png_structp png_ptr; */
422 /*   png_infop info_ptr; */
423 /*   png_uint_32 width, height; */
424 /*   int bit_depth, color_type, interlace_type; */
425 /*   int number_passes,y; */
426 /*   int channels,pass; */
427 /*   unsigned int sig_read; */
428
429 /*   struct png_wiol_info wi; */
430
431 /*   wi.data   = ig; */
432 /*   wi.length = length; */
433 /*   wi.cpos   = 0; */
434     
435 /*   sig_read=0; */
436 /*   mm_log((1,"i_readpng_wiol(char 0x%p, length %d)\n", data, length)); */
437
438 /*   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,NULL,NULL,NULL); */
439 /*   png_set_read_fn(png_ptr, (void*) (&wi), user_read_data); */
440   
441 /*   info_ptr = png_create_info_struct(png_ptr); */
442 /*   if (info_ptr == NULL) { */
443 /*     png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL); */
444 /*     return NULL; */
445 /*   } */
446   
447 /*   if (setjmp(png_ptr->jmpbuf)) { */
448 /*     mm_log((1,"i_readpng_wiol: error.\n")); */
449 /*     png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); */
450 /*     return NULL; */
451 /*   } */
452   
453 /*   scalar_png_init_io(png_ptr, &sci); */
454 /*   png_set_sig_bytes(png_ptr, sig_read); */
455 /*   png_read_info(png_ptr, info_ptr); */
456 /*   png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); */
457   
458 /*   mm_log((1, */
459 /*        "png_get_IHDR results: width %d, height %d, bit_depth %d,color_type %d,interlace_type %d\n", */
460 /*        width,height,bit_depth,color_type,interlace_type)); */
461   
462 /*   CC2C[PNG_COLOR_TYPE_GRAY]=1; */
463 /*   CC2C[PNG_COLOR_TYPE_PALETTE]=3; */
464 /*   CC2C[PNG_COLOR_TYPE_RGB]=3; */
465 /*   CC2C[PNG_COLOR_TYPE_RGB_ALPHA]=4; */
466 /*   CC2C[PNG_COLOR_TYPE_GRAY_ALPHA]=2; */
467 /*   channels = CC2C[color_type]; */
468
469 /*   mm_log((1,"i_readpng_wiol: channels %d\n",channels)); */
470
471 /*   im = i_img_empty_ch(NULL,width,height,channels); */
472 /*   png_set_strip_16(png_ptr); */
473 /*   png_set_packing(png_ptr); */
474 /*   if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand(png_ptr); */
475 /*   if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_expand(png_ptr); */
476 /*   if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand(png_ptr); */
477 /*   number_passes = png_set_interlace_handling(png_ptr); */
478 /*   mm_log((1,"number of passes=%d\n",number_passes)); */
479 /*   png_read_update_info(png_ptr, info_ptr); */
480 /*   mm_log((1,"made it to here 1\n")); */
481 /*   for (pass = 0; pass < number_passes; pass++) */
482 /*     for (y = 0; y < height; y++) { png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL); } */
483 /*   mm_log((1,"made it to here 2\n")); */
484 /*   png_read_end(png_ptr, info_ptr);  */
485 /*   mm_log((1,"made it to here 3\n")); */
486 /*   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); */
487 /*   mm_log((1,"made it to here 4\n")); */
488 /*   mm_log((1,"(0x%08X) <- i_readpng_scalar\n",im));   */
489
490 /*   return im; */
491 /* } */