png++  0.2.9
types.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2007,2008 Alex Shulgin
3  *
4  * This file is part of png++ the C++ wrapper for libpng. PNG++ is free
5  * software; the exact copying conditions are as follows:
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution.
16  *
17  * 3. The name of the author may not be used to endorse or promote products
18  * derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
23  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
25  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 #ifndef PNGPP_TYPES_HPP_INCLUDED
32 #define PNGPP_TYPES_HPP_INCLUDED
33 
34 #include <png.h>
35 
36 namespace png
37 {
38 
39  typedef png_byte byte;
40  typedef png_uint_16 uint_16;
41  typedef png_uint_32 uint_32;
42  typedef png_fixed_point fixed_point;
43  typedef png_color_8 color_info;
44  typedef png_color_16 color_info_16;
45 
47  {
49  color_type_gray = PNG_COLOR_TYPE_GRAY,
50  color_type_palette = PNG_COLOR_TYPE_PALETTE,
51  color_type_rgb = PNG_COLOR_TYPE_RGB,
52  color_type_rgb_alpha = PNG_COLOR_TYPE_RGB_ALPHA,
53  color_type_gray_alpha = PNG_COLOR_TYPE_GRAY_ALPHA,
54  color_type_rgba = PNG_COLOR_TYPE_RGBA,
55  color_type_ga = PNG_COLOR_TYPE_GA
56  };
57 
59  {
60  color_mask_palette = PNG_COLOR_MASK_PALETTE,
61  color_mask_color = PNG_COLOR_MASK_COLOR,
63  color_mask_alpha = PNG_COLOR_MASK_ALPHA
64  };
65 
67  {
68  filler_before = PNG_FILLER_BEFORE,
69  filler_after = PNG_FILLER_AFTER
70  };
71 
73  {
77  };
78 
80  {
81  interlace_none = PNG_INTERLACE_NONE,
82  interlace_adam7 = PNG_INTERLACE_ADAM7
83  };
84 
86  {
87  compression_type_base = PNG_COMPRESSION_TYPE_BASE,
88  compression_type_default = PNG_COMPRESSION_TYPE_DEFAULT
89  };
90 
92  {
93  filter_type_base = PNG_FILTER_TYPE_BASE,
94  intrapixel_differencing = PNG_INTRAPIXEL_DIFFERENCING,
95  filter_type_default = PNG_FILTER_TYPE_DEFAULT
96  };
97 
98  enum chunk
99  {
100  chunk_gAMA = PNG_INFO_gAMA,
101  chunk_sBIT = PNG_INFO_sBIT,
102  chunk_cHRM = PNG_INFO_cHRM,
103  chunk_PLTE = PNG_INFO_PLTE,
104  chunk_tRNS = PNG_INFO_tRNS,
105  chunk_bKGD = PNG_INFO_bKGD,
106  chunk_hIST = PNG_INFO_hIST,
107  chunk_pHYs = PNG_INFO_pHYs,
108  chunk_oFFs = PNG_INFO_oFFs,
109  chunk_tIME = PNG_INFO_tIME,
110  chunk_pCAL = PNG_INFO_pCAL,
111  chunk_sRGB = PNG_INFO_sRGB,
112  chunk_iCCP = PNG_INFO_iCCP,
113  chunk_sPLT = PNG_INFO_sPLT,
114  chunk_sCAL = PNG_INFO_sCAL,
115  chunk_IDAT = PNG_INFO_IDAT
116  };
117 
118 } // namespace png
119 
120 #endif // PNGPP_TYPES_HPP_INCLUDED
color_mask
Definition: types.hpp:58
Definition: types.hpp:110
Definition: types.hpp:114
png_uint_16 uint_16
Definition: types.hpp:40
Definition: types.hpp:106
Definition: types.hpp:75
Definition: types.hpp:51
filler_type
Definition: types.hpp:66
interlace_type
Definition: types.hpp:79
Definition: types.hpp:104
Definition: types.hpp:103
Definition: types.hpp:62
Definition: types.hpp:55
filter_type
Definition: types.hpp:91
Definition: types.hpp:111
Definition: types.hpp:105
Definition: types.hpp:100
Definition: types.hpp:63
png_color_8 color_info
Definition: types.hpp:43
Definition: types.hpp:109
Definition: types.hpp:115
color_type
Definition: types.hpp:46
Definition: types.hpp:101
Definition: types.hpp:68
Definition: types.hpp:82
Definition: types.hpp:102
compression_type
Definition: types.hpp:85
png_uint_32 uint_32
Definition: types.hpp:41
png_fixed_point fixed_point
Definition: types.hpp:42
Definition: types.hpp:95
png_byte byte
Definition: types.hpp:39
Definition: types.hpp:113
chunk
Definition: types.hpp:98
Definition: types.hpp:52
Definition: types.hpp:81
Definition: types.hpp:69
Definition: types.hpp:60
Definition: types.hpp:88
Definition: types.hpp:93
Definition: types.hpp:87
Definition: types.hpp:108
Definition: types.hpp:74
Definition: types.hpp:49
Definition: types.hpp:54
png_color_16 color_info_16
Definition: types.hpp:44
Definition: types.hpp:76
Definition: types.hpp:53
Definition: types.hpp:61
Definition: types.hpp:94
Definition: types.hpp:112
Definition: types.hpp:48
Definition: color.hpp:36
Definition: types.hpp:50
Definition: types.hpp:107
rgb_to_gray_error_action
Definition: types.hpp:72