jdk/src/share/native/sun/awt/libpng/png.h
author bae
Mon, 19 Sep 2011 05:56:44 -0700
changeset 10576 db3409425573
parent 5506 202f599c92aa
child 21278 ef8a3a2a72f2
permissions -rw-r--r--
7088287: libpng need to be updated. Reviewed-by: jgodinez, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/* png.h - header file for PNG reference library
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * file and, per its terms, should not be removed:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    32
 * libpng version 1.5.4 - July 7, 2011
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    33
 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    37
 * This code is released under the libpng license (See LICENSE, below)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    38
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Authors and maintainers:
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    40
 *   libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    41
 *   libpng versions 0.89c, June 1996, through 0.96, May 1997: Andreas Dilger
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    42
 *   libpng versions 0.97, January 1998, through 1.5.4 - July 7, 2011: Glenn
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    43
 *   See also "Contributing Authors", below.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * Note about libpng version numbers:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    47
 *   Due to various miscommunications, unforeseen code incompatibilities
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    48
 *   and occasional factors outside the authors' control, version numbering
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    49
 *   on the library has not always been consistent and straightforward.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    50
 *   The following table summarizes matters since version 0.89c, which was
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
    51
 *   the first widely used release:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *    source                 png.h  png.h  shared-lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *    version                string   int  version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *    -------                ------ -----  ----------
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *    0.89c "1.0 beta 3"     0.89      89  1.0.89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *    0.90  "1.0 beta 4"     0.90      90  0.90  [should have been 2.0.90]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *    0.95  "1.0 beta 5"     0.95      95  0.95  [should have been 2.0.95]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *    0.96  "1.0 beta 6"     0.96      96  0.96  [should have been 2.0.96]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *    0.97b "1.00.97 beta 7" 1.00.97   97  1.0.1 [should have been 2.0.97]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *    0.97c                  0.97      97  2.0.97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *    0.98                   0.98      98  2.0.98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *    0.99                   0.99      98  2.0.99
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *    0.99a-m                0.99      99  2.0.99
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *    1.00                   1.00     100  2.1.0 [100 should be 10000]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *    1.0.0      (from here on, the   100  2.1.0 [100 should be 10000]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *    1.0.1       png.h string is   10001  2.1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *    1.0.1a-e    identical to the  10002  from here on, the shared library
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *    1.0.2       source version)   10002  is 2.V where V is the source code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *    1.0.2a-b                      10003  version, except as noted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *    1.0.3                         10003
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *    1.0.3a-d                      10004
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *    1.0.4                         10004
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *    1.0.4a-f                      10005
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *    1.0.5 (+ 2 patches)           10005
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *    1.0.5a-d                      10006
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *    1.0.5e-r                      10100 (not source compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *    1.0.5s-v                      10006 (not binary compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *    1.0.6 (+ 3 patches)           10006 (still binary incompatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *    1.0.6d-f                      10007 (still binary incompatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *    1.0.6g                        10007
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *    1.0.6h                        10007  10.6h (testing xy.z so-numbering)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *    1.0.6i                        10007  10.6i
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *    1.0.6j                        10007  2.1.0.6j (incompatible with 1.0.0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *    1.0.7beta11-14        DLLNUM  10007  2.1.0.7beta11-14 (binary compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *    1.0.7beta15-18           1    10007  2.1.0.7beta15-18 (binary compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *    1.0.7rc1-2               1    10007  2.1.0.7rc1-2 (binary compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *    1.0.7                    1    10007  (still compatible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *    1.0.8beta1-4             1    10008  2.1.0.8beta1-4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *    1.0.8rc1                 1    10008  2.1.0.8rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *    1.0.8                    1    10008  2.1.0.8
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *    1.0.9beta1-6             1    10009  2.1.0.9beta1-6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *    1.0.9rc1                 1    10009  2.1.0.9rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *    1.0.9beta7-10            1    10009  2.1.0.9beta7-10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *    1.0.9rc2                 1    10009  2.1.0.9rc2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *    1.0.9                    1    10009  2.1.0.9
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *    1.0.10beta1              1    10010  2.1.0.10beta1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *    1.0.10rc1                1    10010  2.1.0.10rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *    1.0.10                   1    10010  2.1.0.10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *    1.0.11beta1-3            1    10011  2.1.0.11beta1-3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *    1.0.11rc1                1    10011  2.1.0.11rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *    1.0.11                   1    10011  2.1.0.11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *    1.0.12beta1-2            2    10012  2.1.0.12beta1-2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *    1.0.12rc1                2    10012  2.1.0.12rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *    1.0.12                   2    10012  2.1.0.12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *    1.1.0a-f                 -    10100  2.1.1.0a-f (branch abandoned)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *    1.2.0beta1-2             2    10200  2.1.2.0beta1-2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *    1.2.0beta3-5             3    10200  3.1.2.0beta3-5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *    1.2.0rc1                 3    10200  3.1.2.0rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *    1.2.0                    3    10200  3.1.2.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *    1.2.1beta1-4             3    10201  3.1.2.1beta1-4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *    1.2.1rc1-2               3    10201  3.1.2.1rc1-2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *    1.2.1                    3    10201  3.1.2.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *    1.2.2beta1-6            12    10202  12.so.0.1.2.2beta1-6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *    1.0.13beta1             10    10013  10.so.0.1.0.13beta1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *    1.0.13rc1               10    10013  10.so.0.1.0.13rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *    1.2.2rc1                12    10202  12.so.0.1.2.2rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *    1.0.13                  10    10013  10.so.0.1.0.13
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *    1.2.2                   12    10202  12.so.0.1.2.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *    1.2.3rc1-6              12    10203  12.so.0.1.2.3rc1-6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *    1.2.3                   12    10203  12.so.0.1.2.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *    1.2.4beta1-3            13    10204  12.so.0.1.2.4beta1-3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 *    1.0.14rc1               13    10014  10.so.0.1.0.14rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *    1.2.4rc1                13    10204  12.so.0.1.2.4rc1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *    1.0.14                  10    10014  10.so.0.1.0.14
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *    1.2.4                   13    10204  12.so.0.1.2.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *    1.2.5beta1-2            13    10205  12.so.0.1.2.5beta1-2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *    1.0.15rc1-3             10    10015  10.so.0.1.0.15rc1-3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *    1.2.5rc1-3              13    10205  12.so.0.1.2.5rc1-3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *    1.0.15                  10    10015  10.so.0.1.0.15
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 *    1.2.5                   13    10205  12.so.0.1.2.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *    1.2.6beta1-4            13    10206  12.so.0.1.2.6beta1-4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *    1.0.16                  10    10016  10.so.0.1.0.16
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *    1.2.6                   13    10206  12.so.0.1.2.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *    1.2.7beta1-2            13    10207  12.so.0.1.2.7beta1-2
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   136
 *    1.0.17rc1               10    10017  12.so.0.1.0.17rc1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *    1.2.7rc1                13    10207  12.so.0.1.2.7rc1
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   138
 *    1.0.17                  10    10017  12.so.0.1.0.17
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *    1.2.7                   13    10207  12.so.0.1.2.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *    1.2.8beta1-5            13    10208  12.so.0.1.2.8beta1-5
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   141
 *    1.0.18rc1-5             10    10018  12.so.0.1.0.18rc1-5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 *    1.2.8rc1-5              13    10208  12.so.0.1.2.8rc1-5
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   143
 *    1.0.18                  10    10018  12.so.0.1.0.18
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 *    1.2.8                   13    10208  12.so.0.1.2.8
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 *    1.2.9beta1-3            13    10209  12.so.0.1.2.9beta1-3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 *    1.2.9beta4-11           13    10209  12.so.0.9[.0]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 *    1.2.9rc1                13    10209  12.so.0.9[.0]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 *    1.2.9                   13    10209  12.so.0.9[.0]
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   149
 *    1.2.10beta1-7           13    10210  12.so.0.10[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   150
 *    1.2.10rc1-2             13    10210  12.so.0.10[.0]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 *    1.2.10                  13    10210  12.so.0.10[.0]
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   152
 *    1.4.0beta1-5            14    10400  14.so.0.0[.0]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 *    1.2.11beta1-4           13    10211  12.so.0.11[.0]
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   154
 *    1.4.0beta7-8            14    10400  14.so.0.0[.0]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *    1.2.11                  13    10211  12.so.0.11[.0]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 *    1.2.12                  13    10212  12.so.0.12[.0]
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   157
 *    1.4.0beta9-14           14    10400  14.so.0.0[.0]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 *    1.2.13                  13    10213  12.so.0.13[.0]
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   159
 *    1.4.0beta15-36          14    10400  14.so.0.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   160
 *    1.4.0beta37-87          14    10400  14.so.14.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   161
 *    1.4.0rc01               14    10400  14.so.14.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   162
 *    1.4.0beta88-109         14    10400  14.so.14.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   163
 *    1.4.0rc02-08            14    10400  14.so.14.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   164
 *    1.4.0                   14    10400  14.so.14.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   165
 *    1.4.1beta01-03          14    10401  14.so.14.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   166
 *    1.4.1rc01               14    10401  14.so.14.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   167
 *    1.4.1beta04-12          14    10401  14.so.14.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   168
 *    1.4.1                   14    10401  14.so.14.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   169
 *    1.4.2                   14    10402  14.so.14.2[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   170
 *    1.4.3                   14    10403  14.so.14.3[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   171
 *    1.4.4                   14    10404  14.so.14.4[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   172
 *    1.5.0beta01-58          15    10500  15.so.15.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   173
 *    1.5.0rc01-07            15    10500  15.so.15.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   174
 *    1.5.0                   15    10500  15.so.15.0[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   175
 *    1.5.1beta01-11          15    10501  15.so.15.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   176
 *    1.5.1rc01-02            15    10501  15.so.15.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   177
 *    1.5.1                   15    10501  15.so.15.1[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   178
 *    1.5.2beta01-03          15    10502  15.so.15.2[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   179
 *    1.5.2rc01-03            15    10502  15.so.15.2[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   180
 *    1.5.2                   15    10502  15.so.15.2[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   181
 *    1.5.3beta01-10          15    10503  15.so.15.3[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   182
 *    1.5.3rc01-02            15    10503  15.so.15.3[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   183
 *    1.5.3beta11             15    10503  15.so.15.3[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   184
 *    1.5.3 [omitted]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   185
 *    1.5.4beta01-08          15    10504  15.so.15.4[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   186
 *    1.5.4rc01               15    10504  15.so.15.4[.0]
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   187
 *    1.5.4                   15    10504  15.so.15.4[.0]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   189
 *   Henceforth the source version will match the shared-library major
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   190
 *   and minor numbers; the shared-library major version number will be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   191
 *   used for changes in backward compatibility, as it is intended.  The
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   192
 *   PNG_LIBPNG_VER macro, which is not used within libpng but is available
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   193
 *   for applications, is an unsigned integer of the form xyyzz corresponding
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   194
 *   to the source version x.y.z (leading zeros in y and z).  Beta versions
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   195
 *   were given the previous public release number plus a letter, until
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   196
 *   version 1.0.6j; from then on they were given the upcoming public
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   197
 *   release number plus "betaNN" or "rcN".
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   199
 *   Binary incompatibility exists only when applications make direct access
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   200
 *   to the info_ptr or png_ptr members through png.h, and the compiled
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   201
 *   application is loaded with a different version of the library.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   203
 *   DLLNUM will change each time there are forward or backward changes
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   204
 *   in binary compatibility (e.g., when a new feature is added).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   206
 * See libpng-manual.txt or libpng.3 for more information.  The PNG
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   207
 * specification is available as a W3C Recommendation and as an ISO
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   208
 * Specification, <http://www.w3.org/TR/2003/REC-PNG-20031110/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
 * COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
 * If you modify libpng you may insert additional notices immediately following
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
 * this sentence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   217
 * This code is released under the libpng license.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   218
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   219
 * libpng versions 1.2.6, August 15, 2004, through 1.5.4, July 7, 2011, are
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   220
 * Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
 * distributed according to the same disclaimer and license as libpng-1.2.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
 * with the following individual added to the list of Contributing Authors:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
 *    Cosmin Truta
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
 * libpng versions 1.0.7, July 1, 2000, through 1.2.5, October 3, 2002, are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
 * Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
 * distributed according to the same disclaimer and license as libpng-1.0.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
 * with the following individuals added to the list of Contributing Authors:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
 *    Simon-Pierre Cadieux
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
 *    Eric S. Raymond
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
 *    Gilles Vollant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
 * and with the following additions to the disclaimer:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
 *    There is no warranty against interference with your enjoyment of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
 *    library or against infringement.  There is no warranty that our
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
 *    efforts or the library will fulfill any of your particular purposes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
 *    or needs.  This library is provided with all faults, and the entire
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
 *    risk of satisfactory quality, performance, accuracy, and effort is with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
 *    the user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
 * libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
 * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson, and are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
 * distributed according to the same disclaimer and license as libpng-0.96,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
 * with the following individuals added to the list of Contributing Authors:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
 *    Tom Lane
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
 *    Glenn Randers-Pehrson
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
 *    Willem van Schaik
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
 * libpng versions 0.89, June 1996, through 0.96, May 1997, are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
 * Copyright (c) 1996, 1997 Andreas Dilger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
 * Distributed according to the same disclaimer and license as libpng-0.88,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
 * with the following individuals added to the list of Contributing Authors:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
 *    John Bowler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
 *    Kevin Bracey
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 *    Sam Bushell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 *    Magnus Holmgren
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
 *    Greg Roelofs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
 *    Tom Tanner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
 * libpng versions 0.5, May 1995, through 0.88, January 1996, are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
 * For the purposes of this copyright and license, "Contributing Authors"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
 * is defined as the following set of individuals:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
 *    Andreas Dilger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
 *    Dave Martindale
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
 *    Guy Eric Schalnat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
 *    Paul Schmidt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
 *    Tim Wegner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
 * The PNG Reference Library is supplied "AS IS".  The Contributing Authors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
 * and Group 42, Inc. disclaim all warranties, expressed or implied,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
 * including, without limitation, the warranties of merchantability and of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
 * fitness for any purpose.  The Contributing Authors and Group 42, Inc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
 * assume no liability for direct, indirect, incidental, special, exemplary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
 * or consequential damages, which may result from the use of the PNG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
 * Reference Library, even if advised of the possibility of such damage.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
 * Permission is hereby granted to use, copy, modify, and distribute this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
 * source code, or portions hereof, for any purpose, without fee, subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
 * to the following restrictions:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   289
 *   1. The origin of this source code must not be misrepresented.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   291
 *   2. Altered versions must be plainly marked as such and must not
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   292
 *      be misrepresented as being the original source.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   294
 *   3. This Copyright notice may not be removed or altered from
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   295
 *      any source or altered source distribution.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
 * The Contributing Authors and Group 42, Inc. specifically permit, without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
 * fee, and encourage the use of this source code as a component to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
 * supporting the PNG file format in commercial products.  If you use this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
 * source code in a product, acknowledgment is not required but would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
 * appreciated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
 * A "png_get_copyright" function is available, for convenient use in "about"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
 * boxes and the like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   308
 *     printf("%s", png_get_copyright(NULL));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
 * Also, the PNG logo (in PNG format, of course) is supplied in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
 * files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
 * Libpng is OSI Certified Open Source Software.  OSI Certified is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
 * certification mark of the Open Source Initiative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
 * The contributing authors would like to thank all those who helped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
 * with testing, bug fixes, and patience.  This wouldn't have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
 * possible without all of you.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
 * Thanks to Frank J. T. Wojcik for helping with the documentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
 * Y2K compliance in libpng:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
 * =========================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   331
 *    July 7, 2011
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
 *    Since the PNG Development group is an ad-hoc body, we can't make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
 *    an official declaration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
 *    This is your unofficial assurance that libpng from version 0.71 and
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   337
 *    upward through 1.5.4 are Y2K compliant.  It is my belief that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   338
 *    earlier versions were also Y2K compliant.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   340
 *    Libpng only has two year fields.  One is a 2-byte unsigned integer
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   341
 *    that will hold years up to 65535.  The other holds the date in text
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
 *    format, and will hold years up to 9999.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
 *    The integer is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
 *        "png_uint_16 year" in png_time_struct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
 *
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   347
 *    The string is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   348
 *        "png_char time_buffer" in png_struct
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
 *    There are seven time-related functions:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
 *        png.c: png_convert_to_rfc_1123() in png.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
 *          (formerly png_convert_to_rfc_1152() in error)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
 *        png_convert_from_struct_tm() in pngwrite.c, called in pngwrite.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
 *        png_convert_from_time_t() in pngwrite.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
 *        png_get_tIME() in pngget.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
 *        png_handle_tIME() in pngrutil.c, called in pngread.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
 *        png_set_tIME() in pngset.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
 *        png_write_tIME() in pngwutil.c, called in pngwrite.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
 *    All handle dates properly in a Y2K environment.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
 *    png_convert_from_time_t() function calls gmtime() to convert from system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
 *    clock time, which returns (year - 1900), which we properly convert to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
 *    the full 4-digit year.  There is a possibility that applications using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
 *    libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
 *    function, or that they are incorrectly passing only a 2-digit year
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
 *    instead of "year - 1900" into the png_convert_from_struct_tm() function,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
 *    but this is not under our control.  The libpng documentation has always
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
 *    stated that it works with 4-digit years, and the APIs have been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
 *    documented as such.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
 *    The tIME chunk itself is also Y2K compliant.  It uses a 2-byte unsigned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
 *    integer to hold the year, and can hold years as large as 65535.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
 *    zlib, upon which libpng depends, is also Y2K compliant.  It contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
 *    no date-related code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
 *       Glenn Randers-Pehrson
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
 *       libpng maintainer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
 *       PNG Development Group
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
#ifndef PNG_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
#define PNG_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   385
/* This is not the place to learn how to use libpng. The file libpng-manual.txt
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
 * describes how to use libpng, and the file example.c summarizes it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
 * with some code on which to build.  This file is useful for looking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
 * at the actual function definitions and structure components.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
/* Version information for png.h - this should match the version in png.c */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   392
#define PNG_LIBPNG_VER_STRING "1.5.4"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
#define PNG_HEADER_VERSION_STRING \
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   394
     " libpng version 1.5.4 - July 7, 2011\n"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   396
#define PNG_LIBPNG_VER_SONUM   15
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   397
#define PNG_LIBPNG_VER_DLLNUM  15
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
/* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
#define PNG_LIBPNG_VER_MAJOR   1
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   401
#define PNG_LIBPNG_VER_MINOR   5
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   402
#define PNG_LIBPNG_VER_RELEASE 4
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
/* This should match the numeric part of the final component of
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   404
 * PNG_LIBPNG_VER_STRING, omitting any leading zero:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   405
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
#define PNG_LIBPNG_VER_BUILD  0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
/* Release Status */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
#define PNG_LIBPNG_BUILD_ALPHA    1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
#define PNG_LIBPNG_BUILD_BETA     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
#define PNG_LIBPNG_BUILD_RC       3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
#define PNG_LIBPNG_BUILD_STABLE   4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
#define PNG_LIBPNG_BUILD_RELEASE_STATUS_MASK 7
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
/* Release-Specific Flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
#define PNG_LIBPNG_BUILD_PATCH    8 /* Can be OR'ed with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                                       PNG_LIBPNG_BUILD_STABLE only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
#define PNG_LIBPNG_BUILD_PRIVATE 16 /* Cannot be OR'ed with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                                       PNG_LIBPNG_BUILD_SPECIAL */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
#define PNG_LIBPNG_BUILD_SPECIAL 32 /* Cannot be OR'ed with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                                       PNG_LIBPNG_BUILD_PRIVATE */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   424
#define PNG_LIBPNG_BUILD_BASE_TYPE PNG_LIBPNG_BUILD_BETA
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
/* Careful here.  At one time, Guy wanted to use 082, but that would be octal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
 * We must not include leading zeros.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
 * Versions 0.7 through 1.0.0 were in the range 0 to 100 here (only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
 * version 1.0.0 was mis-numbered 100 instead of 10000).  From
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   430
 * version 1.0.1 it's    xxyyzz, where x=major, y=minor, z=release
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   431
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   432
#define PNG_LIBPNG_VER 10504 /* 1.5.4 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   433
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   434
/* Library configuration: these options cannot be changed after
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   435
 * the library has been built.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   436
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   437
#ifndef PNGLCONF_H
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   438
    /* If pnglibconf.h is missing, you can
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   439
     * copy scripts/pnglibconf.h.prebuilt to pnglibconf.h
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   440
     */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   441
#   include "pnglibconf.h"
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   442
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
#ifndef PNG_VERSION_INFO_ONLY
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   445
#  ifndef PNG_BUILDING_SYMBOL_TABLE
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   446
  /*
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   447
   *   Standard header files (not needed for the version info or while
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   448
   *   building symbol table -- see scripts/pnglibconf.dfa)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   449
   */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   450
#    ifdef PNG_SETJMP_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   451
#      include <setjmp.h>
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   452
#    endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   453
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   454
    /* Need the time information for converting tIME chunks, it
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   455
     * defines struct tm:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   456
     */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   457
#    ifdef PNG_CONVERT_tIME_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   458
       /* "time.h" functions are not supported on all operating systems */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   459
#      include <time.h>
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   460
#    endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   461
#  endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   462
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   463
/* Machine specific configuration. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   464
#  include "pngconf.h"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
/*
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   468
 * Added at libpng-1.2.8
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   469
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   470
 * Ref MSDN: Private as priority over Special
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
 * VS_FF_PRIVATEBUILD File *was not* built using standard release
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
 * procedures. If this value is given, the StringFileInfo block must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
 * contain a PrivateBuild string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
 * VS_FF_SPECIALBUILD File *was* built by the original company using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
 * standard release procedures but is a variation of the standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
 * file of the same version number. If this value is given, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
 * StringFileInfo block must contain a SpecialBuild string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   481
#ifdef PNG_USER_PRIVATEBUILD /* From pnglibconf.h */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
#  define PNG_LIBPNG_BUILD_TYPE \
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   483
       (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_PRIVATE)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
#else
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   485
#  ifdef PNG_LIBPNG_SPECIALBUILD
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
#    define PNG_LIBPNG_BUILD_TYPE \
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   487
         (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_SPECIAL)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
#  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
#    define PNG_LIBPNG_BUILD_TYPE (PNG_LIBPNG_BUILD_BASE_TYPE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
#  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
#ifndef PNG_VERSION_INFO_ONLY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
/* Inhibit C++ name-mangling for libpng functions but not for system calls. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
extern "C" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
#endif /* __cplusplus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
/* Version information for C files, stored in png.c.  This had better match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
 * the version above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
#define png_libpng_ver png_get_header_ver(NULL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   505
/* This file is arranged in several sections:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   506
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   507
 * 1. Any configuration options that can be specified by for the application
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   508
 *    code when it is built.  (Build time configuration is in pnglibconf.h)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   509
 * 2. Type definitions (base types are defined in pngconf.h), structure
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   510
 *    definitions.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   511
 * 3. Exported library functions.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   512
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   513
 * The library source code has additional files (principally pngpriv.h) that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   514
 * allow configuration of the library.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   515
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   516
/* Section 1: run time configuration
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   517
 * See pnglibconf.h for build time configuration
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   518
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   519
 * Run time configuration allows the application to choose between
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   520
 * implementations of certain arithmetic APIs.  The default is set
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   521
 * at build time and recorded in pnglibconf.h, but it is safe to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   522
 * override these (and only these) settings.  Note that this won't
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   523
 * change what the library does, only application code, and the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   524
 * settings can (and probably should) be made on a per-file basis
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   525
 * by setting the #defines before including png.h
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   526
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   527
 * Use macros to read integers from PNG data or use the exported
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   528
 * functions?
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   529
 *   PNG_USE_READ_MACROS: use the macros (see below)  Note that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   530
 *     the macros evaluate their argument multiple times.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   531
 *   PNG_NO_USE_READ_MACROS: call the relevant library function.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   532
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   533
 * Use the alternative algorithm for compositing alpha samples that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   534
 * does not use division?
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   535
 *   PNG_READ_COMPOSITE_NODIV_SUPPORTED: use the 'no division'
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   536
 *      algorithm.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   537
 *   PNG_NO_READ_COMPOSITE_NODIV: use the 'division' algorithm.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   538
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   539
 * How to handle benign errors if PNG_ALLOW_BENIGN_ERRORS is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   540
 * false?
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   541
 *   PNG_ALLOW_BENIGN_ERRORS: map calls to the benign error
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   542
 *      APIs to png_warning.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   543
 * Otherwise the calls are mapped to png_error.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   544
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   546
/* Section 2: type definitions, including structures and compile time
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   547
 * constants.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   548
 * See pngconf.h for base types that vary by machine/system
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   549
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   550
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   551
/* This triggers a compiler error in png.c, if png.c and png.h
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   552
 * do not agree upon the version number.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   553
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   554
typedef char* png_libpng_version_1_5_4;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
/* Three color definitions.  The order of the red, green, and blue, (and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
 * exact size) is not important, although the size of the fields need to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
 * be png_byte or png_uint_16 (as defined below).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
typedef struct png_color_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
   png_byte red;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
   png_byte green;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
   png_byte blue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
} png_color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
typedef png_color FAR * png_colorp;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   567
typedef PNG_CONST png_color FAR * png_const_colorp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
typedef png_color FAR * FAR * png_colorpp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
typedef struct png_color_16_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
   png_byte index;    /* used for palette files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
   png_uint_16 red;   /* for use in red green blue files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
   png_uint_16 green;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
   png_uint_16 blue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
   png_uint_16 gray;  /* for use in grayscale files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
} png_color_16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
typedef png_color_16 FAR * png_color_16p;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   579
typedef PNG_CONST png_color_16 FAR * png_const_color_16p;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
typedef png_color_16 FAR * FAR * png_color_16pp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
typedef struct png_color_8_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
   png_byte red;   /* for use in red green blue files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
   png_byte green;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
   png_byte blue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
   png_byte gray;  /* for use in grayscale files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
   png_byte alpha; /* for alpha channel files */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
} png_color_8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
typedef png_color_8 FAR * png_color_8p;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   591
typedef PNG_CONST png_color_8 FAR * png_const_color_8p;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
typedef png_color_8 FAR * FAR * png_color_8pp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
 * The following two structures are used for the in-core representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
 * of sPLT chunks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
typedef struct png_sPLT_entry_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
   png_uint_16 red;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
   png_uint_16 green;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
   png_uint_16 blue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
   png_uint_16 alpha;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
   png_uint_16 frequency;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
} png_sPLT_entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
typedef png_sPLT_entry FAR * png_sPLT_entryp;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   607
typedef PNG_CONST png_sPLT_entry FAR * png_const_sPLT_entryp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
typedef png_sPLT_entry FAR * FAR * png_sPLT_entrypp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
/*  When the depth of the sPLT palette is 8 bits, the color and alpha samples
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
 *  occupy the LSB of their respective members, and the MSB of each member
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
 *  is zero-filled.  The frequency member always occupies the full 16 bits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
typedef struct png_sPLT_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
   png_charp name;           /* palette name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
   png_byte depth;           /* depth of palette samples */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
   png_sPLT_entryp entries;  /* palette entries */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
   png_int_32 nentries;      /* number of palette entries */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
} png_sPLT_t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
typedef png_sPLT_t FAR * png_sPLT_tp;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   623
typedef PNG_CONST png_sPLT_t FAR * png_const_sPLT_tp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
typedef png_sPLT_t FAR * FAR * png_sPLT_tpp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
#ifdef PNG_TEXT_SUPPORTED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
 * and whether that contents is compressed or not.  The "key" field
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
 * points to a regular zero-terminated C string.  The "text", "lang", and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
 * "lang_key" fields can be regular C strings, empty strings, or NULL pointers.
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   631
 * However, the structure returned by png_get_text() will always contain
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
 * regular zero-terminated C strings (possibly empty), never NULL pointers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
 * so they can be safely used in printf() and other string-handling functions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
typedef struct png_text_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
   int  compression;       /* compression value:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                             -1: tEXt, none
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                              0: zTXt, deflate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                              1: iTXt, none
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                              2: iTXt, deflate  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
   png_charp key;          /* keyword, 1-79 character description of "text" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
   png_charp text;         /* comment, may be an empty string (ie "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                              or a NULL pointer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
   png_size_t text_length; /* length of the text string */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
   png_size_t itxt_length; /* length of the itxt string */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
   png_charp lang;         /* language code, 0-79 characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                              or a NULL pointer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
   png_charp lang_key;     /* keyword translated UTF-8 string, 0 or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                              chars or a NULL pointer */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
} png_text;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
typedef png_text FAR * png_textp;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   653
typedef PNG_CONST png_text FAR * png_const_textp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
typedef png_text FAR * FAR * png_textpp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
/* Supported compression types for text in PNG files (tEXt, and zTXt).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
 * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
#define PNG_TEXT_COMPRESSION_NONE_WR -3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
#define PNG_TEXT_COMPRESSION_zTXt_WR -2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
#define PNG_TEXT_COMPRESSION_NONE    -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
#define PNG_TEXT_COMPRESSION_zTXt     0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
#define PNG_ITXT_COMPRESSION_NONE     1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
#define PNG_ITXT_COMPRESSION_zTXt     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
#define PNG_TEXT_COMPRESSION_LAST     3  /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
/* png_time is a way to hold the time in an machine independent way.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
 * Two conversions are provided, both from time_t and struct tm.  There
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
 * is no portable way to convert to either of these structures, as far
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
 * as I know.  If you know of a portable way, send it to me.  As a side
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
 * note - PNG has always been Year 2000 compliant!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
typedef struct png_time_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
   png_uint_16 year; /* full year, as in, 1995 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
   png_byte month;   /* month of year, 1 - 12 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
   png_byte day;     /* day of month, 1 - 31 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
   png_byte hour;    /* hour of day, 0 - 23 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
   png_byte minute;  /* minute of hour, 0 - 59 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
   png_byte second;  /* second of minute, 0 - 60 (for leap seconds) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
} png_time;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
typedef png_time FAR * png_timep;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   683
typedef PNG_CONST png_time FAR * png_const_timep;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
typedef png_time FAR * FAR * png_timepp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   686
#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED) || \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   687
    defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
/* png_unknown_chunk is a structure to hold queued chunks for which there is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
 * no specific support.  The idea is that we can use this to queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
 * up private chunks for output even though the library doesn't actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
 * know about their semantics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
typedef struct png_unknown_chunk_t
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    png_byte name[5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    png_byte *data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    png_size_t size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    /* libpng-using applications should NOT directly modify this byte. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    png_byte location; /* mode of operation at read time */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
}
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   702
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   703
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
png_unknown_chunk;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
typedef png_unknown_chunk FAR * png_unknown_chunkp;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   706
typedef PNG_CONST png_unknown_chunk FAR * png_const_unknown_chunkp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
typedef png_unknown_chunk FAR * FAR * png_unknown_chunkpp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   710
/* Values for the unknown chunk location byte */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   712
#define PNG_HAVE_IHDR  0x01
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   713
#define PNG_HAVE_PLTE  0x02
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   714
#define PNG_AFTER_IDAT 0x08
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   716
/* The complete definition of png_info has, as of libpng-1.5.0,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   717
 * been moved into a separate header file that is not accessible to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   718
 * applications.  Read libpng-manual.txt or libpng.3 for more info.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   719
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   720
typedef struct png_info_def png_info;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
typedef png_info FAR * png_infop;
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   722
typedef PNG_CONST png_info FAR * png_const_infop;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
typedef png_info FAR * FAR * png_infopp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
/* Maximum positive integer used in PNG is (2^31)-1 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
#define PNG_UINT_32_MAX ((png_uint_32)(-1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
#define PNG_SIZE_MAX ((png_size_t)(-1))
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   729
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   730
/* These are constants for fixed point values encoded in the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   731
 * PNG specification manner (x100000)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   732
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   733
#define PNG_FP_1    100000
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   734
#define PNG_FP_HALF  50000
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   735
#define PNG_FP_MAX  ((png_fixed_point)0x7fffffffL)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   736
#define PNG_FP_MIN  (-PNG_FP_MAX)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
/* These describe the color_type field in png_info. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
/* color type masks */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
#define PNG_COLOR_MASK_PALETTE    1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
#define PNG_COLOR_MASK_COLOR      2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
#define PNG_COLOR_MASK_ALPHA      4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
/* color types.  Note that not all combinations are legal */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
#define PNG_COLOR_TYPE_GRAY 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
#define PNG_COLOR_TYPE_PALETTE  (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
#define PNG_COLOR_TYPE_RGB        (PNG_COLOR_MASK_COLOR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
#define PNG_COLOR_TYPE_RGB_ALPHA  (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
/* aliases */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
#define PNG_COLOR_TYPE_RGBA  PNG_COLOR_TYPE_RGB_ALPHA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
#define PNG_COLOR_TYPE_GA  PNG_COLOR_TYPE_GRAY_ALPHA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
/* This is for compression type. PNG 1.0-1.2 only define the single type. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
#define PNG_COMPRESSION_TYPE_BASE 0 /* Deflate method 8, 32K window */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
/* This is for filter type. PNG 1.0-1.2 only define the single type. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
#define PNG_FILTER_TYPE_BASE      0 /* Single row per-byte filtering */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
#define PNG_INTRAPIXEL_DIFFERENCING 64 /* Used only in MNG datastreams */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
#define PNG_FILTER_TYPE_DEFAULT   PNG_FILTER_TYPE_BASE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
/* These are for the interlacing type.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
#define PNG_INTERLACE_NONE        0 /* Non-interlaced image */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
#define PNG_INTERLACE_ADAM7       1 /* Adam7 interlacing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
#define PNG_INTERLACE_LAST        2 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
/* These are for the oFFs chunk.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
#define PNG_OFFSET_PIXEL          0 /* Offset in pixels */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
#define PNG_OFFSET_MICROMETER     1 /* Offset in micrometers (1/10^6 meter) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
#define PNG_OFFSET_LAST           2 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
/* These are for the pCAL chunk.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
#define PNG_EQUATION_LINEAR       0 /* Linear transformation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
#define PNG_EQUATION_BASE_E       1 /* Exponential base e transform */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
#define PNG_EQUATION_ARBITRARY    2 /* Arbitrary base exponential transform */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
#define PNG_EQUATION_HYPERBOLIC   3 /* Hyperbolic sine transformation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
#define PNG_EQUATION_LAST         4 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
/* These are for the sCAL chunk.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
#define PNG_SCALE_UNKNOWN         0 /* unknown unit (image scale) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
#define PNG_SCALE_METER           1 /* meters per pixel */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
#define PNG_SCALE_RADIAN          2 /* radians per pixel */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
#define PNG_SCALE_LAST            3 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
/* These are for the pHYs chunk.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
#define PNG_RESOLUTION_UNKNOWN    0 /* pixels/unknown unit (aspect ratio) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
#define PNG_RESOLUTION_METER      1 /* pixels/meter */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
#define PNG_RESOLUTION_LAST       2 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
/* These are for the sRGB chunk.  These values should NOT be changed. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
#define PNG_sRGB_INTENT_PERCEPTUAL 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
#define PNG_sRGB_INTENT_RELATIVE   1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
#define PNG_sRGB_INTENT_SATURATION 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
#define PNG_sRGB_INTENT_ABSOLUTE   3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
#define PNG_sRGB_INTENT_LAST       4 /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
/* This is for text chunks */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
#define PNG_KEYWORD_MAX_LENGTH     79
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
/* Maximum number of entries in PLTE/sPLT/tRNS arrays */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
#define PNG_MAX_PALETTE_LENGTH    256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
/* These determine if an ancillary chunk's data has been successfully read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
 * from the PNG header, or if the application has filled in the corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
 * data in the info_struct to be written into the output file.  The values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
 * of the PNG_INFO_<chunk> defines should NOT be changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
#define PNG_INFO_gAMA 0x0001
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
#define PNG_INFO_sBIT 0x0002
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
#define PNG_INFO_cHRM 0x0004
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
#define PNG_INFO_PLTE 0x0008
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
#define PNG_INFO_tRNS 0x0010
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
#define PNG_INFO_bKGD 0x0020
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
#define PNG_INFO_hIST 0x0040
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
#define PNG_INFO_pHYs 0x0080
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
#define PNG_INFO_oFFs 0x0100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
#define PNG_INFO_tIME 0x0200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
#define PNG_INFO_pCAL 0x0400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
#define PNG_INFO_sRGB 0x0800   /* GR-P, 0.96a */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
#define PNG_INFO_iCCP 0x1000   /* ESR, 1.0.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
#define PNG_INFO_sPLT 0x2000   /* ESR, 1.0.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
#define PNG_INFO_sCAL 0x4000   /* ESR, 1.0.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
#define PNG_INFO_IDAT 0x8000L  /* ESR, 1.0.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
/* This is used for the transformation routines, as some of them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
 * change these values for the row.  It also should enable using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
 * the routines for other purposes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
typedef struct png_row_info_struct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
{
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   832
   png_uint_32 width;    /* width of row */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   833
   png_size_t rowbytes;  /* number of bytes in row */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   834
   png_byte color_type;  /* color type of row */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   835
   png_byte bit_depth;   /* bit depth of row */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   836
   png_byte channels;    /* number of channels (1, 2, 3, or 4) */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
   png_byte pixel_depth; /* bits per pixel (depth * channels) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
} png_row_info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
typedef png_row_info FAR * png_row_infop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
typedef png_row_info FAR * FAR * png_row_infopp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   843
/* The complete definition of png_struct has, as of libpng-1.5.0,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   844
 * been moved into a separate header file that is not accessible to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   845
 * applications.  Read libpng-manual.txt or libpng.3 for more info.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   846
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   847
typedef struct png_struct_def png_struct;
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   848
typedef PNG_CONST png_struct FAR * png_const_structp;
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   849
typedef png_struct FAR * png_structp;
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   850
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
/* These are the function types for the I/O functions and for the functions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
 * that allow the user to override the default I/O functions with his or her
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
 * own.  The png_error_ptr type should match that of user-supplied warning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
 * and error functions, while the png_rw_ptr type should match that of the
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   855
 * user read/write data functions.  Note that the 'write' function must not
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   856
 * modify the buffer it is passed. The 'read' function, on the other hand, is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   857
 * expected to return the read data in the buffer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   859
typedef PNG_CALLBACK(void, *png_error_ptr, (png_structp, png_const_charp));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   860
typedef PNG_CALLBACK(void, *png_rw_ptr, (png_structp, png_bytep, png_size_t));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   861
typedef PNG_CALLBACK(void, *png_flush_ptr, (png_structp));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   862
typedef PNG_CALLBACK(void, *png_read_status_ptr, (png_structp, png_uint_32,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   863
    int));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   864
typedef PNG_CALLBACK(void, *png_write_status_ptr, (png_structp, png_uint_32,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   865
    int));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   868
typedef PNG_CALLBACK(void, *png_progressive_info_ptr, (png_structp, png_infop));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   869
typedef PNG_CALLBACK(void, *png_progressive_end_ptr, (png_structp, png_infop));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   870
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   871
/* The following callback receives png_uint_32 row_number, int pass for the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   872
 * png_bytep data of the row.  When transforming an interlaced image the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   873
 * row number is the row number within the sub-image of the interlace pass, so
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   874
 * the value will increase to the height of the sub-image (not the full image)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   875
 * then reset to 0 for the next pass.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   876
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   877
 * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   878
 * find the output pixel (x,y) given an interlaced sub-image pixel
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   879
 * (row,col,pass).  (See below for these macros.)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   880
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   881
typedef PNG_CALLBACK(void, *png_progressive_row_ptr, (png_structp, png_bytep,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   882
    png_uint_32, int));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   886
    defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   887
typedef PNG_CALLBACK(void, *png_user_transform_ptr, (png_structp, png_row_infop,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   888
    png_bytep));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   889
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   890
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   891
#ifdef PNG_USER_CHUNKS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   892
typedef PNG_CALLBACK(int, *png_user_chunk_ptr, (png_structp,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   893
    png_unknown_chunkp));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   894
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   895
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   896
typedef PNG_CALLBACK(void, *png_unknown_chunk_ptr, (png_structp));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   899
#ifdef PNG_SETJMP_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   900
/* This must match the function definition in <setjmp.h>, and the application
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   901
 * must include this before png.h to obtain the definition of jmp_buf.  The
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   902
 * function is required to be PNG_NORETURN, but this is not checked.  If the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   903
 * function does return the application will crash via an abort() or similar
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   904
 * system level call.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   905
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   906
 * If you get a warning here while building the library you may need to make
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   907
 * changes to ensure that pnglibconf.h records the calling convention used by
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   908
 * your compiler.  This may be very difficult - try using a different compiler
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   909
 * to build the library!
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   910
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   911
PNG_FUNCTION(void, (PNGCAPI *png_longjmp_ptr), PNGARG((jmp_buf, int)), typedef);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
/* Transform masks for the high-level interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
#define PNG_TRANSFORM_IDENTITY       0x0000    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
#define PNG_TRANSFORM_STRIP_16       0x0001    /* read only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
#define PNG_TRANSFORM_STRIP_ALPHA    0x0002    /* read only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
#define PNG_TRANSFORM_PACKING        0x0004    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
#define PNG_TRANSFORM_PACKSWAP       0x0008    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
#define PNG_TRANSFORM_EXPAND         0x0010    /* read only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
#define PNG_TRANSFORM_INVERT_MONO    0x0020    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
#define PNG_TRANSFORM_SHIFT          0x0040    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
#define PNG_TRANSFORM_BGR            0x0080    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
#define PNG_TRANSFORM_SWAP_ALPHA     0x0100    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
#define PNG_TRANSFORM_SWAP_ENDIAN    0x0200    /* read and write */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
#define PNG_TRANSFORM_INVERT_ALPHA   0x0400    /* read and write */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   927
#define PNG_TRANSFORM_STRIP_FILLER   0x0800    /* write only */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   928
/* Added to libpng-1.2.34 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   929
#define PNG_TRANSFORM_STRIP_FILLER_BEFORE PNG_TRANSFORM_STRIP_FILLER
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   930
#define PNG_TRANSFORM_STRIP_FILLER_AFTER 0x1000 /* write only */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   931
/* Added to libpng-1.4.0 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   932
#define PNG_TRANSFORM_GRAY_TO_RGB   0x2000      /* read only */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   933
/* Added to libpng-1.5.4 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   934
#define PNG_TRANSFORM_EXPAND_16     0x4000      /* read only */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   935
#define PNG_TRANSFORM_SCALE_16      0x8000      /* read only */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
/* Flags for MNG supported features */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
#define PNG_FLAG_MNG_EMPTY_PLTE     0x01
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
#define PNG_FLAG_MNG_FILTER_64      0x04
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
#define PNG_ALL_MNG_FEATURES        0x05
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   942
/* NOTE: prior to 1.5 these functions had no 'API' style declaration,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   943
 * this allowed the zlib default functions to be used on Windows
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   944
 * platforms.  In 1.5 the zlib default malloc (which just calls malloc and
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   945
 * ignores the first argument) should be completely compatible with the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   946
 * following.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   948
typedef PNG_CALLBACK(png_voidp, *png_malloc_ptr, (png_structp,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   949
    png_alloc_size_t));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   950
typedef PNG_CALLBACK(void, *png_free_ptr, (png_structp, png_voidp));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
typedef png_struct FAR * FAR * png_structpp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   954
/* Section 3: exported functions
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   955
 * Here are the function definitions most commonly used.  This is not
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   956
 * the place to find out how to use libpng.  See libpng-manual.txt for the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
 * full explanation, see example.c for the summary.  This just provides
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
 * a simple one line description of the use of each function.
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   959
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   960
 * The PNG_EXPORT() and PNG_EXPORTA() macros used below are defined in
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   961
 * pngconf.h and in the *.dfn files in the scripts directory.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   962
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   963
 *   PNG_EXPORT(ordinal, type, name, (args));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   964
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   965
 *       ordinal:    ordinal that is used while building
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   966
 *                   *.def files. The ordinal value is only
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   967
 *                   relevant when preprocessing png.h with
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   968
 *                   the *.dfn files for building symbol table
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   969
 *                   entries, and are removed by pngconf.h.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   970
 *       type:       return type of the function
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   971
 *       name:       function name
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   972
 *       args:       function arguments, with types
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   973
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   974
 * When we wish to append attributes to a function prototype we use
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   975
 * the PNG_EXPORTA() macro instead.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   976
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   977
 *   PNG_EXPORTA(ordinal, type, name, (args), attributes);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   978
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   979
 *       ordinal, type, name, and args: same as in PNG_EXPORT().
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   980
 *       attributes: function attributes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
/* Returns the version number of the library */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   984
PNG_EXPORT(1, png_uint_32, png_access_version_number, (void));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
/* Tell lib we have already handled the first <num_bytes> magic bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
 * Handling more than 8 bytes from the beginning of the file is an error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   989
PNG_EXPORT(2, void, png_set_sig_bytes, (png_structp png_ptr, int num_bytes));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
/* Check sig[start] through sig[start + num_to_check - 1] to see if it's a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
 * PNG file.  Returns zero if the supplied bytes match the 8-byte PNG
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
 * signature, and non-zero otherwise.  Having num_to_check == 0 or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
 * start > 7 will always fail (ie return non-zero).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   996
PNG_EXPORT(3, int, png_sig_cmp, (png_const_bytep sig, png_size_t start,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
   997
    png_size_t num_to_check));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
/* Simple signature checking function.  This is the same as calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
 * png_check_sig(sig, n) := !png_sig_cmp(sig, 0, n).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1002
#define png_check_sig(sig, n) !png_sig_cmp((sig), 0, (n))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
/* Allocate and initialize png_ptr struct for reading, and any other memory. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1005
PNG_EXPORTA(4, png_structp, png_create_read_struct,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1006
    (png_const_charp user_png_ver, png_voidp error_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1007
    png_error_ptr error_fn, png_error_ptr warn_fn),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1008
    PNG_ALLOCATED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
/* Allocate and initialize png_ptr struct for writing, and any other memory */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1011
PNG_EXPORTA(5, png_structp, png_create_write_struct,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1012
    (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1013
    png_error_ptr warn_fn),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1014
    PNG_ALLOCATED);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1015
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1016
PNG_EXPORT(6, png_size_t, png_get_compression_buffer_size,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1017
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1018
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1019
PNG_EXPORT(7, void, png_set_compression_buffer_size, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1020
    png_size_t size));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1022
/* Moved from pngconf.h in 1.4.0 and modified to ensure setjmp/longjmp
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1023
 * match up.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1024
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1025
#ifdef PNG_SETJMP_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1026
/* This function returns the jmp_buf built in to *png_ptr.  It must be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1027
 * supplied with an appropriate 'longjmp' function to use on that jmp_buf
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1028
 * unless the default error function is overridden in which case NULL is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1029
 * acceptable.  The size of the jmp_buf is checked against the actual size
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1030
 * allocated by the library - the call will return NULL on a mismatch
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1031
 * indicating an ABI mismatch.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1032
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1033
PNG_EXPORT(8, jmp_buf*, png_set_longjmp_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1034
    png_longjmp_ptr longjmp_fn, size_t jmp_buf_size));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1035
#  define png_jmpbuf(png_ptr) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1036
      (*png_set_longjmp_fn((png_ptr), longjmp, sizeof (jmp_buf)))
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1037
#else
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1038
#  define png_jmpbuf(png_ptr) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1039
      (LIBPNG_WAS_COMPILED_WITH__PNG_NO_SETJMP)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1041
/* This function should be used by libpng applications in place of
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1042
 * longjmp(png_ptr->jmpbuf, val).  If longjmp_fn() has been set, it
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1043
 * will use it; otherwise it will call PNG_ABORT().  This function was
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1044
 * added in libpng-1.5.0.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1045
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1046
PNG_EXPORTA(9, void, png_longjmp, (png_structp png_ptr, int val),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1047
    PNG_NORETURN);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1049
#ifdef PNG_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1050
/* Reset the compression stream */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1051
PNG_EXPORT(10, int, png_reset_zstream, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
/* New functions added in libpng-1.0.2 (not enabled by default until 1.2.0) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
#ifdef PNG_USER_MEM_SUPPORTED
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1056
PNG_EXPORTA(11, png_structp, png_create_read_struct_2,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1057
    (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1058
    png_error_ptr warn_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1059
    png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1060
    PNG_ALLOCATED);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1061
PNG_EXPORTA(12, png_structp, png_create_write_struct_2,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1062
    (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1063
    png_error_ptr warn_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1064
    png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1065
    PNG_ALLOCATED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1068
/* Write the PNG file signature. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1069
PNG_EXPORT(13, void, png_write_sig, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1070
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
/* Write a PNG chunk - size, type, (optional) data, CRC. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1072
PNG_EXPORT(14, void, png_write_chunk, (png_structp png_ptr, png_const_bytep
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1073
    chunk_name, png_const_bytep data, png_size_t length));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
/* Write the start of a PNG chunk - length and chunk name. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1076
PNG_EXPORT(15, void, png_write_chunk_start, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1077
    png_const_bytep chunk_name, png_uint_32 length));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
/* Write the data of a PNG chunk started with png_write_chunk_start(). */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1080
PNG_EXPORT(16, void, png_write_chunk_data, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1081
    png_const_bytep data, png_size_t length));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
/* Finish a chunk started with png_write_chunk_start() (includes CRC). */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1084
PNG_EXPORT(17, void, png_write_chunk_end, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
/* Allocate and initialize the info structure */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1087
PNG_EXPORTA(18, png_infop, png_create_info_struct, (png_structp png_ptr),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1088
    PNG_ALLOCATED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1090
PNG_EXPORT(19, void, png_info_init_3, (png_infopp info_ptr,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    png_size_t png_info_struct_size));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
/* Writes all the PNG information before the image. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1094
PNG_EXPORT(20, void, png_write_info_before_PLTE,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1095
    (png_structp png_ptr, png_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1096
PNG_EXPORT(21, void, png_write_info,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1097
    (png_structp png_ptr, png_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1099
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1100
/* Read the information before the actual image data. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1101
PNG_EXPORT(22, void, png_read_info,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1102
    (png_structp png_ptr, png_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1105
#ifdef PNG_TIME_RFC1123_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1106
PNG_EXPORT(23, png_const_charp, png_convert_to_rfc1123,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1107
    (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1108
    png_const_timep ptime));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1111
#ifdef PNG_CONVERT_tIME_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1112
/* Convert from a struct tm to png_time */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1113
PNG_EXPORT(24, void, png_convert_from_struct_tm, (png_timep ptime,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1114
    PNG_CONST struct tm FAR * ttime));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1116
/* Convert from time_t to png_time.  Uses gmtime() */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1117
PNG_EXPORT(25, void, png_convert_from_time_t,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1118
    (png_timep ptime, time_t ttime));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1119
#endif /* PNG_CONVERT_tIME_SUPPORTED */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1121
#ifdef PNG_READ_EXPAND_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
/* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1123
PNG_EXPORT(26, void, png_set_expand, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1124
PNG_EXPORT(27, void, png_set_expand_gray_1_2_4_to_8, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1125
PNG_EXPORT(28, void, png_set_palette_to_rgb, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1126
PNG_EXPORT(29, void, png_set_tRNS_to_alpha, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1128
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1129
#ifdef PNG_READ_EXPAND_16_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1130
/* Expand to 16-bit channels, forces conversion of palette to RGB and expansion
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1131
 * of a tRNS chunk if present.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1132
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1133
PNG_EXPORT(221, void, png_set_expand_16, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
/* Use blue, green, red order for pixels. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1138
PNG_EXPORT(30, void, png_set_bgr, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1139
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1140
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1141
#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1142
/* Expand the grayscale to 24-bit RGB if necessary. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1143
PNG_EXPORT(31, void, png_set_gray_to_rgb, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1144
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1145
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1146
#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1147
/* Reduce RGB to grayscale. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1148
PNG_FP_EXPORT(32, void, png_set_rgb_to_gray, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1149
    int error_action, double red, double green));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1150
PNG_FIXED_EXPORT(33, void, png_set_rgb_to_gray_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1151
    int error_action, png_fixed_point red, png_fixed_point green));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1152
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1153
PNG_EXPORT(34, png_byte, png_get_rgb_to_gray_status, (png_const_structp
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1154
    png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1155
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1156
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1157
#ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1158
PNG_EXPORT(35, void, png_build_grayscale_palette, (int bit_depth,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1159
    png_colorp palette));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1162
#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1163
/* How the alpha channel is interpreted - this affects how the color channels of
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1164
 * a PNG file are returned when an alpha channel, or tRNS chunk in a palette
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1165
 * file, is present.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1166
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1167
 * This has no effect on the way pixels are written into a PNG output
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1168
 * datastream. The color samples in a PNG datastream are never premultiplied
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1169
 * with the alpha samples.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1170
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1171
 * The default is to return data according to the PNG specification: the alpha
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1172
 * channel is a linear measure of the contribution of the pixel to the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1173
 * corresponding composited pixel.  The gamma encoded color channels must be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1174
 * scaled according to the contribution and to do this it is necessary to undo
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1175
 * the encoding, scale the color values, perform the composition and reencode
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1176
 * the values.  This is the 'PNG' mode.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1177
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1178
 * The alternative is to 'associate' the alpha with the color information by
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1179
 * storing color channel values that have been scaled by the alpha.  The
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1180
 * advantage is that the color channels can be resampled (the image can be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1181
 * scaled) in this form.  The disadvantage is that normal practice is to store
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1182
 * linear, not (gamma) encoded, values and this requires 16-bit channels for
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1183
 * still images rather than the 8-bit channels that are just about sufficient if
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1184
 * gamma encoding is used.  In addition all non-transparent pixel values,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1185
 * including completely opaque ones, must be gamma encoded to produce the final
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1186
 * image.  This is the 'STANDARD', 'ASSOCIATED' or 'PREMULTIPLIED' mode (the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1187
 * latter being the two common names for associated alpha color channels.)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1188
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1189
 * Since it is not necessary to perform arithmetic on opaque color values so
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1190
 * long as they are not to be resampled and are in the final color space it is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1191
 * possible to optimize the handling of alpha by storing the opaque pixels in
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1192
 * the PNG format (adjusted for the output color space) while storing partially
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1193
 * opaque pixels in the standard, linear, format.  The accuracy required for
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1194
 * standard alpha composition is relatively low, because the pixels are
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1195
 * isolated, therefore typically the accuracy loss in storing 8-bit linear
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1196
 * values is acceptable.  (This is not true if the alpha channel is used to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1197
 * simulate transparency over large areas - use 16 bits or the PNG mode in
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1198
 * this case!)  This is the 'OPTIMIZED' mode.  For this mode a pixel is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1199
 * treated as opaque only if the alpha value is equal to the maximum value.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1200
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1201
 * The final choice is to gamma encode the alpha channel as well.  This is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1202
 * broken because, in practice, no implementation that uses this choice
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1203
 * correctly undoes the encoding before handling alpha composition.  Use this
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1204
 * choice only if other serious errors in the software or hardware you use
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1205
 * mandate it; the typical serious error is for dark halos to appear around
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1206
 * opaque areas of the composited PNG image because of arithmetic overflow.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1207
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1208
 * The API function png_set_alpha_mode specifies which of these choices to use
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1209
 * with an enumerated 'mode' value and the gamma of the required output:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1210
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1211
#define PNG_ALPHA_PNG           0 /* according to the PNG standard */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1212
#define PNG_ALPHA_STANDARD      1 /* according to Porter/Duff */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1213
#define PNG_ALPHA_ASSOCIATED    1 /* as above; this is the normal practice */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1214
#define PNG_ALPHA_PREMULTIPLIED 1 /* as above */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1215
#define PNG_ALPHA_OPTIMIZED     2 /* 'PNG' for opaque pixels, else 'STANDARD' */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1216
#define PNG_ALPHA_BROKEN        3 /* the alpha channel is gamma encoded */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1217
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1218
PNG_FP_EXPORT(227, void, png_set_alpha_mode, (png_structp png_ptr, int mode,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1219
    double output_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1220
PNG_FIXED_EXPORT(228, void, png_set_alpha_mode_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1221
    int mode, png_fixed_point output_gamma));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1224
#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_ALPHA_MODE_SUPPORTED)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1225
/* The output_gamma value is a screen gamma in libpng terminology: it expresses
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1226
 * how to decode the output values, not how they are encoded.  The values used
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1227
 * correspond to the normal numbers used to describe the overall gamma of a
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1228
 * computer display system; for example 2.2 for an sRGB conformant system.  The
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1229
 * values are scaled by 100000 in the _fixed version of the API (so 220000 for
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1230
 * sRGB.)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1231
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1232
 * The inverse of the value is always used to provide a default for the PNG file
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1233
 * encoding if it has no gAMA chunk and if png_set_gamma() has not been called
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1234
 * to override the PNG gamma information.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1235
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1236
 * When the ALPHA_OPTIMIZED mode is selected the output gamma is used to encode
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1237
 * opaque pixels however pixels with lower alpha values are not encoded,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1238
 * regardless of the output gamma setting.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1239
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1240
 * When the standard Porter Duff handling is requested with mode 1 the output
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1241
 * encoding is set to be linear and the output_gamma value is only relevant
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1242
 * as a default for input data that has no gamma information.  The linear output
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1243
 * encoding will be overridden if png_set_gamma() is called - the results may be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1244
 * highly unexpected!
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1245
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1246
 * The following numbers are derived from the sRGB standard and the research
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1247
 * behind it.  sRGB is defined to be approximated by a PNG gAMA chunk value of
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1248
 * 0.45455 (1/2.2) for PNG.  The value implicitly includes any viewing
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1249
 * correction required to take account of any differences in the color
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1250
 * environment of the original scene and the intended display environment; the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1251
 * value expresses how to *decode* the image for display, not how the original
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1252
 * data was *encoded*.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1253
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1254
 * sRGB provides a peg for the PNG standard by defining a viewing environment.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1255
 * sRGB itself, and earlier TV standards, actually use a more complex transform
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1256
 * (a linear portion then a gamma 2.4 power law) than PNG can express.  (PNG is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1257
 * limited to simple power laws.)  By saying that an image for direct display on
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1258
 * an sRGB conformant system should be stored with a gAMA chunk value of 45455
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1259
 * (11.3.3.2 and 11.3.3.5 of the ISO PNG specification) the PNG specification
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1260
 * makes it possible to derive values for other display systems and
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1261
 * environments.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1262
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1263
 * The Mac value is deduced from the sRGB based on an assumption that the actual
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1264
 * extra viewing correction used in early Mac display systems was implemented as
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1265
 * a power 1.45 lookup table.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1266
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1267
 * Any system where a programmable lookup table is used or where the behavior of
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1268
 * the final display device characteristics can be changed requires system
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1269
 * specific code to obtain the current characteristic.  However this can be
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1270
 * difficult and most PNG gamma correction only requires an approximate value.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1271
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1272
 * By default, if png_set_alpha_mode() is not called, libpng assumes that all
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1273
 * values are unencoded, linear, values and that the output device also has a
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1274
 * linear characteristic.  This is only very rarely correct - it is invariably
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1275
 * better to call png_set_alpha_mode() with PNG_DEFAULT_sRGB than rely on the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1276
 * default if you don't know what the right answer is!
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1277
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1278
 * The special value PNG_GAMMA_MAC_18 indicates an older Mac system (pre Mac OS
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1279
 * 10.6) which used a correction table to implement a somewhat lower gamma on an
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1280
 * otherwise sRGB system.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1281
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1282
 * Both these values are reserved (not simple gamma values) in order to allow
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1283
 * more precise correction internally in the future.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1284
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1285
 * NOTE: the following values can be passed to either the fixed or floating
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1286
 * point APIs, but the floating point API will also accept floating point
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1287
 * values.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1288
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1289
#define PNG_DEFAULT_sRGB -1       /* sRGB gamma and color space */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1290
#define PNG_GAMMA_MAC_18 -2       /* Old Mac '1.8' gamma and color space */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1291
#define PNG_GAMMA_sRGB   220000   /* Television standards--matches sRGB gamma */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1292
#define PNG_GAMMA_LINEAR PNG_FP_1 /* Linear */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1295
/* The following are examples of calls to png_set_alpha_mode to achieve the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1296
 * required overall gamma correction and, where necessary, alpha
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1297
 * premultiplication.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1298
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1299
 * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1300
 *    This is the default libpng handling of the alpha channel - it is not
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1301
 *    pre-multiplied into the color components.  In addition the call states
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1302
 *    that the output is for a sRGB system and causes all PNG files without gAMA
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1303
 *    chunks to be assumed to be encoded using sRGB.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1304
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1305
 * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1306
 *    In this case the output is assumed to be something like an sRGB conformant
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1307
 *    display preceeded by a power-law lookup table of power 1.45.  This is how
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1308
 *    early Mac systems behaved.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1309
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1310
 * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_GAMMA_LINEAR);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1311
 *    This is the classic Jim Blinn approach and will work in academic
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1312
 *    environments where everything is done by the book.  It has the shortcoming
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1313
 *    of assuming that input PNG data with no gamma information is linear - this
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1314
 *    is unlikely to be correct unless the PNG files where generated locally.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1315
 *    Most of the time the output precision will be so low as to show
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1316
 *    significant banding in dark areas of the image.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1317
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1318
 * png_set_expand_16(pp);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1319
 * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_DEFAULT_sRGB);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1320
 *    This is a somewhat more realistic Jim Blinn inspired approach.  PNG files
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1321
 *    are assumed to have the sRGB encoding if not marked with a gamma value and
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1322
 *    the output is always 16 bits per component.  This permits accurate scaling
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1323
 *    and processing of the data.  If you know that your input PNG files were
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1324
 *    generated locally you might need to replace PNG_DEFAULT_sRGB with the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1325
 *    correct value for your system.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1326
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1327
 * png_set_alpha_mode(pp, PNG_ALPHA_OPTIMIZED, PNG_DEFAULT_sRGB);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1328
 *    If you just need to composite the PNG image onto an existing background
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1329
 *    and if you control the code that does this you can use the optimization
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1330
 *    setting.  In this case you just copy completely opaque pixels to the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1331
 *    output.  For pixels that are not completely transparent (you just skip
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1332
 *    those) you do the composition math using png_composite or png_composite_16
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1333
 *    below then encode the resultant 8-bit or 16-bit values to match the output
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1334
 *    encoding.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1335
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1336
 * Other cases
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1337
 *    If neither the PNG nor the standard linear encoding work for you because
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1338
 *    of the software or hardware you use then you have a big problem.  The PNG
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1339
 *    case will probably result in halos around the image.  The linear encoding
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1340
 *    will probably result in a washed out, too bright, image (it's actually too
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1341
 *    contrasty.)  Try the ALPHA_OPTIMIZED mode above - this will probably
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1342
 *    substantially reduce the halos.  Alternatively try:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1343
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1344
 * png_set_alpha_mode(pp, PNG_ALPHA_BROKEN, PNG_DEFAULT_sRGB);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1345
 *    This option will also reduce the halos, but there will be slight dark
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1346
 *    halos round the opaque parts of the image where the background is light.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1347
 *    In the OPTIMIZED mode the halos will be light halos where the background
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1348
 *    is dark.  Take your pick - the halos are unavoidable unless you can get
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1349
 *    your hardware/software fixed!  (The OPTIMIZED approach is slightly
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1350
 *    faster.)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1351
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1352
 * When the default gamma of PNG files doesn't match the output gamma.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1353
 *    If you have PNG files with no gamma information png_set_alpha_mode allows
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1354
 *    you to provide a default gamma, but it also sets the ouput gamma to the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1355
 *    matching value.  If you know your PNG files have a gamma that doesn't
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1356
 *    match the output you can take advantage of the fact that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1357
 *    png_set_alpha_mode always sets the output gamma but only sets the PNG
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1358
 *    default if it is not already set:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1359
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1360
 * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1361
 * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1362
 *    The first call sets both the default and the output gamma values, the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1363
 *    second call overrides the output gamma without changing the default.  This
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1364
 *    is easier than achieving the same effect with png_set_gamma.  You must use
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1365
 *    PNG_ALPHA_PNG for the first call - internal checking in png_set_alpha will
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1366
 *    fire if more than one call to png_set_alpha_mode and png_set_background is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1367
 *    made in the same read operation, however multiple calls with PNG_ALPHA_PNG
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1368
 *    are ignored.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1369
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1371
#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1372
PNG_EXPORT(36, void, png_set_strip_alpha, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED) || \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
    defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1377
PNG_EXPORT(37, void, png_set_swap_alpha, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED) || \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
    defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1382
PNG_EXPORT(38, void, png_set_invert_alpha, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
/* Add a filler byte to 8-bit Gray or 24-bit RGB images. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1387
PNG_EXPORT(39, void, png_set_filler, (png_structp png_ptr, png_uint_32 filler,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1388
    int flags));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
/* The values of the PNG_FILLER_ defines should NOT be changed */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1390
#  define PNG_FILLER_BEFORE 0
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1391
#  define PNG_FILLER_AFTER 1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
/* Add an alpha byte to 8-bit Gray or 24-bit RGB images. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1393
PNG_EXPORT(40, void, png_set_add_alpha,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1394
    (png_structp png_ptr, png_uint_32 filler,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1395
    int flags));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
#endif /* PNG_READ_FILLER_SUPPORTED || PNG_WRITE_FILLER_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
/* Swap bytes in 16-bit depth files. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1400
PNG_EXPORT(41, void, png_set_swap, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
#if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
/* Use 1 byte per pixel in 1, 2, or 4-bit depth files. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1405
PNG_EXPORT(42, void, png_set_packing, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1408
#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1409
    defined(PNG_WRITE_PACKSWAP_SUPPORTED)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
/* Swap packing order of pixels in bytes. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1411
PNG_EXPORT(43, void, png_set_packswap, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
/* Converts files to legal bit depths. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1416
PNG_EXPORT(44, void, png_set_shift, (png_structp png_ptr, png_const_color_8p
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1417
    true_bits));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
    defined(PNG_WRITE_INTERLACING_SUPPORTED)
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1422
/* Have the code handle the interlacing.  Returns the number of passes.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1423
 * MUST be called before png_read_update_info or png_start_read_image,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1424
 * otherwise it will not have the desired effect.  Note that it is still
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1425
 * necessary to call png_read_row or png_read_rows png_get_image_height
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1426
 * times for each pass.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1427
*/
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1428
PNG_EXPORT(45, int, png_set_interlace_handling, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
/* Invert monochrome files */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1433
PNG_EXPORT(46, void, png_set_invert_mono, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1436
#ifdef PNG_READ_BACKGROUND_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1437
/* Handle alpha and tRNS by replacing with a background color.  Prior to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1438
 * libpng-1.5.4 this API must not be called before the PNG file header has been
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1439
 * read.  Doing so will result in unexpected behavior and possible warnings or
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1440
 * errors if the PNG file contains a bKGD chunk.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1441
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1442
PNG_FP_EXPORT(47, void, png_set_background, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1443
    png_const_color_16p background_color, int background_gamma_code,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1444
    int need_expand, double background_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1445
PNG_FIXED_EXPORT(215, void, png_set_background_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1446
    png_const_color_16p background_color, int background_gamma_code,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1447
    int need_expand, png_fixed_point background_gamma));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1449
#ifdef PNG_READ_BACKGROUND_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1450
#  define PNG_BACKGROUND_GAMMA_UNKNOWN 0
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1451
#  define PNG_BACKGROUND_GAMMA_SCREEN  1
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1452
#  define PNG_BACKGROUND_GAMMA_FILE    2
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1453
#  define PNG_BACKGROUND_GAMMA_UNIQUE  3
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1456
#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1457
/* Scale a 16-bit depth file down to 8-bit, accurately. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1458
PNG_EXPORT(229, void, png_set_scale_16, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1461
#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1462
#define PNG_READ_16_TO_8 SUPPORTED /* Name prior to 1.5.4 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1463
/* Strip the second byte of information from a 16-bit depth file. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1464
PNG_EXPORT(48, void, png_set_strip_16, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1467
#ifdef PNG_READ_QUANTIZE_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1468
/* Turn on quantizing, and reduce the palette to the number of colors
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1469
 * available.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1470
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1471
PNG_EXPORT(49, void, png_set_quantize,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1472
    (png_structp png_ptr, png_colorp palette,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1473
    int num_palette, int maximum_colors, png_const_uint_16p histogram,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1474
    int full_quantize));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1477
#ifdef PNG_READ_GAMMA_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1478
/* The threshold on gamma processing is configurable but hard-wired into the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1479
 * library.  The following is the floating point variant.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1480
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1481
#define PNG_GAMMA_THRESHOLD (PNG_GAMMA_THRESHOLD_FIXED*.00001)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1483
/* Handle gamma correction. Screen_gamma=(display_exponent).
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1484
 * NOTE: this API simply sets the screen and file gamma values. It will
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1485
 * therefore override the value for gamma in a PNG file if it is called after
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1486
 * the file header has been read - use with care  - call before reading the PNG
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1487
 * file for best results!
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1488
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1489
 * These routines accept the same gamma values as png_set_alpha_mode (described
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1490
 * above).  The PNG_GAMMA_ defines and PNG_DEFAULT_sRGB can be passed to either
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1491
 * API (floating point or fixed.)  Notice, however, that the 'file_gamma' value
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1492
 * is the inverse of a 'screen gamma' value.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1493
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1494
PNG_FP_EXPORT(50, void, png_set_gamma,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1495
    (png_structp png_ptr, double screen_gamma,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1496
    double override_file_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1497
PNG_FIXED_EXPORT(208, void, png_set_gamma_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1498
    png_fixed_point screen_gamma, png_fixed_point override_file_gamma));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1501
#ifdef PNG_WRITE_FLUSH_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1502
/* Set how many lines between output flushes - 0 for no flushing */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1503
PNG_EXPORT(51, void, png_set_flush, (png_structp png_ptr, int nrows));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1504
/* Flush the current PNG output buffer */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1505
PNG_EXPORT(52, void, png_write_flush, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1508
/* Optional update palette with requested transformations */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1509
PNG_EXPORT(53, void, png_start_read_image, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1510
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1511
/* Optional call to update the users info structure */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1512
PNG_EXPORT(54, void, png_read_update_info,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1513
    (png_structp png_ptr, png_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1514
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1515
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1516
/* Read one or more rows of image data. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1517
PNG_EXPORT(55, void, png_read_rows, (png_structp png_ptr, png_bytepp row,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1518
    png_bytepp display_row, png_uint_32 num_rows));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1521
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1522
/* Read a row of data. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1523
PNG_EXPORT(56, void, png_read_row, (png_structp png_ptr, png_bytep row,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1524
    png_bytep display_row));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1525
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1526
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1527
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1528
/* Read the whole image into memory at once. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1529
PNG_EXPORT(57, void, png_read_image, (png_structp png_ptr, png_bytepp image));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1532
/* Write a row of image data */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1533
PNG_EXPORT(58, void, png_write_row,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1534
    (png_structp png_ptr, png_const_bytep row));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1536
/* Write a few rows of image data: (*row) is not written; however, the type
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1537
 * is declared as writeable to maintain compatibility with previous versions
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1538
 * of libpng and to allow the 'display_row' array from read_rows to be passed
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1539
 * unchanged to write_rows.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1540
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1541
PNG_EXPORT(59, void, png_write_rows, (png_structp png_ptr, png_bytepp row,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1542
    png_uint_32 num_rows));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1544
/* Write the image data */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1545
PNG_EXPORT(60, void, png_write_image,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1546
    (png_structp png_ptr, png_bytepp image));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1548
/* Write the end of the PNG file. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1549
PNG_EXPORT(61, void, png_write_end,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1550
    (png_structp png_ptr, png_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1552
#ifdef PNG_SEQUENTIAL_READ_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1553
/* Read the end of the PNG file. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1554
PNG_EXPORT(62, void, png_read_end, (png_structp png_ptr, png_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1557
/* Free any memory associated with the png_info_struct */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1558
PNG_EXPORT(63, void, png_destroy_info_struct, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1559
    png_infopp info_ptr_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1561
/* Free any memory associated with the png_struct and the png_info_structs */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1562
PNG_EXPORT(64, void, png_destroy_read_struct, (png_structpp png_ptr_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1563
    png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1565
/* Free any memory associated with the png_struct and the png_info_structs */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1566
PNG_EXPORT(65, void, png_destroy_write_struct, (png_structpp png_ptr_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1567
    png_infopp info_ptr_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1569
/* Set the libpng method of handling chunk CRC errors */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1570
PNG_EXPORT(66, void, png_set_crc_action,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1571
    (png_structp png_ptr, int crit_action, int ancil_action));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1573
/* Values for png_set_crc_action() say how to handle CRC errors in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
 * ancillary and critical chunks, and whether to use the data contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
 * therein.  Note that it is impossible to "discard" data in a critical
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
 * chunk.  For versions prior to 0.90, the action was always error/quit,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
 * whereas in version 0.90 and later, the action for CRC errors in ancillary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
 * chunks is warn/discard.  These values should NOT be changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
 *      value                       action:critical     action:ancillary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
#define PNG_CRC_DEFAULT       0  /* error/quit          warn/discard data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
#define PNG_CRC_ERROR_QUIT    1  /* error/quit          error/quit        */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
#define PNG_CRC_WARN_DISCARD  2  /* (INVALID)           warn/discard data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
#define PNG_CRC_WARN_USE      3  /* warn/use data       warn/use data     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
#define PNG_CRC_QUIET_USE     4  /* quiet/use data      quiet/use data    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
#define PNG_CRC_NO_CHANGE     5  /* use current value   use current value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
/* These functions give the user control over the scan-line filtering in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
 * libpng and the compression methods used by zlib.  These functions are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
 * mainly useful for testing, as the defaults should work with most users.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
 * Those users who are tight on memory or want faster performance at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
 * expense of compression can modify them.  See the compression library
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
 * header file (zlib.h) for an explination of the compression functions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1597
/* Set the filtering method(s) used by libpng.  Currently, the only valid
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
 * value for "method" is 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1600
PNG_EXPORT(67, void, png_set_filter,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1601
    (png_structp png_ptr, int method, int filters));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
/* Flags for png_set_filter() to say which filters to use.  The flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
 * are chosen so that they don't conflict with real filter types
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
 * below, in case they are supplied instead of the #defined constants.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
 * These values should NOT be changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
#define PNG_NO_FILTERS     0x00
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
#define PNG_FILTER_NONE    0x08
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
#define PNG_FILTER_SUB     0x10
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
#define PNG_FILTER_UP      0x20
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
#define PNG_FILTER_AVG     0x40
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
#define PNG_FILTER_PAETH   0x80
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
#define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
                         PNG_FILTER_AVG | PNG_FILTER_PAETH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
/* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
 * These defines should NOT be changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
#define PNG_FILTER_VALUE_NONE  0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
#define PNG_FILTER_VALUE_SUB   1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
#define PNG_FILTER_VALUE_UP    2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
#define PNG_FILTER_VALUE_AVG   3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
#define PNG_FILTER_VALUE_PAETH 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
#define PNG_FILTER_VALUE_LAST  5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1627
#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* EXPERIMENTAL */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
/* The "heuristic_method" is given by one of the PNG_FILTER_HEURISTIC_
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
 * defines, either the default (minimum-sum-of-absolute-differences), or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
 * the experimental method (weighted-minimum-sum-of-absolute-differences).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
 * Weights are factors >= 1.0, indicating how important it is to keep the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
 * filter type consistent between rows.  Larger numbers mean the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
 * filter is that many times as likely to be the same as the "num_weights"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
 * previous filters.  This is cumulative for each previous row with a weight.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
 * There needs to be "num_weights" values in "filter_weights", or it can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
 * NULL if the weights aren't being specified.  Weights have no influence on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
 * the selection of the first row filter.  Well chosen weights can (in theory)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
 * improve the compression for a given image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
 * Costs are factors >= 1.0 indicating the relative decoding costs of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
 * filter type.  Higher costs indicate more decoding expense, and are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
 * therefore less likely to be selected over a filter with lower computational
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
 * costs.  There needs to be a value in "filter_costs" for each valid filter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
 * type (given by PNG_FILTER_VALUE_LAST), or it can be NULL if you aren't
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
 * setting the costs.  Costs try to improve the speed of decompression without
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
 * unduly increasing the compressed image size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
 * A negative weight or cost indicates the default value is to be used, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
 * values in the range [0.0, 1.0) indicate the value is to remain unchanged.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
 * The default values for both weights and costs are currently 1.0, but may
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
 * change if good general weighting/cost heuristics can be found.  If both
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
 * the weights and costs are set to 1.0, this degenerates the WEIGHTED method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
 * to the UNWEIGHTED method, but with added encoding time/computation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1656
PNG_FP_EXPORT(68, void, png_set_filter_heuristics, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1657
    int heuristic_method, int num_weights, png_const_doublep filter_weights,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1658
    png_const_doublep filter_costs));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1659
PNG_FIXED_EXPORT(209, void, png_set_filter_heuristics_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1660
    (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1661
    int heuristic_method, int num_weights, png_const_fixed_point_p
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1662
    filter_weights, png_const_fixed_point_p filter_costs));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
#endif /*  PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
/* Heuristic used for row filter selection.  These defines should NOT be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
 * changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
#define PNG_FILTER_HEURISTIC_DEFAULT    0  /* Currently "UNWEIGHTED" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1  /* Used by libpng < 0.95 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
#define PNG_FILTER_HEURISTIC_WEIGHTED   2  /* Experimental feature */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
#define PNG_FILTER_HEURISTIC_LAST       3  /* Not a valid value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1673
#ifdef PNG_WRITE_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
/* Set the library compression level.  Currently, valid values range from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
 * 0 - 9, corresponding directly to the zlib compression levels 0 - 9
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
 * (0 - no compression, 9 - "maximal" compression).  Note that tests have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
 * shown that zlib compression levels 3-6 usually perform as well as level 9
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
 * for PNG images, and do considerably fewer caclulations.  In the future,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
 * these values may not correspond directly to the zlib compression levels.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1681
PNG_EXPORT(69, void, png_set_compression_level,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1682
    (png_structp png_ptr, int level));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1683
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1684
PNG_EXPORT(70, void, png_set_compression_mem_level, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1685
    int mem_level));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1686
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1687
PNG_EXPORT(71, void, png_set_compression_strategy, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1688
    int strategy));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1690
/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1691
 * smaller value of window_bits if it can do so safely.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1692
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1693
PNG_EXPORT(72, void, png_set_compression_window_bits, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1694
    int window_bits));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1695
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1696
PNG_EXPORT(73, void, png_set_compression_method, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1697
    int method));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1698
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1700
#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1701
/* Also set zlib parameters for compressing non-IDAT chunks */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1702
PNG_EXPORT(222, void, png_set_text_compression_level,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1703
    (png_structp png_ptr, int level));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1704
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1705
PNG_EXPORT(223, void, png_set_text_compression_mem_level, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1706
    int mem_level));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1708
PNG_EXPORT(224, void, png_set_text_compression_strategy, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1709
    int strategy));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1711
/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1712
 * smaller value of window_bits if it can do so safely.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1713
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1714
PNG_EXPORT(225, void, png_set_text_compression_window_bits, (png_structp
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1715
    png_ptr, int window_bits));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1716
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1717
PNG_EXPORT(226, void, png_set_text_compression_method, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1718
    int method));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1719
#endif /* PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
/* These next functions are called for input/output, memory, and error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
 * handling.  They are in the file pngrio.c, pngwio.c, and pngerror.c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
 * and call standard C I/O routines such as fread(), fwrite(), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
 * fprintf().  These functions can be made to use other I/O routines
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
 * at run time for those applications that need to handle I/O in a
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1726
 * different manner by calling png_set_???_fn().  See libpng-manual.txt for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
 * more information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1730
#ifdef PNG_STDIO_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
/* Initialize the input/output for the PNG file to the default functions. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1732
PNG_EXPORT(74, void, png_init_io, (png_structp png_ptr, png_FILE_p fp));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
/* Replace the (error and abort), and warning functions with user
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
 * supplied functions.  If no messages are to be printed you must still
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
 * write and use replacement functions. The replacement error_fn should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
 * still do a longjmp to the last setjmp location if you are using this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
 * method of error handling.  If error_fn or warning_fn is NULL, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
 * default function will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1743
PNG_EXPORT(75, void, png_set_error_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1744
    (png_structp png_ptr, png_voidp error_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1745
    png_error_ptr error_fn, png_error_ptr warning_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
/* Return the user pointer associated with the error functions */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1748
PNG_EXPORT(76, png_voidp, png_get_error_ptr, (png_const_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
/* Replace the default data output functions with a user supplied one(s).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
 * If buffered output is not used, then output_flush_fn can be set to NULL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
 * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
 * output_flush_fn will be ignored (and thus can be NULL).
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1754
 * It is probably a mistake to use NULL for output_flush_fn if
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1755
 * write_data_fn is not also NULL unless you have built libpng with
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1756
 * PNG_WRITE_FLUSH_SUPPORTED undefined, because in this case libpng's
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1757
 * default flush function, which uses the standard *FILE structure, will
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1758
 * be used.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1760
PNG_EXPORT(77, void, png_set_write_fn, (png_structp png_ptr, png_voidp io_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1761
    png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
/* Replace the default data input function with a user supplied one. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1764
PNG_EXPORT(78, void, png_set_read_fn, (png_structp png_ptr, png_voidp io_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1765
    png_rw_ptr read_data_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
/* Return the user pointer associated with the I/O functions */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1768
PNG_EXPORT(79, png_voidp, png_get_io_ptr, (png_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1770
PNG_EXPORT(80, void, png_set_read_status_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1771
    png_read_status_ptr read_row_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1773
PNG_EXPORT(81, void, png_set_write_status_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1774
    png_write_status_ptr write_row_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
#ifdef PNG_USER_MEM_SUPPORTED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
/* Replace the default memory allocation functions with user supplied one(s). */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1778
PNG_EXPORT(82, void, png_set_mem_fn, (png_structp png_ptr, png_voidp mem_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1779
    png_malloc_ptr malloc_fn, png_free_ptr free_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
/* Return the user pointer associated with the memory functions */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1781
PNG_EXPORT(83, png_voidp, png_get_mem_ptr, (png_const_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1784
#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1785
PNG_EXPORT(84, void, png_set_read_user_transform_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1786
    png_user_transform_ptr read_user_transform_fn));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1787
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1788
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1789
#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1790
PNG_EXPORT(85, void, png_set_write_user_transform_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1791
    png_user_transform_ptr write_user_transform_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1794
#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1795
PNG_EXPORT(86, void, png_set_user_transform_info, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1796
    png_voidp user_transform_ptr, int user_transform_depth,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1797
    int user_transform_channels));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1798
/* Return the user pointer associated with the user transform functions */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1799
PNG_EXPORT(87, png_voidp, png_get_user_transform_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1800
    (png_const_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1803
#ifdef PNG_USER_TRANSFORM_INFO_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1804
/* Return information about the row currently being processed.  Note that these
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1805
 * APIs do not fail but will return unexpected results if called outside a user
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1806
 * transform callback.  Also note that when transforming an interlaced image the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1807
 * row number is the row number within the sub-image of the interlace pass, so
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1808
 * the value will increase to the height of the sub-image (not the full image)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1809
 * then reset to 0 for the next pass.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1810
 *
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1811
 * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1812
 * find the output pixel (x,y) given an interlaced sub-image pixel
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1813
 * (row,col,pass).  (See below for these macros.)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1814
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1815
PNG_EXPORT(217, png_uint_32, png_get_current_row_number, (png_const_structp));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1816
PNG_EXPORT(218, png_byte, png_get_current_pass_number, (png_const_structp));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
#ifdef PNG_USER_CHUNKS_SUPPORTED
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1820
PNG_EXPORT(88, void, png_set_read_user_chunk_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1821
    png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1822
PNG_EXPORT(89, png_voidp, png_get_user_chunk_ptr, (png_const_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
/* Sets the function callbacks for the push reader, and a pointer to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
 * user-defined structure available to the callback functions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1829
PNG_EXPORT(90, void, png_set_progressive_read_fn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1830
    png_voidp progressive_ptr, png_progressive_info_ptr info_fn,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1831
    png_progressive_row_ptr row_fn, png_progressive_end_ptr end_fn));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1833
/* Returns the user pointer associated with the push read functions */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1834
PNG_EXPORT(91, png_voidp, png_get_progressive_ptr, (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1835
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1836
/* Function to be called when data becomes available */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1837
PNG_EXPORT(92, void, png_process_data,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1838
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1839
    png_bytep buffer, png_size_t buffer_size));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1841
/* A function which may be called *only* within png_process_data to stop the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1842
 * processing of any more data.  The function returns the number of bytes
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1843
 * remaining, excluding any that libpng has cached internally.  A subsequent
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1844
 * call to png_process_data must supply these bytes again.  If the argument
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1845
 * 'save' is set to true the routine will first save all the pending data and
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1846
 * will always return 0.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1847
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1848
PNG_EXPORT(219, png_size_t, png_process_data_pause, (png_structp, int save));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1850
/* A function which may be called *only* outside (after) a call to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1851
 * png_process_data.  It returns the number of bytes of data to skip in the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1852
 * input.  Normally it will return 0, but if it returns a non-zero value the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1853
 * application must skip than number of bytes of input data and pass the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1854
 * following data to the next call to png_process_data.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1856
PNG_EXPORT(220, png_uint_32, png_process_data_skip, (png_structp));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1857
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1858
/* Function that combines rows.  'new_row' is a flag that should come from
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1859
 * the callback and be non-NULL if anything needs to be done; the library
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1860
 * stores its own version of the new data internally and ignores the passed
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1861
 * in value.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1862
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1863
PNG_EXPORT(93, void, png_progressive_combine_row, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1864
    png_bytep old_row, png_const_bytep new_row));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1867
PNG_EXPORTA(94, png_voidp, png_malloc,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1868
    (png_structp png_ptr, png_alloc_size_t size),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1869
    PNG_ALLOCATED);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1870
/* Added at libpng version 1.4.0 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1871
PNG_EXPORTA(95, png_voidp, png_calloc,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1872
    (png_structp png_ptr, png_alloc_size_t size),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1873
    PNG_ALLOCATED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1875
/* Added at libpng version 1.2.4 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1876
PNG_EXPORTA(96, png_voidp, png_malloc_warn, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1877
    png_alloc_size_t size), PNG_ALLOCATED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1879
/* Frees a pointer allocated by png_malloc() */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1880
PNG_EXPORT(97, void, png_free, (png_structp png_ptr, png_voidp ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
/* Free data that was allocated internally */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1883
PNG_EXPORT(98, void, png_free_data,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1884
    (png_structp png_ptr, png_infop info_ptr, png_uint_32 free_me, int num));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1885
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
/* Reassign responsibility for freeing existing data, whether allocated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
 * by libpng or by the application */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1888
PNG_EXPORT(99, void, png_data_freer,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1889
    (png_structp png_ptr, png_infop info_ptr, int freer, png_uint_32 mask));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1890
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1891
/* Assignments for png_data_freer */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
#define PNG_DESTROY_WILL_FREE_DATA 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
#define PNG_SET_WILL_FREE_DATA 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
#define PNG_USER_WILL_FREE_DATA 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
/* Flags for png_ptr->free_me and info_ptr->free_me */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
#define PNG_FREE_HIST 0x0008
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
#define PNG_FREE_ICCP 0x0010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
#define PNG_FREE_SPLT 0x0020
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
#define PNG_FREE_ROWS 0x0040
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
#define PNG_FREE_PCAL 0x0080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
#define PNG_FREE_SCAL 0x0100
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
#define PNG_FREE_UNKN 0x0200
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
#define PNG_FREE_LIST 0x0400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
#define PNG_FREE_PLTE 0x1000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
#define PNG_FREE_TRNS 0x2000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
#define PNG_FREE_TEXT 0x4000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
#define PNG_FREE_ALL  0x7fff
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
#define PNG_FREE_MUL  0x4220 /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
#ifdef PNG_USER_MEM_SUPPORTED
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1911
PNG_EXPORTA(100, png_voidp, png_malloc_default, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1912
    png_alloc_size_t size), PNG_ALLOCATED);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1913
PNG_EXPORT(101, void, png_free_default, (png_structp png_ptr, png_voidp ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1914
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1915
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1916
#ifdef PNG_ERROR_TEXT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1917
/* Fatal error in PNG image of libpng - can't continue */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1918
PNG_EXPORTA(102, void, png_error,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1919
    (png_structp png_ptr, png_const_charp error_message),
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1920
    PNG_NORETURN);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1921
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1922
/* The same, but the chunk name is prepended to the error string. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1923
PNG_EXPORTA(103, void, png_chunk_error, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1924
    png_const_charp error_message), PNG_NORETURN);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1925
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1926
#else
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1927
/* Fatal error in PNG image of libpng - can't continue */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1928
PNG_EXPORTA(104, void, png_err, (png_structp png_ptr), PNG_NORETURN);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1931
#ifdef PNG_WARNINGS_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
/* Non-fatal error in libpng.  Can continue, but may have a problem. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1933
PNG_EXPORT(105, void, png_warning, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1934
    png_const_charp warning_message));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
/* Non-fatal error in libpng, chunk name is prepended to message. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1937
PNG_EXPORT(106, void, png_chunk_warning, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1938
    png_const_charp warning_message));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1939
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1940
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1941
#ifdef PNG_BENIGN_ERRORS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1942
/* Benign error in libpng.  Can continue, but may have a problem.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1943
 * User can choose whether to handle as a fatal error or as a warning. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1944
#  undef png_benign_error
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1945
PNG_EXPORT(107, void, png_benign_error, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1946
    png_const_charp warning_message));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1947
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1948
/* Same, chunk name is prepended to message. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1949
#  undef png_chunk_benign_error
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1950
PNG_EXPORT(108, void, png_chunk_benign_error, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1951
    png_const_charp warning_message));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1952
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1953
PNG_EXPORT(109, void, png_set_benign_errors,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1954
    (png_structp png_ptr, int allowed));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1955
#else
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1956
#  ifdef PNG_ALLOW_BENIGN_ERRORS
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1957
#    define png_benign_error png_warning
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1958
#    define png_chunk_benign_error png_chunk_warning
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1959
#  else
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1960
#    define png_benign_error png_error
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1961
#    define png_chunk_benign_error png_chunk_error
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1962
#  endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1963
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
/* The png_set_<chunk> functions are for storing values in the png_info_struct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
 * Similarly, the png_get_<chunk> calls are used to read values from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
 * png_info_struct, either storing the parameters in the passed variables, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
 * setting pointers into the png_info_struct where the data is stored.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
 * png_get_<chunk> functions return a non-zero value if the data was available
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
 * in info_ptr, or return zero and do not change any of the parameters if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
 * data was not available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
 * These functions should be used instead of directly accessing png_info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
 * to avoid problems with future changes in the size and internal layout of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
 * png_info_struct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
/* Returns "flag" if chunk data is valid in info_ptr. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1978
PNG_EXPORT(110, png_uint_32, png_get_valid,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1979
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1980
    png_uint_32 flag));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
/* Returns number of bytes needed to hold a transformed row. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1983
PNG_EXPORT(111, png_size_t, png_get_rowbytes, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1984
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1986
#ifdef PNG_INFO_IMAGE_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
/* Returns row_pointers, which is an array of pointers to scanlines that was
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1988
 * returned from png_read_png().
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1989
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1990
PNG_EXPORT(112, png_bytepp, png_get_rows,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1991
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
/* Set row_pointers, which is an array of pointers to scanlines for use
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1993
 * by png_write_png().
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1994
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1995
PNG_EXPORT(113, void, png_set_rows, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  1996
    png_infop info_ptr, png_bytepp row_pointers));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
/* Returns number of color channels in image. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2000
PNG_EXPORT(114, png_byte, png_get_channels,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2001
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
#ifdef PNG_EASY_ACCESS_SUPPORTED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
/* Returns image width in pixels. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2005
PNG_EXPORT(115, png_uint_32, png_get_image_width, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2006
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
/* Returns image height in pixels. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2009
PNG_EXPORT(116, png_uint_32, png_get_image_height, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2010
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
/* Returns image bit_depth. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2013
PNG_EXPORT(117, png_byte, png_get_bit_depth,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2014
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
/* Returns image color_type. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2017
PNG_EXPORT(118, png_byte, png_get_color_type, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2018
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
/* Returns image filter_type. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2021
PNG_EXPORT(119, png_byte, png_get_filter_type, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2022
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
/* Returns image interlace_type. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2025
PNG_EXPORT(120, png_byte, png_get_interlace_type, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2026
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
/* Returns image compression_type. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2029
PNG_EXPORT(121, png_byte, png_get_compression_type, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2030
    png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
/* Returns image resolution in pixels per meter, from pHYs chunk data. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2033
PNG_EXPORT(122, png_uint_32, png_get_pixels_per_meter,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2034
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2035
PNG_EXPORT(123, png_uint_32, png_get_x_pixels_per_meter,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2036
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2037
PNG_EXPORT(124, png_uint_32, png_get_y_pixels_per_meter,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2038
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
/* Returns pixel aspect ratio, computed from pHYs chunk data.  */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2041
PNG_FP_EXPORT(125, float, png_get_pixel_aspect_ratio,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2042
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2043
PNG_FIXED_EXPORT(210, png_fixed_point, png_get_pixel_aspect_ratio_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2044
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
/* Returns image x, y offset in pixels or microns, from oFFs chunk data. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2047
PNG_EXPORT(126, png_int_32, png_get_x_offset_pixels,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2048
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2049
PNG_EXPORT(127, png_int_32, png_get_y_offset_pixels,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2050
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2051
PNG_EXPORT(128, png_int_32, png_get_x_offset_microns,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2052
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2053
PNG_EXPORT(129, png_int_32, png_get_y_offset_microns,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2054
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
#endif /* PNG_EASY_ACCESS_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
/* Returns pointer to signature string read from PNG header */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2059
PNG_EXPORT(130, png_const_bytep, png_get_signature,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2060
    (png_const_structp png_ptr, png_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2062
#ifdef PNG_bKGD_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2063
PNG_EXPORT(131, png_uint_32, png_get_bKGD,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2064
    (png_const_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2065
    png_color_16p *background));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2068
#ifdef PNG_bKGD_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2069
PNG_EXPORT(132, void, png_set_bKGD, (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2070
    png_const_color_16p background));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2073
#ifdef PNG_cHRM_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2074
PNG_FP_EXPORT(133, png_uint_32, png_get_cHRM, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2075
   png_const_infop info_ptr, double *white_x, double *white_y, double *red_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2076
    double *red_y, double *green_x, double *green_y, double *blue_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2077
    double *blue_y));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2078
#ifdef PNG_FIXED_POINT_SUPPORTED /* Otherwise not implemented */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2079
PNG_FIXED_EXPORT(134, png_uint_32, png_get_cHRM_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2080
    (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2081
    png_const_infop info_ptr, png_fixed_point *int_white_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2082
    png_fixed_point *int_white_y, png_fixed_point *int_red_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2083
    png_fixed_point *int_red_y, png_fixed_point *int_green_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2084
    png_fixed_point *int_green_y, png_fixed_point *int_blue_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2085
    png_fixed_point *int_blue_y));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2089
#ifdef PNG_cHRM_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2090
PNG_FP_EXPORT(135, void, png_set_cHRM,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2091
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2092
    double white_x, double white_y, double red_x, double red_y, double green_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2093
    double green_y, double blue_x, double blue_y));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2094
PNG_FIXED_EXPORT(136, void, png_set_cHRM_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2095
    png_infop info_ptr, png_fixed_point int_white_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2096
    png_fixed_point int_white_y, png_fixed_point int_red_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2097
    png_fixed_point int_red_y, png_fixed_point int_green_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2098
    png_fixed_point int_green_y, png_fixed_point int_blue_x,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2099
    png_fixed_point int_blue_y));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2102
#ifdef PNG_gAMA_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2103
PNG_FP_EXPORT(137, png_uint_32, png_get_gAMA,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2104
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2105
    double *file_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2106
PNG_FIXED_EXPORT(138, png_uint_32, png_get_gAMA_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2107
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2108
    png_fixed_point *int_file_gamma));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2111
#ifdef PNG_gAMA_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2112
PNG_FP_EXPORT(139, void, png_set_gAMA, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2113
    png_infop info_ptr, double file_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2114
PNG_FIXED_EXPORT(140, void, png_set_gAMA_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2115
    png_infop info_ptr, png_fixed_point int_file_gamma));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2116
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2118
#ifdef PNG_hIST_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2119
PNG_EXPORT(141, png_uint_32, png_get_hIST,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2120
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2121
    png_uint_16p *hist));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2122
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2124
#ifdef PNG_hIST_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2125
PNG_EXPORT(142, void, png_set_hIST, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2126
    png_infop info_ptr, png_const_uint_16p hist));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2129
PNG_EXPORT(143, png_uint_32, png_get_IHDR,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2130
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2131
    png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2132
    int *interlace_method, int *compression_method, int *filter_method));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2133
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2134
PNG_EXPORT(144, void, png_set_IHDR,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2135
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2136
    png_uint_32 width, png_uint_32 height, int bit_depth, int color_type,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2137
    int interlace_method, int compression_method, int filter_method));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2138
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2139
#ifdef PNG_oFFs_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2140
PNG_EXPORT(145, png_uint_32, png_get_oFFs,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2141
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2142
    png_int_32 *offset_x, png_int_32 *offset_y, int *unit_type));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2145
#ifdef PNG_oFFs_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2146
PNG_EXPORT(146, void, png_set_oFFs,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2147
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2148
    png_int_32 offset_x, png_int_32 offset_y, int unit_type));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2151
#ifdef PNG_pCAL_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2152
PNG_EXPORT(147, png_uint_32, png_get_pCAL,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2153
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2154
    png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2155
    int *nparams,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2156
    png_charp *units, png_charpp *params));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2159
#ifdef PNG_pCAL_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2160
PNG_EXPORT(148, void, png_set_pCAL, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2161
    png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2162
    png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2163
    int nparams, png_const_charp units, png_charpp params));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2164
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2165
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2166
#ifdef PNG_pHYs_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2167
PNG_EXPORT(149, png_uint_32, png_get_pHYs,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2168
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2169
    png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2172
#ifdef PNG_pHYs_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2173
PNG_EXPORT(150, void, png_set_pHYs,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2174
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2175
    png_uint_32 res_x, png_uint_32 res_y, int unit_type));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2178
PNG_EXPORT(151, png_uint_32, png_get_PLTE,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2179
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2180
    png_colorp *palette, int *num_palette));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2181
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2182
PNG_EXPORT(152, void, png_set_PLTE,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2183
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2184
    png_const_colorp palette, int num_palette));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2185
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2186
#ifdef PNG_sBIT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2187
PNG_EXPORT(153, png_uint_32, png_get_sBIT,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2188
    (png_const_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2189
    png_color_8p *sig_bit));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2192
#ifdef PNG_sBIT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2193
PNG_EXPORT(154, void, png_set_sBIT,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2194
    (png_structp png_ptr, png_infop info_ptr, png_const_color_8p sig_bit));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2197
#ifdef PNG_sRGB_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2198
PNG_EXPORT(155, png_uint_32, png_get_sRGB, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2199
    png_const_infop info_ptr, int *file_srgb_intent));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2202
#ifdef PNG_sRGB_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2203
PNG_EXPORT(156, void, png_set_sRGB,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2204
    (png_structp png_ptr, png_infop info_ptr, int srgb_intent));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2205
PNG_EXPORT(157, void, png_set_sRGB_gAMA_and_cHRM, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2206
    png_infop info_ptr, int srgb_intent));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2209
#ifdef PNG_iCCP_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2210
PNG_EXPORT(158, png_uint_32, png_get_iCCP,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2211
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2212
    png_charpp name, int *compression_type, png_bytepp profile,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2213
    png_uint_32 *proflen));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2216
#ifdef PNG_iCCP_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2217
PNG_EXPORT(159, void, png_set_iCCP,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2218
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2219
    png_const_charp name, int compression_type, png_const_bytep profile,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2220
    png_uint_32 proflen));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2223
#ifdef PNG_sPLT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2224
PNG_EXPORT(160, png_uint_32, png_get_sPLT,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2225
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2226
    png_sPLT_tpp entries));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2229
#ifdef PNG_sPLT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2230
PNG_EXPORT(161, void, png_set_sPLT,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2231
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2232
    png_const_sPLT_tp entries, int nentries));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2233
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2235
#ifdef PNG_TEXT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2236
/* png_get_text also returns the number of text chunks in *num_text */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2237
PNG_EXPORT(162, png_uint_32, png_get_text,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2238
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2239
    png_textp *text_ptr, int *num_text));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2242
/* Note while png_set_text() will accept a structure whose text,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2243
 * language, and  translated keywords are NULL pointers, the structure
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2244
 * returned by png_get_text will always contain regular
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2245
 * zero-terminated C strings.  They might be empty strings but
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2246
 * they will never be NULL pointers.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2247
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2249
#ifdef PNG_TEXT_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2250
PNG_EXPORT(163, void, png_set_text,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2251
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2252
    png_const_textp text_ptr, int num_text));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2255
#ifdef PNG_tIME_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2256
PNG_EXPORT(164, png_uint_32, png_get_tIME,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2257
    (png_const_structp png_ptr, png_infop info_ptr, png_timep *mod_time));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2260
#ifdef PNG_tIME_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2261
PNG_EXPORT(165, void, png_set_tIME,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2262
    (png_structp png_ptr, png_infop info_ptr, png_const_timep mod_time));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2265
#ifdef PNG_tRNS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2266
PNG_EXPORT(166, png_uint_32, png_get_tRNS,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2267
    (png_const_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2268
    png_bytep *trans_alpha, int *num_trans, png_color_16p *trans_color));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2271
#ifdef PNG_tRNS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2272
PNG_EXPORT(167, void, png_set_tRNS,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2273
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2274
    png_const_bytep trans_alpha, int num_trans,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2275
    png_const_color_16p trans_color));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2277
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2278
#ifdef PNG_sCAL_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2279
PNG_FP_EXPORT(168, png_uint_32, png_get_sCAL,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2280
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2281
    int *unit, double *width, double *height));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2282
#ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2283
/* NOTE: this API is currently implemented using floating point arithmetic,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2284
 * consequently it can only be used on systems with floating point support.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2285
 * In any case the range of values supported by png_fixed_point is small and it
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2286
 * is highly recommended that png_get_sCAL_s be used instead.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2287
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2288
PNG_FIXED_EXPORT(214, png_uint_32, png_get_sCAL_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2289
    (png_structp png_ptr, png_const_infop info_ptr, int *unit,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2290
    png_fixed_point *width,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2291
    png_fixed_point *height));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2293
PNG_EXPORT(169, png_uint_32, png_get_sCAL_s,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2294
    (png_const_structp png_ptr, png_const_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2295
    int *unit, png_charpp swidth, png_charpp sheight));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2296
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2297
PNG_FP_EXPORT(170, void, png_set_sCAL,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2298
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2299
    int unit, double width, double height));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2300
PNG_FIXED_EXPORT(213, void, png_set_sCAL_fixed, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2301
   png_infop info_ptr, int unit, png_fixed_point width,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2302
   png_fixed_point height));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2303
PNG_EXPORT(171, void, png_set_sCAL_s,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2304
    (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2305
    int unit, png_const_charp swidth, png_const_charp sheight));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
#endif /* PNG_sCAL_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2308
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2309
/* Provide a list of chunks and how they are to be handled, if the built-in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
   handling or default unknown chunk handling is not desired.  Any chunks not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
   listed will be handled in the default manner.  The IHDR and IEND chunks
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
   must not be listed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
      keep = 0: follow default behaviour
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
           = 1: do not keep
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
           = 2: keep only if safe-to-copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
           = 3: keep even if unsafe-to-copy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
*/
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2318
PNG_EXPORT(172, void, png_set_keep_unknown_chunks,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2319
    (png_structp png_ptr, int keep,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2320
    png_const_bytep chunk_list, int num_chunks));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2321
PNG_EXPORT(173, int, png_handle_as_unknown, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2322
    png_const_bytep chunk_name));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
#endif
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2324
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2325
PNG_EXPORT(174, void, png_set_unknown_chunks, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2326
    png_infop info_ptr, png_const_unknown_chunkp unknowns,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2327
    int num_unknowns));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2328
PNG_EXPORT(175, void, png_set_unknown_chunk_location,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2329
    (png_structp png_ptr, png_infop info_ptr, int chunk, int location));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2330
PNG_EXPORT(176, int, png_get_unknown_chunks, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2331
    png_const_infop info_ptr, png_unknown_chunkpp entries));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
/* Png_free_data() will turn off the "valid" flag for anything it frees.
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2335
 * If you need to turn it off for a chunk that your application has freed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2336
 * you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2337
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2338
PNG_EXPORT(177, void, png_set_invalid,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2339
    (png_structp png_ptr, png_infop info_ptr, int mask));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2341
#ifdef PNG_INFO_IMAGE_SUPPORTED
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
/* The "params" pointer is currently not used and is for future expansion. */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2343
PNG_EXPORT(178, void, png_read_png, (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2344
    int transforms, png_voidp params));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2345
PNG_EXPORT(179, void, png_write_png, (png_structp png_ptr, png_infop info_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2346
    int transforms, png_voidp params));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2349
PNG_EXPORT(180, png_const_charp, png_get_copyright,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2350
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2351
PNG_EXPORT(181, png_const_charp, png_get_header_ver,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2352
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2353
PNG_EXPORT(182, png_const_charp, png_get_header_version,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2354
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2355
PNG_EXPORT(183, png_const_charp, png_get_libpng_ver,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2356
    (png_const_structp png_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
#ifdef PNG_MNG_FEATURES_SUPPORTED
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2359
PNG_EXPORT(184, png_uint_32, png_permit_mng_features, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2360
    png_uint_32 mng_features_permitted));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
/* For use in png_set_keep_unknown, added to version 1.2.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
#define PNG_HANDLE_CHUNK_AS_DEFAULT   0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
#define PNG_HANDLE_CHUNK_NEVER        1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
#define PNG_HANDLE_CHUNK_IF_SAFE      2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
#define PNG_HANDLE_CHUNK_ALWAYS       3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2369
/* Strip the prepended error numbers ("#nnn ") from error and warning
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2370
 * messages before passing them to the error or warning handler.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2371
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2372
#ifdef PNG_ERROR_NUMBERS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2373
PNG_EXPORT(185, void, png_set_strip_error_numbers,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2374
    (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2375
    png_uint_32 strip_mode));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2376
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2378
/* Added in libpng-1.2.6 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2379
#ifdef PNG_SET_USER_LIMITS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2380
PNG_EXPORT(186, void, png_set_user_limits, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2381
    png_uint_32 user_width_max, png_uint_32 user_height_max));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2382
PNG_EXPORT(187, png_uint_32, png_get_user_width_max,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2383
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2384
PNG_EXPORT(188, png_uint_32, png_get_user_height_max,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2385
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2386
/* Added in libpng-1.4.0 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2387
PNG_EXPORT(189, void, png_set_chunk_cache_max, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2388
    png_uint_32 user_chunk_cache_max));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2389
PNG_EXPORT(190, png_uint_32, png_get_chunk_cache_max,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2390
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2391
/* Added in libpng-1.4.1 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2392
PNG_EXPORT(191, void, png_set_chunk_malloc_max, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2393
    png_alloc_size_t user_chunk_cache_max));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2394
PNG_EXPORT(192, png_alloc_size_t, png_get_chunk_malloc_max,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2395
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2396
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2398
#if defined(PNG_INCH_CONVERSIONS_SUPPORTED)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2399
PNG_EXPORT(193, png_uint_32, png_get_pixels_per_inch,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2400
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2402
PNG_EXPORT(194, png_uint_32, png_get_x_pixels_per_inch,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2403
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2405
PNG_EXPORT(195, png_uint_32, png_get_y_pixels_per_inch,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2406
    (png_const_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2408
PNG_FP_EXPORT(196, float, png_get_x_offset_inches,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2409
    (png_const_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2410
#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2411
PNG_FIXED_EXPORT(211, png_fixed_point, png_get_x_offset_inches_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2412
    (png_structp png_ptr, png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2413
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2415
PNG_FP_EXPORT(197, float, png_get_y_offset_inches, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2416
    png_const_infop info_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2417
#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2418
PNG_FIXED_EXPORT(212, png_fixed_point, png_get_y_offset_inches_fixed,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2419
    (png_structp png_ptr, png_const_infop info_ptr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2422
#  ifdef PNG_pHYs_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2423
PNG_EXPORT(198, png_uint_32, png_get_pHYs_dpi, (png_const_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2424
    png_const_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2425
    int *unit_type));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2426
#  endif /* PNG_pHYs_SUPPORTED */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2427
#endif  /* PNG_INCH_CONVERSIONS_SUPPORTED */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2428
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2429
/* Added in libpng-1.4.0 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2430
#ifdef PNG_IO_STATE_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2431
PNG_EXPORT(199, png_uint_32, png_get_io_state, (png_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2432
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2433
PNG_EXPORTA(200, png_const_bytep, png_get_io_chunk_name,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2434
    (png_structp png_ptr), PNG_DEPRECATED);
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2435
PNG_EXPORT(216, png_uint_32, png_get_io_chunk_type,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2436
    (png_const_structp png_ptr));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2437
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2438
/* The flags returned by png_get_io_state() are the following: */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2439
#  define PNG_IO_NONE        0x0000   /* no I/O at this moment */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2440
#  define PNG_IO_READING     0x0001   /* currently reading */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2441
#  define PNG_IO_WRITING     0x0002   /* currently writing */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2442
#  define PNG_IO_SIGNATURE   0x0010   /* currently at the file signature */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2443
#  define PNG_IO_CHUNK_HDR   0x0020   /* currently at the chunk header */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2444
#  define PNG_IO_CHUNK_DATA  0x0040   /* currently at the chunk data */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2445
#  define PNG_IO_CHUNK_CRC   0x0080   /* currently at the chunk crc */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2446
#  define PNG_IO_MASK_OP     0x000f   /* current operation: reading/writing */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2447
#  define PNG_IO_MASK_LOC    0x00f0   /* current location: sig/hdr/data/crc */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2448
#endif /* ?PNG_IO_STATE_SUPPORTED */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2449
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2450
/* Interlace support.  The following macros are always defined so that if
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2451
 * libpng interlace handling is turned off the macros may be used to handle
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2452
 * interlaced images within the application.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2453
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2454
#define PNG_INTERLACE_ADAM7_PASSES 7
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2455
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2456
/* Two macros to return the first row and first column of the original,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2457
 * full, image which appears in a given pass.  'pass' is in the range 0
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2458
 * to 6 and the result is in the range 0 to 7.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2459
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2460
#define PNG_PASS_START_ROW(pass) (((1U&~(pass))<<(3-((pass)>>1)))&7)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2461
#define PNG_PASS_START_COL(pass) (((1U& (pass))<<(3-(((pass)+1)>>1)))&7)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2463
/* Two macros to help evaluate the number of rows or columns in each
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2464
 * pass.  This is expressed as a shift - effectively log2 of the number or
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2465
 * rows or columns in each 8x8 tile of the original image.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2466
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2467
#define PNG_PASS_ROW_SHIFT(pass) ((pass)>2?(8-(pass))>>1:3)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2468
#define PNG_PASS_COL_SHIFT(pass) ((pass)>1?(7-(pass))>>1:3)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2469
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2470
/* Hence two macros to determine the number of rows or columns in a given
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2471
 * pass of an image given its height or width.  In fact these macros may
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2472
 * return non-zero even though the sub-image is empty, because the other
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2473
 * dimension may be empty for a small image.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2474
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2475
#define PNG_PASS_ROWS(height, pass) (((height)+(((1<<PNG_PASS_ROW_SHIFT(pass))\
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2476
   -1)-PNG_PASS_START_ROW(pass)))>>PNG_PASS_ROW_SHIFT(pass))
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2477
#define PNG_PASS_COLS(width, pass) (((width)+(((1<<PNG_PASS_COL_SHIFT(pass))\
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2478
   -1)-PNG_PASS_START_COL(pass)))>>PNG_PASS_COL_SHIFT(pass))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2480
/* For the reader row callbacks (both progressive and sequential) it is
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2481
 * necessary to find the row in the output image given a row in an interlaced
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2482
 * image, so two more macros:
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2483
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2484
#define PNG_ROW_FROM_PASS_ROW(yIn, pass) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2485
   (((yIn)<<PNG_PASS_ROW_SHIFT(pass))+PNG_PASS_START_ROW(pass))
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2486
#define PNG_COL_FROM_PASS_COL(xIn, pass) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2487
   (((xIn)<<PNG_PASS_COL_SHIFT(pass))+PNG_PASS_START_COL(pass))
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2488
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2489
/* Two macros which return a boolean (0 or 1) saying whether the given row
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2490
 * or column is in a particular pass.  These use a common utility macro that
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2491
 * returns a mask for a given pass - the offset 'off' selects the row or
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2492
 * column version.  The mask has the appropriate bit set for each column in
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2493
 * the tile.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2494
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2495
#define PNG_PASS_MASK(pass,off) ( \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2496
   ((0x110145AFU>>(((7-(off))-(pass))<<2)) & 0xFU) | \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2497
   ((0x01145AF0U>>(((7-(off))-(pass))<<2)) & 0xF0U))
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2498
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2499
#define PNG_ROW_IN_INTERLACE_PASS(y, pass) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2500
   ((PNG_PASS_MASK(pass,0) >> ((y)&7)) & 1)
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2501
#define PNG_COL_IN_INTERLACE_PASS(x, pass) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2502
   ((PNG_PASS_MASK(pass,1) >> ((x)&7)) & 1)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
#ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
/* With these routines we avoid an integer divide, which will be slower on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
 * most machines.  However, it does take more operations than the corresponding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
 * divide method, so it may be slower on a few RISC systems.  There are two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
 * shifts (by 8 or 16 bits) and an addition, versus a single integer divide.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
 * Note that the rounding factors are NOT supposed to be the same!  128 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
 * 32768 are correct for the NODIV code; 127 and 32767 are correct for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
 * standard method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
 * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2517
 /* fg and bg should be in `gamma 1.0' space; alpha is the opacity */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2519
#  define png_composite(composite, fg, alpha, bg)         \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2520
     { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2521
           * (png_uint_16)(alpha)                         \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2522
           + (png_uint_16)(bg)*(png_uint_16)(255          \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2523
           - (png_uint_16)(alpha)) + (png_uint_16)128);   \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
       (composite) = (png_byte)((temp + (temp >> 8)) >> 8); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2526
#  define png_composite_16(composite, fg, alpha, bg)       \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2527
     { png_uint_32 temp = (png_uint_32)((png_uint_32)(fg)  \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2528
           * (png_uint_32)(alpha)                          \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2529
           + (png_uint_32)(bg)*(png_uint_32)(65535L        \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2530
           - (png_uint_32)(alpha)) + (png_uint_32)32768L); \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
       (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2533
#else  /* Standard method using integer division */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2535
#  define png_composite(composite, fg, alpha, bg)                          \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2536
     (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) +  \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2537
     (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) +       \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2538
     (png_uint_16)127) / 255)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
#  define png_composite_16(composite, fg, alpha, bg)                         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
     (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2542
     (png_uint_32)(bg)*(png_uint_32)(65535L - (png_uint_32)(alpha)) +        \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2543
     (png_uint_32)32767) / (png_uint_32)65535L)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
#endif /* PNG_READ_COMPOSITE_NODIV_SUPPORTED */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2546
#ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2547
PNG_EXPORT(201, png_uint_32, png_get_uint_32, (png_const_bytep buf));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2548
PNG_EXPORT(202, png_uint_16, png_get_uint_16, (png_const_bytep buf));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2549
PNG_EXPORT(203, png_int_32, png_get_int_32, (png_const_bytep buf));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2550
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2551
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2552
PNG_EXPORT(204, png_uint_32, png_get_uint_31, (png_structp png_ptr,
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2553
    png_const_bytep buf));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
/* No png_get_int_16 -- may be added if there's a real need for it. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2556
/* Place a 32-bit number into a buffer in PNG byte order (big-endian). */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2557
#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2558
PNG_EXPORT(205, void, png_save_uint_32, (png_bytep buf, png_uint_32 i));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2559
#endif
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2560
#ifdef PNG_SAVE_INT_32_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2561
PNG_EXPORT(206, void, png_save_int_32, (png_bytep buf, png_int_32 i));
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2562
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
/* Place a 16-bit number into a buffer in PNG byte order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
 * The parameter is declared unsigned int, not png_uint_16,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
 * just to avoid potential problems on pre-ANSI C compilers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2568
#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2569
PNG_EXPORT(207, void, png_save_uint_16, (png_bytep buf, unsigned int i));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
/* No png_save_int_16 -- may be added if there's a real need for it. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2573
#ifdef PNG_USE_READ_MACROS
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2574
/* Inline macros to do direct reads of bytes from the input buffer.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2575
 * The png_get_int_32() routine assumes we are using two's complement
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2576
 * format for negative values, which is almost certainly true.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
 */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2578
#  define png_get_uint_32(buf) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2579
     (((png_uint_32)(*(buf)) << 24) + \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2580
      ((png_uint_32)(*((buf) + 1)) << 16) + \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2581
      ((png_uint_32)(*((buf) + 2)) << 8) + \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2582
      ((png_uint_32)(*((buf) + 3))))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2584
   /* From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2585
    * function) incorrectly returned a value of type png_uint_32.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2586
    */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2587
#  define png_get_uint_16(buf) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2588
     ((png_uint_16) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2589
      (((unsigned int)(*(buf)) << 8) + \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2590
       ((unsigned int)(*((buf) + 1)))))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2592
#  define png_get_int_32(buf) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2593
     ((png_int_32)((*(buf) & 0x80) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2594
      ? -((png_int_32)((png_get_uint_32(buf) ^ 0xffffffffL) + 1)) \
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2595
      : (png_int_32)png_get_uint_32(buf)))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2598
/* Maintainer: Put new public prototypes here ^, in libpng.3, and project
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2599
 * defs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2602
/* The last ordinal number (this is the *last* one already used; the next
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2603
 * one to use is one more than this.)  Maintainer, remember to add an entry to
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2604
 * scripts/symbols.def as well.
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2605
 */
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2606
#ifdef PNG_EXPORT_LAST_ORDINAL
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2607
  PNG_EXPORT_LAST_ORDINAL(229);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2612
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
#endif /* PNG_VERSION_INFO_ONLY */
10576
db3409425573 7088287: libpng need to be updated.
bae
parents: 5506
diff changeset
  2615
/* Do not put anything past this line */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
#endif /* PNG_H */