[devel] In the manual, describe the png_get_IHDR() arguments in the right order.
This commit is contained in:
parent
47457a01f7
commit
2cb633b915
1
ANNOUNCE
1
ANNOUNCE
@ -65,6 +65,7 @@ Version 1.5.1beta06 [January 20, 2011]
|
|||||||
end without returning anything.
|
end without returning anything.
|
||||||
|
|
||||||
Version 1.5.1rc01 [January 21, 2011]
|
Version 1.5.1rc01 [January 21, 2011]
|
||||||
|
In the manual, describe the png_get_IHDR() arguments in the correct order.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
1
CHANGES
1
CHANGES
@ -3181,6 +3181,7 @@ Version 1.5.1beta06 [January 20, 2011]
|
|||||||
end without returning anything.
|
end without returning anything.
|
||||||
|
|
||||||
Version 1.5.1rc01 [January 21, 2011]
|
Version 1.5.1rc01 [January 21, 2011]
|
||||||
|
In the manual, describe the png_get_IHDR() arguments in the correct order.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -748,15 +748,17 @@ in until png_read_end() has read the chunk data following the image.
|
|||||||
PNG_COLOR_MASK_COLOR
|
PNG_COLOR_MASK_COLOR
|
||||||
PNG_COLOR_MASK_ALPHA
|
PNG_COLOR_MASK_ALPHA
|
||||||
|
|
||||||
|
interlace_type - (PNG_INTERLACE_NONE or
|
||||||
|
PNG_INTERLACE_ADAM7)
|
||||||
|
|
||||||
|
compression_type - (must be PNG_COMPRESSION_TYPE_BASE
|
||||||
|
for PNG 1.0)
|
||||||
|
|
||||||
filter_method - (must be PNG_FILTER_TYPE_BASE
|
filter_method - (must be PNG_FILTER_TYPE_BASE
|
||||||
for PNG 1.0, and can also be
|
for PNG 1.0, and can also be
|
||||||
PNG_INTRAPIXEL_DIFFERENCING if
|
PNG_INTRAPIXEL_DIFFERENCING if
|
||||||
the PNG datastream is embedded in
|
the PNG datastream is embedded in
|
||||||
a MNG-1.0 datastream)
|
a MNG-1.0 datastream)
|
||||||
compression_type - (must be PNG_COMPRESSION_TYPE_BASE
|
|
||||||
for PNG 1.0)
|
|
||||||
interlace_type - (PNG_INTERLACE_NONE or
|
|
||||||
PNG_INTERLACE_ADAM7)
|
|
||||||
|
|
||||||
Any or all of interlace_type, compression_type, or
|
Any or all of interlace_type, compression_type, or
|
||||||
filter_method can be NULL if you are
|
filter_method can be NULL if you are
|
||||||
@ -777,11 +779,11 @@ in until png_read_end() has read the chunk data following the image.
|
|||||||
info_ptr);
|
info_ptr);
|
||||||
color_type = png_get_color_type(png_ptr,
|
color_type = png_get_color_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
filter_method = png_get_filter_type(png_ptr,
|
interlace_type = png_get_interlace_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
compression_type = png_get_compression_type(png_ptr,
|
compression_type = png_get_compression_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
interlace_type = png_get_interlace_type(png_ptr,
|
filter_method = png_get_filter_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
|
|
||||||
channels = png_get_channels(png_ptr, info_ptr);
|
channels = png_get_channels(png_ptr, info_ptr);
|
||||||
|
14
libpng.3
14
libpng.3
@ -1599,15 +1599,17 @@ in until png_read_end() has read the chunk data following the image.
|
|||||||
PNG_COLOR_MASK_COLOR
|
PNG_COLOR_MASK_COLOR
|
||||||
PNG_COLOR_MASK_ALPHA
|
PNG_COLOR_MASK_ALPHA
|
||||||
|
|
||||||
|
interlace_type - (PNG_INTERLACE_NONE or
|
||||||
|
PNG_INTERLACE_ADAM7)
|
||||||
|
|
||||||
|
compression_type - (must be PNG_COMPRESSION_TYPE_BASE
|
||||||
|
for PNG 1.0)
|
||||||
|
|
||||||
filter_method - (must be PNG_FILTER_TYPE_BASE
|
filter_method - (must be PNG_FILTER_TYPE_BASE
|
||||||
for PNG 1.0, and can also be
|
for PNG 1.0, and can also be
|
||||||
PNG_INTRAPIXEL_DIFFERENCING if
|
PNG_INTRAPIXEL_DIFFERENCING if
|
||||||
the PNG datastream is embedded in
|
the PNG datastream is embedded in
|
||||||
a MNG-1.0 datastream)
|
a MNG-1.0 datastream)
|
||||||
compression_type - (must be PNG_COMPRESSION_TYPE_BASE
|
|
||||||
for PNG 1.0)
|
|
||||||
interlace_type - (PNG_INTERLACE_NONE or
|
|
||||||
PNG_INTERLACE_ADAM7)
|
|
||||||
|
|
||||||
Any or all of interlace_type, compression_type, or
|
Any or all of interlace_type, compression_type, or
|
||||||
filter_method can be NULL if you are
|
filter_method can be NULL if you are
|
||||||
@ -1628,11 +1630,11 @@ in until png_read_end() has read the chunk data following the image.
|
|||||||
info_ptr);
|
info_ptr);
|
||||||
color_type = png_get_color_type(png_ptr,
|
color_type = png_get_color_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
filter_method = png_get_filter_type(png_ptr,
|
interlace_type = png_get_interlace_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
compression_type = png_get_compression_type(png_ptr,
|
compression_type = png_get_compression_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
interlace_type = png_get_interlace_type(png_ptr,
|
filter_method = png_get_filter_type(png_ptr,
|
||||||
info_ptr);
|
info_ptr);
|
||||||
|
|
||||||
channels = png_get_channels(png_ptr, info_ptr);
|
channels = png_get_channels(png_ptr, info_ptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user