]> git.cworth.org Git - apitrace/blob - image.hpp
Silence warnings due to unused variables.
[apitrace] / image.hpp
1 /**************************************************************************
2  *
3  * Copyright 2008-2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 /*
27  * Image I/O.
28  */
29
30 #ifndef _IMAGE_HPP_
31 #define _IMAGE_HPP_
32
33
34 #include <fstream>
35
36
37 namespace Image {
38
39
40 class Image {
41 public:
42     unsigned width;
43     unsigned height;
44
45     // Flipped vertically or not
46     bool flipped;
47
48     // Pixels in RGBA format
49     unsigned char *pixels;
50
51     inline Image(unsigned w, unsigned h, bool f = false) : 
52         width(w),
53         height(h),
54         flipped(f),
55         pixels(new unsigned char[h*w*4])
56     {}
57
58     inline ~Image() {
59         delete [] pixels;
60     }
61
62     inline unsigned char *start(void) {
63         return flipped ? pixels + (height - 1)*width*4 : pixels;
64     }
65
66     inline unsigned char *end(void) {
67         return flipped ? pixels - width*4 : pixels + height*width*4;
68     }
69
70     inline signed stride(void) const {
71         return flipped ? -width*4 : width*4;
72     }
73
74     bool writeBMP(const char *filename) const;
75     bool writePNG(const char *filename) const;
76
77     double compare(Image &ref);
78 };
79
80 bool writePixelsToBuffer(unsigned char *pixels,
81                          unsigned w, unsigned h, unsigned numChannels,
82                          bool flipped,
83                          char **buffer,
84                          int *size);
85
86 Image *
87 readPNG(const char *filename);
88
89
90 } /* namespace Image */
91
92
93 #endif /* _IMAGE_HPP_ */