summaryrefslogtreecommitdiff
path: root/src/gd_png.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gd_png.c')
-rw-r--r--src/gd_png.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gd_png.c b/src/gd_png.c
index 4d8d49f..58c9682 100644
--- a/src/gd_png.c
+++ b/src/gd_png.c
@@ -415,6 +415,11 @@ BGD_DECLARE(gdImagePtr) gdImageCreateFromPngCtx (gdIOCtx * infile)
goto error;
}
+ /* enable the interlace transform if supported */
+#ifdef PNG_READ_INTERLACING_SUPPORTED
+ (void)png_set_interlace_handling(png_ptr);
+#endif
+
png_read_update_info (png_ptr, info_ptr);
/* allocate space for the PNG image data */