Various DCI naming tweaks and a subtitle bug fix.
[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         shared_ptr<Image> compact (new CompactImage (scaled));
58
59         string tmp_file = _opt->frame_out_path (frame, true);
60         Magick::Image thumb (compact->size().width, compact->size().height, "RGB", MagickCore::CharPixel, compact->data()[0]);
61         thumb.magick ("PNG");
62         thumb.write (tmp_file);
63         filesystem::rename (tmp_file, _opt->frame_out_path (frame, false));
64
65         if (sub) {
66                 float const x_scale = float (_opt->out_size.width) / _fs->size.width;
67                 float const y_scale = float (_opt->out_size.height) / _fs->size.height;
68
69                 string tmp_metadata_file = _opt->frame_out_path (frame, false, ".sub");
70                 ofstream metadata (tmp_metadata_file.c_str ());
71                 
72                 Size new_size = sub->image()->size ();
73                 new_size.width *= x_scale;
74                 new_size.height *= y_scale;
75                 shared_ptr<Image> scaled = sub->image()->scale (new_size, _fs->scaler);
76                 shared_ptr<Image> compact (new CompactImage (scaled));
77                 
78                 string tmp_sub_file = _opt->frame_out_path (frame, true, ".sub.png");
79                 Magick::Image sub_thumb (compact->size().width, compact->size().height, "RGBA", MagickCore::CharPixel, compact->data()[0]);
80                 sub_thumb.magick ("PNG");
81                 sub_thumb.write (tmp_sub_file);
82                 filesystem::rename (tmp_sub_file, _opt->frame_out_path (frame, false, ".sub.png"));
83
84                 metadata << "x " << sub->position().x << "\n"
85                          << "y " << sub->position().y << "\n";
86
87                 metadata.close ();
88                 filesystem::rename (tmp_metadata_file, _opt->frame_out_path (frame, false, ".sub"));
89         }
90         
91         frame_done (frame);
92 }