info_ptr          122 ext/gd/libgd/gd_png.c 	png_infop info_ptr;
info_ptr          163 ext/gd/libgd/gd_png.c 	info_ptr = png_create_info_struct(png_ptr);
info_ptr          164 ext/gd/libgd/gd_png.c 	if (info_ptr == NULL) {
info_ptr          182 ext/gd/libgd/gd_png.c 		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
info_ptr          191 ext/gd/libgd/gd_png.c 	png_read_info(png_ptr, info_ptr);	/* read all PNG info up to image data */
info_ptr          193 ext/gd/libgd/gd_png.c 	png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL);
info_ptr          202 ext/gd/libgd/gd_png.c 		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
info_ptr          219 ext/gd/libgd/gd_png.c 		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
info_ptr          231 ext/gd/libgd/gd_png.c 			png_get_PLTE(png_ptr, info_ptr, &palette, &num_palette);
info_ptr          235 ext/gd/libgd/gd_png.c 			if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS)) {
info_ptr          243 ext/gd/libgd/gd_png.c 				png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, NULL);
info_ptr          257 ext/gd/libgd/gd_png.c 				png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
info_ptr          274 ext/gd/libgd/gd_png.c 			if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
info_ptr          275 ext/gd/libgd/gd_png.c 				png_get_tRNS(png_ptr, info_ptr, NULL, NULL, &trans_gray_rgb);
info_ptr          304 ext/gd/libgd/gd_png.c 				if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) {
info_ptr          305 ext/gd/libgd/gd_png.c 					png_get_tRNS(png_ptr, info_ptr, NULL, NULL, &trans_color_rgb);
info_ptr          319 ext/gd/libgd/gd_png.c 	png_read_update_info(png_ptr, info_ptr);
info_ptr          322 ext/gd/libgd/gd_png.c 	rowbytes = png_get_rowbytes(png_ptr, info_ptr);
info_ptr          357 ext/gd/libgd/gd_png.c 	png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
info_ptr          476 ext/gd/libgd/gd_png.c 	png_infop info_ptr;
info_ptr          491 ext/gd/libgd/gd_png.c 	info_ptr = png_create_info_struct(png_ptr);
info_ptr          492 ext/gd/libgd/gd_png.c 	if (info_ptr == NULL) {
info_ptr          502 ext/gd/libgd/gd_png.c 		png_destroy_write_struct (&png_ptr, &info_ptr);
info_ptr          574 ext/gd/libgd/gd_png.c 			png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB_ALPHA, interlace_type,
info_ptr          577 ext/gd/libgd/gd_png.c 			png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB, interlace_type,
info_ptr          581 ext/gd/libgd/gd_png.c 		png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, PNG_COLOR_TYPE_PALETTE, interlace_type,
info_ptr          590 ext/gd/libgd/gd_png.c 		png_set_tRNS(png_ptr, info_ptr, 0, 0, &trans_rgb_value);
info_ptr          614 ext/gd/libgd/gd_png.c 			png_set_tRNS (png_ptr, info_ptr, trans_values, 256, NULL);
info_ptr          637 ext/gd/libgd/gd_png.c 			png_set_tRNS(png_ptr, info_ptr, trans_values, tc, NULL);
info_ptr          660 ext/gd/libgd/gd_png.c 		png_set_PLTE(png_ptr, info_ptr, palette, colors);
info_ptr          664 ext/gd/libgd/gd_png.c 	png_write_info(png_ptr, info_ptr);
info_ptr          721 ext/gd/libgd/gd_png.c 		png_write_end(png_ptr, info_ptr);
info_ptr          740 ext/gd/libgd/gd_png.c 			png_write_end(png_ptr, info_ptr);
info_ptr          749 ext/gd/libgd/gd_png.c 			png_write_end(png_ptr, info_ptr);
info_ptr          754 ext/gd/libgd/gd_png.c 	png_destroy_write_struct(&png_ptr, &info_ptr);