]> git.sesse.net Git - casparcg/blob - modules/image/producer/image_producer.cpp
2.0.0.2: Added copyright notice to all files.
[casparcg] / modules / image / producer / image_producer.cpp
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 #include "image_producer.h"\r
21 \r
22 #include "../util/image_loader.h"\r
23 \r
24 #include <core/video_format.h>\r
25 \r
26 #include <core/producer/frame/basic_frame.h>\r
27 #include <core/producer/frame/write_frame.h>\r
28 \r
29 #include <common/env.h>\r
30 \r
31 #include <boost/assign.hpp>\r
32 #include <boost/filesystem.hpp>\r
33 \r
34 #include <algorithm>\r
35 \r
36 using namespace boost::assign;\r
37 \r
38 namespace caspar {\r
39 \r
40 struct image_producer : public core::frame_producer\r
41 {       \r
42         std::wstring filename_;\r
43         safe_ptr<core::basic_frame> frame_;\r
44         \r
45         explicit image_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filename) \r
46                 : filename_(filename)\r
47                 , frame_(core::basic_frame::empty())    \r
48         {\r
49                 auto bitmap = load_image(filename_);\r
50                 FreeImage_FlipVertical(bitmap.get());\r
51                 auto frame = frame_factory->create_frame(this, FreeImage_GetWidth(bitmap.get()), FreeImage_GetHeight(bitmap.get()));\r
52                 std::copy_n(FreeImage_GetBits(bitmap.get()), frame->image_data().size(), frame->image_data().begin());\r
53                 frame_ = std::move(frame);\r
54         }\r
55         \r
56         virtual safe_ptr<core::basic_frame> receive(){return frame_;}\r
57 \r
58         \r
59         virtual std::wstring print() const\r
60         {\r
61                 return L"image_producer[" + filename_ + L"]";\r
62         }\r
63 };\r
64 \r
65 safe_ptr<core::frame_producer> create_image_producer(const safe_ptr<core::frame_factory>& frame_factory, const std::vector<std::wstring>& params)\r
66 {\r
67         static const std::vector<std::wstring> extensions = list_of(L"png")(L"tga")(L"bmp")(L"jpg")(L"jpeg");\r
68         std::wstring filename = env::media_folder() + L"\\" + params[0];\r
69         \r
70         auto ext = std::find_if(extensions.begin(), extensions.end(), [&](const std::wstring& ex) -> bool\r
71                 {                                       \r
72                         return boost::filesystem::is_regular_file(boost::filesystem::wpath(filename).replace_extension(ex));\r
73                 });\r
74 \r
75         if(ext == extensions.end())\r
76                 return core::frame_producer::empty();\r
77 \r
78         return make_safe<image_producer>(frame_factory, filename + L"." + *ext);\r
79 }\r
80 \r
81 \r
82 }