EMAN2
pngio.h
Go to the documentation of this file.
1/*
2 * Author: Steven Ludtke, 04/10/2003 (sludtke@bcm.edu)
3 * Copyright (c) 2000-2006 Baylor College of Medicine
4 *
5 * This software is issued under a joint BSD/GNU license. You may use the
6 * source code in this file under either license. However, note that the
7 * complete EMAN2 and SPARX software packages have some GPL dependencies,
8 * so you are responsible for compliance with the licenses of these packages
9 * if you opt to use BSD licensing. The warranty disclaimer below holds
10 * in either instance.
11 *
12 * This complete copyright notice must be included in any revised version of the
13 * source code. Additional authorship citations may be added, but existing
14 * author citations must be preserved.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 *
30 * */
31
32#ifndef eman__pngio_h__
33#define eman__pngio_h__ 1
34
35#ifdef USE_PNG
36
37#include <png.h>
38#include "imageio.h"
39
40
41namespace EMAN
42{
46 class PngIO : public ImageIO
47 {
48 public:
49 explicit PngIO(const string & fname, IOMode rw_mode = READ_ONLY);
50 ~PngIO();
51
53 static bool is_valid(const void *first_block);
54
55 private:
56 enum
57 {
58 PNG_BYTES_TO_CHECK = 8
59 };
60
61 enum BitDepthType
62 {
63 PNG_CHAR_DEPTH,
64 PNG_SHORT_DEPTH,
65 PNG_INVALID_DEPTH
66 };
67
68 private:
69 png_structp png_ptr;
70 png_infop info_ptr;
71 png_infop end_info;
72
73 png_uint_32 nx;
74 png_uint_32 ny;
75 BitDepthType depth_type;
76 int number_passes;
77
78 float rendermin;
79 float rendermax;
80 int renderbits;
81 };
82
83}
84
85#endif //USE_PNG
86
87#endif //eman__pngio_h__
#define DEFINE_IMAGEIO_FUNC
DEFINE_IMAGEIO_FUNC declares the functions that needs to be implemented by any subclass of ImageIO.
Definition: imageio.h:361
E2Exception class.
Definition: aligner.h:40