Use PNG for thumbs so that we get alpha blending in wxwidgets.
[dcpomatic.git] / src / lib / imagemagick_encoder.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/imagemagick_encoder.cc
21  *  @brief An encoder that writes image files using ImageMagick (and does nothing with audio).
22  */
23
24 #include <stdexcept>
25 #include <vector>
26 #include <sstream>
27 #include <iomanip>
28 #include <iostream>
29 #include <fstream>
30 #include <boost/filesystem.hpp>
31 #include <Magick++/Image.h>
32 #include "imagemagick_encoder.h"
33 #include "film.h"
34 #include "film_state.h"
35 #include "options.h"
36 #include "exceptions.h"
37 #include "image.h"
38 #include "subtitle.h"
39
40 using namespace std;
41 using namespace boost;
42
43 /** @param s FilmState of the film that we are encoding.
44  *  @param o Options.
45  *  @param l Log.
46  */
47 ImageMagickEncoder::ImageMagickEncoder (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Log* l)
48         : Encoder (s, o, l)
49 {
50         
51 }
52
53 void
54 ImageMagickEncoder::process_video (shared_ptr<Image> image, int frame, shared_ptr<Subtitle> sub)
55 {
56         shared_ptr<Image> scaled = image->scale_and_convert_to_rgb (_opt->out_size, _opt->padding, _fs->scaler);
57
58         string tmp_file = _opt->frame_out_path (frame, true);
59         Magick::Image thumb (_opt->out_size.width, _opt->out_size.height, "RGB", MagickCore::CharPixel, scaled->data()[0]);
60         thumb.magick ("PNG");
61         thumb.write (tmp_file);
62         filesystem::rename (tmp_file, _opt->frame_out_path (frame, false));
63
64         if (sub) {
65                 float const x_scale = float (_opt->out_size.width) / _fs->size.width;
66                 float const y_scale = float (_opt->out_size.height) / _fs->size.height;
67
68                 string tmp_metadata_file = _opt->frame_out_path (frame, false, ".sub");
69                 ofstream metadata (tmp_metadata_file.c_str ());
70                 
71                 list<shared_ptr<SubtitleImage> > images = sub->images ();
72                 int n = 0;
73                 for (list<shared_ptr<SubtitleImage> >::iterator i = images.begin(); i != images.end(); ++i) {
74                         stringstream ext;
75                         ext << ".sub." << n << ".png";
76
77                         Size new_size = (*i)->image()->size ();
78                         new_size.width *= x_scale;
79                         new_size.height *= y_scale;
80                         shared_ptr<Image> scaled = (*i)->image()->scale (new_size, _fs->scaler);
81                         
82                         string tmp_sub_file = _opt->frame_out_path (frame, true, ext.str ());
83                         Magick::Image sub_thumb (scaled->size().width, scaled->size().height, "RGBA", MagickCore::CharPixel, scaled->data()[0]);
84                         sub_thumb.magick ("PNG");
85                         sub_thumb.write (tmp_sub_file);
86                         filesystem::rename (tmp_sub_file, _opt->frame_out_path (frame, false, ext.str ()));
87
88                         metadata << "image " << n << "\n"
89                                  << "x " << (*i)->position().x << "\n"
90                                  << "y " << (*i)->position().y << "\n";
91
92                         metadata.close ();
93                         filesystem::rename (tmp_metadata_file, _opt->frame_out_path (frame, false, ".sub"));
94                 }
95
96         }
97         
98         frame_done (frame);
99 }