]> git.sesse.net Git - casparcg/blob - server/utils/PixmapData.h
1.8.1:
[casparcg] / server / utils / PixmapData.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #ifndef __IMAGEDATA_H__\r
22 #define __IMAGEDATA_H__\r
23 \r
24 #include <memory>\r
25 \r
26 #if _MSC_VER > 1000\r
27 #pragma once\r
28 #endif // _MSC_VER > 1000\r
29 \r
30 namespace caspar {\r
31 namespace utils {\r
32 \r
33 class PixmapData\r
34 {\r
35         PixmapData(const PixmapData&);\r
36         PixmapData& operator=(const PixmapData&);\r
37 \r
38 public:\r
39         PixmapData() : height(0), width(0), bpp(0), pData_(0) \r
40         {}\r
41         PixmapData(int w, int h, int b) : width(w), height(h), bpp(b), pData_(new unsigned char[w*h*b])\r
42         {}\r
43 \r
44         ~PixmapData() {\r
45                 Clear();\r
46         }\r
47 \r
48         void Set(int w, int h, int b) {\r
49                 Clear();\r
50                 width = w;\r
51                 height = h;\r
52                 bpp = b;\r
53                 pData_ = new unsigned char[w*h*b];\r
54         }\r
55 \r
56         void Clear() {\r
57                 height = 0;\r
58                 width = 0;\r
59                 bpp = 0;\r
60 \r
61                 if(pData_ != 0)\r
62                 {\r
63                         delete[] pData_;\r
64                         pData_ = 0;\r
65                 }\r
66         }\r
67 \r
68         unsigned char* GetDataPtr() {\r
69                 return pData_;\r
70         }\r
71 \r
72         int height;\r
73         int width;\r
74         int bpp;\r
75 \r
76 private:\r
77         unsigned char *pData_;\r
78 };\r
79 \r
80 typedef std::tr1::shared_ptr<PixmapData> PixmapDataPtr;\r
81 \r
82 }       //namespace utils\r
83 }       //namespace caspar\r
84 \r
85 #endif //__IMAGEDATA_H__\r