]> git.sesse.net Git - casparcg/blob - modules/image/consumer/image_consumer.cpp
fixed problem with wrong alpha in thumbnails.
[casparcg] / modules / image / consumer / image_consumer.cpp
1 /*\r
2 * Copyright 2013 Sveriges Television AB http://casparcg.com/\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\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 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #include "image_consumer.h"\r
23 \r
24 #include <common/exception/exceptions.h>\r
25 #include <common/env.h>\r
26 #include <common/log/log.h>\r
27 #include <common/utility/string.h>\r
28 #include <common/concurrency/future_util.h>\r
29 \r
30 #include <core/parameters/parameters.h>\r
31 #include <core/consumer/frame_consumer.h>\r
32 #include <core/video_format.h>\r
33 #include <core/mixer/read_frame.h>\r
34 \r
35 #include <boost/date_time/posix_time/posix_time.hpp>\r
36 #include <boost/thread.hpp>\r
37 \r
38 #include <FreeImage.h>\r
39 #include <vector>\r
40 #include <algorithm>\r
41 \r
42 #include "../util/image_view.h"\r
43 \r
44 namespace caspar { namespace image {\r
45 \r
46 void write_cropped_png(\r
47                 const safe_ptr<core::read_frame>& frame,\r
48                 const core::video_format_desc& format_desc,\r
49                 const boost::filesystem::wpath& output_file,\r
50                 int width,\r
51                 int height)\r
52 {\r
53         auto bitmap = std::shared_ptr<FIBITMAP>(FreeImage_Allocate(width, height, 32), FreeImage_Unload);\r
54         image_view<bgra_pixel> destination_view(FreeImage_GetBits(bitmap.get()), width, height);\r
55         image_view<bgra_pixel> complete_frame(const_cast<uint8_t*>(frame->image_data().begin()), format_desc.width, format_desc.height);\r
56         auto thumbnail_view = complete_frame.subview(0, 0, width, height);\r
57 \r
58         std::copy(thumbnail_view.begin(), thumbnail_view.end(), destination_view.begin());\r
59         FreeImage_FlipVertical(bitmap.get());\r
60         FreeImage_SaveU(FIF_PNG, bitmap.get(), output_file.string().c_str(), 0);\r
61 }\r
62 \r
63 struct image_consumer : public core::frame_consumer\r
64 {\r
65         core::video_format_desc format_desc_;\r
66         std::wstring                    filename_;\r
67 public:\r
68 \r
69         // frame_consumer\r
70 \r
71         image_consumer(const std::wstring& filename)\r
72                 : filename_(filename)\r
73         {\r
74         }\r
75 \r
76         virtual void initialize(const core::video_format_desc& format_desc, int) override\r
77         {\r
78                 format_desc_ = format_desc;\r
79         }\r
80 \r
81         virtual int64_t presentation_frame_age_millis() const override\r
82         {\r
83                 return 0;\r
84         }\r
85         \r
86         virtual boost::unique_future<bool> send(const safe_ptr<core::read_frame>& frame) override\r
87         {                               \r
88                 auto format_desc = format_desc_;\r
89                 auto filename = filename_;\r
90 \r
91                 boost::thread async([format_desc, frame, filename]\r
92                 {\r
93                         try\r
94                         {\r
95                                 auto filename2 = filename;\r
96 \r
97                                 if (filename2.empty())\r
98                                         filename2 = env::media_folder() + widen(boost::posix_time::to_iso_string(boost::posix_time::second_clock::local_time())) + L".png";\r
99                                 else\r
100                                         filename2 = env::media_folder() + filename2 + L".png";\r
101 \r
102                                 auto bitmap = std::shared_ptr<FIBITMAP>(FreeImage_Allocate(format_desc.width, format_desc.height, 32), FreeImage_Unload);\r
103                                 memcpy(FreeImage_GetBits(bitmap.get()), frame->image_data().begin(), frame->image_size());\r
104                                 FreeImage_FlipVertical(bitmap.get());\r
105                                 FreeImage_SaveU(FIF_PNG, bitmap.get(), filename2.c_str(), 0);\r
106                         }\r
107                         catch(...)\r
108                         {\r
109                                 CASPAR_LOG_CURRENT_EXCEPTION();\r
110                         }\r
111                 });\r
112                 async.detach();\r
113 \r
114                 return wrap_as_future(false);\r
115         }\r
116 \r
117         virtual std::wstring print() const override\r
118         {\r
119                 return L"image[]";\r
120         }\r
121 \r
122         virtual boost::property_tree::wptree info() const override\r
123         {\r
124                 boost::property_tree::wptree info;\r
125                 info.add(L"type", L"image-consumer");\r
126                 return info;\r
127         }\r
128 \r
129         virtual size_t buffer_depth() const override\r
130         {\r
131                 return 0;\r
132         }\r
133 \r
134         virtual int index() const override\r
135         {\r
136                 return 100;\r
137         }\r
138 };\r
139 \r
140 safe_ptr<core::frame_consumer> create_consumer(const core::parameters& params)\r
141 {\r
142         if(params.size() < 1 || params.at(0) != L"IMAGE")\r
143                 return core::frame_consumer::empty();\r
144 \r
145         std::wstring filename;\r
146 \r
147         if (params.size() > 1)\r
148                 filename = params.at(1);\r
149 \r
150         return make_safe<image_consumer>(filename);\r
151 }\r
152 \r
153 }}\r