]> git.imager.perl.org - imager.git/blobdiff - png.c
add the extra attributes that PPDs want
[imager.git] / png.c
diff --git a/png.c b/png.c
index 3ef0e9d868f5fa4cfbdf281d72e0070f53de5f34..70bec0081c308cb5b2cb90dbc62cd691bae252ed 100644 (file)
--- a/png.c
+++ b/png.c
@@ -240,12 +240,9 @@ i_readpng(int fd) {
   for (pass = 0; pass < number_passes; pass++)
     for (y = 0; y < height; y++) {
       png_read_row(png_ptr,(png_bytep) &(im->data[channels*width*y]), NULL);
-      mm_log((1, "pass = %d, row %d\n", pass, y));
     }
   /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
 
-  mm_log((1,"FOO!\n"));
-
   png_read_end(png_ptr, info_ptr); 
   /* clean up after the read, and free any memory allocated - REQUIRED */
   png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);