Lines Matching refs:read_info
72 png_structp read_ptr, png_infop read_info,
79 png_read_info(read_ptr, read_info);
81 png_get_IHDR(read_ptr, read_info, &outImageInfo->width,
95 if (png_get_valid(read_ptr, read_info, PNG_INFO_tRNS)) {
109 png_read_update_info(read_ptr, read_info);
116 png_set_rows(read_ptr, read_info, outImageInfo->rows);
121 malloc(png_get_rowbytes(read_ptr, read_info));
126 png_read_end(read_ptr, read_info);
134 png_get_IHDR(read_ptr, read_info, &outImageInfo->width,
1144 png_infop read_info = NULL;
1168 read_info = png_create_info_struct(read_ptr);
1169 if (!read_info) {
1179 read_png(printableName.string(), read_ptr, read_info, &imageInfo);
1227 png_destroy_read_struct(&read_ptr, &read_info, (png_infopp)NULL);
1246 png_infop read_info = NULL;
1272 png_destroy_read_struct(&read_ptr, &read_info,NULL);
1277 read_info = png_create_info_struct(read_ptr);
1278 if (!read_info) {
1280 png_destroy_read_struct(&read_ptr, &read_info,NULL);
1287 png_destroy_read_struct(&read_ptr, &read_info,NULL);
1295 read_png(source.string(), read_ptr, read_info, &imageInfo);
1302 png_destroy_read_struct(&read_ptr, &read_info,NULL);