png_read_info (png_ptr, info_ptr);
{
png_byte color_type = info_ptr->color_type;
png_byte bit_depth = info_ptr->bit_depth;
...
を参照解除する私が間違って何のlibpng 1.5.10エラー:最後の2行については不完全型へのポインタ
error: dereferencing pointer to incomplete type
を取得しますか? libpng 1.4では、これは常にOKでした。
これは、あなたが適切なヘッダを含めていないことを意味します。 – Shahbaz
@Shahbaz 'png.h'が含まれています。 '-I/usr/include/libpng15'が存在します。 – askovpen