]> git.sesse.net Git - casparcg/blob - modules/psd/doc.h
psd::producer_factory
[casparcg] / modules / psd / doc.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Niklas P Andersson, niklas.p.andersson@svt.se
20 */
21
22 #ifndef _PSDDOC_H__
23 #define _PSDDOC_H__
24
25 #pragma once
26
27 #include <string>
28 #include <vector>
29 #include "util\bigendian_file_input_stream.h"
30
31 #include "misc.h"
32 #include "layer.h"
33
34 namespace caspar { namespace psd {
35
36 class psd_document
37 {
38 public:
39         psd_document();
40
41         std::vector<layer_ptr>& layers()
42         {
43                 return layers_;
44         }
45         unsigned long width()
46         {
47                 return width_;
48         }
49         unsigned long height()
50         {
51                 return height_;
52         }
53
54         bool parse(const std::wstring& s);
55
56 private:
57         void read_header();
58         void read_color_mode();
59         void read_image_resources();
60         void read_layers();
61
62         std::wstring                            filename_;
63         BEFileInputStream                       input_;
64
65         std::vector<layer_ptr>          layers_;
66
67         unsigned short                          channels_;
68         unsigned long                           width_;
69         unsigned long                           height_;
70         unsigned short                          depth_;
71         color_mode                                      color_mode_;
72 };
73
74 }       //namespace psd
75 }       //namespace caspar
76
77 #endif  //_PSDDOC_H__