]> git.cworth.org Git - apitrace/blob - image/image_bmp.cpp
image: Move helpers to respective modules.
[apitrace] / image / image_bmp.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 <stdint.h>
30
31 #include <fstream>
32
33 #include "image.hpp"
34
35
36 namespace image {
37
38
39 #pragma pack(push,2)
40 struct FileHeader {
41     uint16_t bfType;
42     uint32_t bfSize;
43     uint16_t bfReserved1;
44     uint16_t bfReserved2;
45     uint32_t bfOffBits;
46 };
47 #pragma pack(pop)
48
49 struct InfoHeader {
50     uint32_t biSize;
51     int32_t biWidth;
52     int32_t biHeight;
53     uint16_t biPlanes;
54     uint16_t biBitCount;
55     uint32_t biCompression;
56     uint32_t biSizeImage;
57     int32_t biXPelsPerMeter;
58     int32_t biYPelsPerMeter;
59     uint32_t biClrUsed;
60     uint32_t biClrImportant;
61 };
62
63 struct Pixel {
64     uint8_t rgbBlue;
65     uint8_t rgbGreen;
66     uint8_t rgbRed;
67     uint8_t rgbAlpha;
68 };
69
70
71 bool
72 Image::writeBMP(const char *filename) const {
73     assert(channels == 4);
74
75     struct FileHeader bmfh;
76     struct InfoHeader bmih;
77     unsigned x, y;
78
79     bmfh.bfType = 0x4d42;
80     bmfh.bfSize = 14 + 40 + height*width*4;
81     bmfh.bfReserved1 = 0;
82     bmfh.bfReserved2 = 0;
83     bmfh.bfOffBits = 14 + 40;
84
85     bmih.biSize = 40;
86     bmih.biWidth = width;
87     bmih.biHeight = height;
88     bmih.biPlanes = 1;
89     bmih.biBitCount = 32;
90     bmih.biCompression = 0;
91     bmih.biSizeImage = height*width*4;
92     bmih.biXPelsPerMeter = 0;
93     bmih.biYPelsPerMeter = 0;
94     bmih.biClrUsed = 0;
95     bmih.biClrImportant = 0;
96
97     std::ofstream stream(filename, std::ofstream::binary);
98
99     if (!stream) {
100         return false;
101     }
102
103     stream.write((const char *)&bmfh, 14);
104     stream.write((const char *)&bmih, 40);
105
106     unsigned stride = width*4;
107
108     if (flipped) {
109         for (y = 0; y < height; ++y) {
110             const unsigned char *ptr = pixels + y * stride;
111             for (x = 0; x < width; ++x) {
112                 struct Pixel pixel;
113                 pixel.rgbRed   = ptr[x*4 + 0];
114                 pixel.rgbGreen = ptr[x*4 + 1];
115                 pixel.rgbBlue  = ptr[x*4 + 2];
116                 pixel.rgbAlpha = ptr[x*4 + 3];
117                 stream.write((const char *)&pixel, 4);
118             }
119         }
120     } else {
121         y = height;
122         while (y--) {
123             const unsigned char *ptr = pixels + y * stride;
124             for (x = 0; x < width; ++x) {
125                 struct Pixel pixel;
126                 pixel.rgbRed   = ptr[x*4 + 0];
127                 pixel.rgbGreen = ptr[x*4 + 1];
128                 pixel.rgbBlue  = ptr[x*4 + 2];
129                 pixel.rgbAlpha = ptr[x*4 + 3];
130                 stream.write((const char *)&pixel, 4);
131             }
132         }
133     }
134
135     stream.close();
136
137     return true;
138 }
139
140
141 } /* namespace image */