mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng15] Added a note in the manual the png_read_update_info() must be
called only once with a particular info_ptr.
This commit is contained in:
parent
bb5cb1476b
commit
968c231cc8
6
ANNOUNCE
6
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.5.6beta02 - September 22, 2011
|
Libpng 1.5.6beta02 - September 26, 2011
|
||||||
|
|
||||||
This is not intended to be a public release. It will be replaced
|
This is not intended to be a public release. It will be replaced
|
||||||
within a few weeks by a public version or by another test version.
|
within a few weeks by a public version or by another test version.
|
||||||
@ -40,6 +40,10 @@ Version 1.5.6beta01 [September 22, 2011]
|
|||||||
the stack in the read/write code. Unknown chunk handling still uses the
|
the stack in the read/write code. Unknown chunk handling still uses the
|
||||||
string form because this is exposed in the API.
|
string form because this is exposed in the API.
|
||||||
|
|
||||||
|
Version 1.5.6beta02 [September 26, 2011]
|
||||||
|
Added a note in the manual the png_read_update_info() must be called only
|
||||||
|
once with a particular info_ptr.
|
||||||
|
|
||||||
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
|
||||||
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
||||||
|
|||||||
4
CHANGES
4
CHANGES
@ -3601,7 +3601,9 @@ Version 1.5.6beta01 [September 22, 2011]
|
|||||||
the stack in the read/write code. Unknown chunk handling still uses the
|
the stack in the read/write code. Unknown chunk handling still uses the
|
||||||
string form because this is exposed in the API.
|
string form because this is exposed in the API.
|
||||||
|
|
||||||
Version 1.5.6beta02 [September 22, 2011]
|
Version 1.5.6beta02 [September 26, 2011]
|
||||||
|
Added a note in the manual the png_read_update_info() must be called only
|
||||||
|
once with a particular info_ptr.
|
||||||
|
|
||||||
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,6 +1,6 @@
|
|||||||
libpng-manual.txt - A description on how to use and modify libpng
|
libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.5.6beta02 - September 22, 2011
|
libpng version 1.5.6beta02 - September 26, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -11,7 +11,7 @@ libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.5.6beta02 - September 22, 2011
|
libpng versions 0.97, January 1998, through 1.5.6beta02 - September 26, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -1899,13 +1899,16 @@ of the interlaced image.
|
|||||||
|
|
||||||
After setting the transformations, libpng can update your png_info
|
After setting the transformations, libpng can update your png_info
|
||||||
structure to reflect any transformations you've requested with this
|
structure to reflect any transformations you've requested with this
|
||||||
call. This is most useful to update the info structure's rowbytes
|
call.
|
||||||
field so you can use it to allocate your image memory. This function
|
|
||||||
will also update your palette with the correct screen_gamma and
|
|
||||||
background if these have been given with the calls above.
|
|
||||||
|
|
||||||
png_read_update_info(png_ptr, info_ptr);
|
png_read_update_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
This is most useful to update the info structure's rowbytes
|
||||||
|
field so you can use it to allocate your image memory. This function
|
||||||
|
will also update your palette with the correct screen_gamma and
|
||||||
|
background if these have been given with the calls above. You may
|
||||||
|
only call png_read_update_info() once with a particular info_ptr.
|
||||||
|
|
||||||
After you call png_read_update_info(), you can allocate any
|
After you call png_read_update_info(), you can allocate any
|
||||||
memory you need to hold the image. The row data is simply
|
memory you need to hold the image. The row data is simply
|
||||||
raw byte data for all forms of images. As the actual allocation
|
raw byte data for all forms of images. As the actual allocation
|
||||||
@ -1914,7 +1917,7 @@ are allocating one large chunk, you will need to build an
|
|||||||
array of pointers to each row, as it will be needed for some
|
array of pointers to each row, as it will be needed for some
|
||||||
of the functions below.
|
of the functions below.
|
||||||
|
|
||||||
Remember: Before you call png_read_update_info(), the png_get_
|
Remember: Before you call png_read_update_info(), the png_get_*()
|
||||||
functions return the values corresponding to the original PNG image.
|
functions return the values corresponding to the original PNG image.
|
||||||
After you call png_read_update_info the values refer to the image
|
After you call png_read_update_info the values refer to the image
|
||||||
that libpng will output. Consequently you must call all the png_set_
|
that libpng will output. Consequently you must call all the png_set_
|
||||||
@ -4560,7 +4563,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
XIV. Y2K Compliance in libpng
|
XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
September 22, 2011
|
September 26, 2011
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
|
|||||||
27
libpng.3
27
libpng.3
@ -1,4 +1,4 @@
|
|||||||
.TH LIBPNG 3 "September 22, 2011"
|
.TH LIBPNG 3 "September 26, 2011"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
libpng \- Portable Network Graphics (PNG) Reference Library 1.5.6beta02
|
libpng \- Portable Network Graphics (PNG) Reference Library 1.5.6beta02
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -977,7 +977,7 @@ Following is a copy of the libpng-manual.txt file that accompanies libpng.
|
|||||||
.SH LIBPNG.TXT
|
.SH LIBPNG.TXT
|
||||||
libpng-manual.txt - A description on how to use and modify libpng
|
libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.5.6beta02 - September 22, 2011
|
libpng version 1.5.6beta02 - September 26, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -988,7 +988,7 @@ libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.5.6beta02 - September 22, 2011
|
libpng versions 0.97, January 1998, through 1.5.6beta02 - September 26, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -2876,13 +2876,16 @@ of the interlaced image.
|
|||||||
|
|
||||||
After setting the transformations, libpng can update your png_info
|
After setting the transformations, libpng can update your png_info
|
||||||
structure to reflect any transformations you've requested with this
|
structure to reflect any transformations you've requested with this
|
||||||
call. This is most useful to update the info structure's rowbytes
|
call.
|
||||||
field so you can use it to allocate your image memory. This function
|
|
||||||
will also update your palette with the correct screen_gamma and
|
|
||||||
background if these have been given with the calls above.
|
|
||||||
|
|
||||||
png_read_update_info(png_ptr, info_ptr);
|
png_read_update_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
|
This is most useful to update the info structure's rowbytes
|
||||||
|
field so you can use it to allocate your image memory. This function
|
||||||
|
will also update your palette with the correct screen_gamma and
|
||||||
|
background if these have been given with the calls above. You may
|
||||||
|
only call png_read_update_info() once with a particular info_ptr.
|
||||||
|
|
||||||
After you call png_read_update_info(), you can allocate any
|
After you call png_read_update_info(), you can allocate any
|
||||||
memory you need to hold the image. The row data is simply
|
memory you need to hold the image. The row data is simply
|
||||||
raw byte data for all forms of images. As the actual allocation
|
raw byte data for all forms of images. As the actual allocation
|
||||||
@ -2891,7 +2894,7 @@ are allocating one large chunk, you will need to build an
|
|||||||
array of pointers to each row, as it will be needed for some
|
array of pointers to each row, as it will be needed for some
|
||||||
of the functions below.
|
of the functions below.
|
||||||
|
|
||||||
Remember: Before you call png_read_update_info(), the png_get_
|
Remember: Before you call png_read_update_info(), the png_get_*()
|
||||||
functions return the values corresponding to the original PNG image.
|
functions return the values corresponding to the original PNG image.
|
||||||
After you call png_read_update_info the values refer to the image
|
After you call png_read_update_info the values refer to the image
|
||||||
that libpng will output. Consequently you must call all the png_set_
|
that libpng will output. Consequently you must call all the png_set_
|
||||||
@ -5538,7 +5541,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
.SH XIV. Y2K Compliance in libpng
|
.SH XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
September 22, 2011
|
September 26, 2011
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
@ -5800,7 +5803,7 @@ possible without all of you.
|
|||||||
|
|
||||||
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
||||||
|
|
||||||
Libpng version 1.5.6beta02 - September 22, 2011:
|
Libpng version 1.5.6beta02 - September 26, 2011:
|
||||||
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
||||||
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
||||||
|
|
||||||
@ -5823,7 +5826,7 @@ this sentence.
|
|||||||
|
|
||||||
This code is released under the libpng license.
|
This code is released under the libpng license.
|
||||||
|
|
||||||
libpng versions 1.2.6, August 15, 2004, through 1.5.6beta02, September 22, 2011, are
|
libpng versions 1.2.6, August 15, 2004, through 1.5.6beta02, September 26, 2011, are
|
||||||
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
||||||
distributed according to the same disclaimer and license as libpng-1.2.5
|
distributed according to the same disclaimer and license as libpng-1.2.5
|
||||||
with the following individual added to the list of Contributing Authors
|
with the following individual added to the list of Contributing Authors
|
||||||
@ -5922,7 +5925,7 @@ certification mark of the Open Source Initiative.
|
|||||||
|
|
||||||
Glenn Randers-Pehrson
|
Glenn Randers-Pehrson
|
||||||
glennrp at users.sourceforge.net
|
glennrp at users.sourceforge.net
|
||||||
September 22, 2011
|
September 26, 2011
|
||||||
|
|
||||||
.\" end of man page
|
.\" end of man page
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user