The png_info
struct was removed from the png.h
in 1.5.0 and now you should use this pointer with the png_get_*
and png_set_*
functions.
As specified in libpng manual:
The png_info structure is designed to provide information about the
PNG file. At one time, the fields of png_info were intended to be
directly accessible to the user. However, this tended to cause
problems with applications using dynamically loaded libraries, and as
a result a set of interface functions for png_info (the png_get_*()
and png_set_*() functions) was developed, and direct access to the
png_info fields was deprecated..
For example:
png_uint_32 height;
height = png_get_image_height( png_ptr, info_ptr);