[master] Imported from libpng-1.2.38beta01.tar

This commit is contained in:
Glenn Randers-Pehrson
2009-06-17 07:42:30 -05:00
parent 54380f53a2
commit 1de866cd09
20 changed files with 562 additions and 84 deletions

View File

@@ -1,4 +1,4 @@
.TH LIBPNG 3 "June 8, 2009"
.TH LIBPNG 3 "June 17, 2009"
.SH NAME
libpng \- Portable Network Graphics (PNG) Reference Library 1.2.38beta01
.SH SYNOPSIS
@@ -821,7 +821,7 @@ Following is a copy of the libpng.txt file that accompanies libpng.
.SH LIBPNG.TXT
libpng.txt - A description on how to use and modify libpng
libpng version 1.2.38beta01 - June 8, 2009
libpng version 1.2.38beta01 - June 17, 2009
Updated and distributed by Glenn Randers-Pehrson
<glennrp at users.sourceforge.net>
Copyright (c) 1998-2009 Glenn Randers-Pehrson
@@ -830,7 +830,7 @@ libpng.txt - A description on how to use and modify libpng
Based on:
libpng versions 0.97, January 1998, through 1.2.38beta01 - June 8, 2009
libpng versions 0.97, January 1998, through 1.2.38beta01 - June 17, 2009
Updated and distributed by Glenn Randers-Pehrson
Copyright (c) 1998-2009 Glenn Randers-Pehrson
@@ -1142,28 +1142,6 @@ To inform libpng about your function, use
png_set_read_status_fn(png_ptr, read_row_callback);
.SS Width and height limits
The PNG specification allows the width and height of an image to be as
large as 2^31-1 (0x7fffffff), or about 2.147 billion rows and columns.
Since very few applications really need to process such large images,
we have imposed an arbitrary 1-million limit on rows and columns.
Larger images will be rejected immediately with a png_error() call. If
you wish to override this limit, you can use
png_set_user_limits(png_ptr, width_max, height_max);
to set your own limits, or use width_max = height_max = 0x7fffffffL
to allow all valid dimensions (libpng may reject some very large images
anyway because of potential buffer overflow conditions).
You should put this statement after you create the PNG structure and
before calling png_read_info(), png_read_png(), or png_process_data().
If you need to retrieve the limits that are being applied, use
width_max = png_get_user_width_max(png_ptr);
height_max = png_get_user_height_max(png_ptr);
.SS Unknown-chunk handling
Now you get to set the way the library processes unknown chunks in the
@@ -2634,7 +2612,7 @@ Some of the more important parts of the png_info are:
PNG_INTRAPIXEL_DIFFERENCING)
If you call png_set_IHDR(), the call must appear before any of the
other png_set_*() functions, which might require access to some of
other png_set_*() functions, because they might require access to some of
the IHDR settings. The remaining png_set_*() functions can be called
in any order.
@@ -3865,7 +3843,8 @@ We mark all non-exported functions with "/* PRIVATE */"":
}
The prototypes for non-exported functions can appear in
pngpriv.h or in the file where the function is located.
the PNG_INTERNAL section of png.h
or in the file where the function is located.
The names of all exported functions and variables begin
with "png_", and all publicly visible C preprocessor
@@ -3881,12 +3860,15 @@ left parenthesis that follows it:
for (i = 2; i > 0; --i)
x[i] = a(x) + (int)b;
We prefer #ifdef and #ifndef to #if defined() and if !defined()
when there is only one macro being tested.
Other rules can be inferred by inspecting the libpng
source.
.SH XIII. Y2K Compliance in libpng
June 8, 2009
June 17, 2009
Since the PNG Development group is an ad-hoc body, we can't make
an official declaration.
@@ -4218,7 +4200,7 @@ possible without all of you.
Thanks to Frank J. T. Wojcik for helping with the documentation.
Libpng version 1.2.38beta01 - June 8, 2009:
Libpng version 1.2.38beta01 - June 17, 2009:
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
@@ -4239,7 +4221,7 @@ included in the libpng distribution, the latter shall prevail.)
If you modify libpng you may insert additional notices immediately following
this sentence.
libpng versions 1.2.6, August 15, 2004, through 1.2.38beta01, June 8, 2009, are
libpng versions 1.2.6, August 15, 2004, through 1.2.38beta01, June 17, 2009, are
Copyright (c) 2004,2006-2008 Glenn Randers-Pehrson, and are
distributed according to the same disclaimer and license as libpng-1.2.5
with the following individual added to the list of Contributing Authors
@@ -4338,7 +4320,7 @@ certification mark of the Open Source Initiative.
Glenn Randers-Pehrson
glennrp at users.sourceforge.net
June 8, 2009
June 17, 2009
.\" end of man page