]> git.cworth.org Git - apitrace/blob - image_pnm.cpp
Optimize Image::writePNM.
[apitrace] / image_pnm.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * Copyright 2008-2010 VMware, Inc.
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  *
25  **************************************************************************/
26
27
28 #include <assert.h>
29 #include <string.h>
30
31 #include "image.hpp"
32
33
34 namespace Image {
35
36 /**
37  * http://en.wikipedia.org/wiki/Netpbm_format
38  * http://netpbm.sourceforge.net/doc/ppm.html
39  */
40 void
41 Image::writePNM(std::ostream &os, const char *comment) const {
42     assert(channels == 1 || channels >= 3);
43
44     os << (channels == 1 ? "P5" : "P6") << "\n";
45     if (comment) {
46         os << "#" << comment << "\n";
47     }
48     os << width << " " << height << "\n";
49     os << "255" << "\n";
50
51     const unsigned char *row;
52
53     if (channels == 1 || channels == 3) {
54         for (row = start(); row != end(); row += stride()) {
55             os.write((const char *)row, width*channels);
56         }
57     } else {
58         unsigned char *pixels = new unsigned char[width*3];
59         if (channels == 4) {
60             for (row = start(); row != end(); row += stride()) {
61                 for (unsigned x = 0; x < width; ++x) {
62                     pixels[x*3 + 0] = row[x*4 + 0];
63                     pixels[x*3 + 1] = row[x*4 + 1];
64                     pixels[x*3 + 2] = row[x*4 + 2];
65                 }
66                 os.write((const char *)pixels, width*3);
67             }
68         } else if (channels == 2) {
69             for (row = start(); row != end(); row += stride()) {
70                 for (unsigned x = 0; x < width; ++x) {
71                     pixels[x*3 + 0] = row[x*2 + 0];
72                     pixels[x*3 + 1] = row[x*2 + 1];
73                     pixels[x*3 + 2] = 0;
74                 }
75                 os.write((const char *)pixels, width*3);
76             }
77         } else {
78             assert(0);
79         }
80         delete [] pixels;
81     }
82 }
83
84
85 } /* namespace Image */