Output multiple numbered image files when necessary, rather than writing the same...
[synfig.git] / synfig-core / trunk / src / modules / mod_imagemagick / trgt_imagemagick.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file trgt_imagemagick.cpp
3 **      \brief ppm Target Module
4 **
5 **      \legal
6 ** $Id$
7 **
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 **
21 ** === N O T E S ===========================================================
22 **
23 ** ========================================================================= */
24
25 /* === H E A D E R S ======================================================= */
26
27 #define SYNFIG_TARGET
28
29 #ifdef USING_PCH
30 #       include "pch.h"
31 #else
32 #ifdef HAVE_CONFIG_H
33 #       include <config.h>
34 #endif
35
36 #include <ETL/stringf>
37 #include "trgt_imagemagick.h"
38 #include <stdio.h>
39 #include <algorithm>
40 #include <functional>
41 #include <ETL/clock>
42 #include <ETL/misc>
43
44 #endif
45
46 /* === M A C R O S ========================================================= */
47
48 using namespace synfig;
49 using namespace std;
50 using namespace etl;
51
52 /* === G L O B A L S ======================================================= */
53
54 SYNFIG_TARGET_INIT(imagemagick_trgt);
55 SYNFIG_TARGET_SET_NAME(imagemagick_trgt,"imagemagick");
56 SYNFIG_TARGET_SET_EXT(imagemagick_trgt,"miff");
57 SYNFIG_TARGET_SET_VERSION(imagemagick_trgt,"0.1");
58 SYNFIG_TARGET_SET_CVS_ID(imagemagick_trgt,"$Id$");
59
60 /* === M E T H O D S ======================================================= */
61
62 imagemagick_trgt::imagemagick_trgt(const char *Filename)
63 {
64         file=NULL;
65         filename=Filename;
66         multi_image=false;
67         buffer=NULL;
68         color_buffer=0;
69 }
70
71 imagemagick_trgt::~imagemagick_trgt()
72 {
73         if(file)
74                 pclose(file);
75         file=NULL;
76         delete [] buffer;
77         delete [] color_buffer;
78 }
79
80 bool
81 imagemagick_trgt::set_rend_desc(RendDesc *given_desc)
82 {
83         if(filename_extension(filename) == ".xpm")
84                 pf=PF_RGB;
85         else
86                 pf=PF_RGB|PF_A;
87
88         desc=*given_desc;
89         return true;
90 }
91
92 bool
93 imagemagick_trgt::init()
94 {
95         imagecount=desc.get_frame_start();
96         if(desc.get_frame_end()-desc.get_frame_start()>0)
97                 multi_image=true;
98
99         delete [] buffer;
100         buffer=new unsigned char[channels(pf)*desc.get_w()];
101         delete [] color_buffer;
102         color_buffer=new Color[desc.get_w()];
103         return true;
104 }
105
106 void
107 imagemagick_trgt::end_frame()
108 {
109         if(file)
110         {
111                 fputc(0,file);
112                 fflush(file);
113                 pclose(file);
114         }
115         file=NULL;
116         imagecount++;
117 }
118
119 bool
120 imagemagick_trgt::start_frame(synfig::ProgressCallback *cb)
121 {
122         string command;
123         string newfilename;
124
125         if (multi_image)
126                 newfilename = (filename_sans_extension(filename) +
127                                            etl::strprintf(".%04d",imagecount) +
128                                            filename_extension(filename));
129         else
130                 newfilename = filename;
131
132         command=strprintf("convert -depth 8 -size %dx%d rgb%s:-[0] -density %dx%d \"%s\"\n",
133                                           desc.get_w(), desc.get_h(),                                   // size
134                                           ((channels(pf) == 4) ? "a" : ""),                             // rgba or rgb?
135                                           round_to_int(desc.get_x_res()/39.3700787402), // density
136                                           round_to_int(desc.get_y_res()/39.3700787402),
137                                           newfilename.c_str());
138
139         file=popen(command.c_str(),POPEN_BINARY_WRITE_TYPE);
140
141         if(!file)
142         {
143                 const char *msg=_("Unable to open pipe to imagemagick's convert utility");
144                 if(cb)cb->error(N_(msg));
145                 else synfig::error(N_(msg));
146                 return false;
147         }
148
149         //etl::yield();
150
151         return true;
152 }
153
154 Color *
155 imagemagick_trgt::start_scanline(int /*scanline*/)
156 {
157         return color_buffer;
158 }
159
160 bool
161 imagemagick_trgt::end_scanline(void)
162 {
163         if(!file)
164                 return false;
165
166         convert_color_format(buffer, color_buffer, desc.get_w(), pf, gamma());
167
168         if(!fwrite(buffer,channels(pf),desc.get_w(),file))
169                 return false;
170
171         return true;
172 }