7478001c5758b89f675a73952b23f8b1983786fc
[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 }
117
118 bool
119 imagemagick_trgt::start_frame(synfig::ProgressCallback *cb)
120 {
121         string command;
122
123         if(channels(pf)==4)
124                 command=strprintf("convert -depth 8 -size %dx%d rgba:-[0] -density %dx%d  \"%s\"\n",desc.get_w(),desc.get_h(),round_to_int(desc.get_x_res()/39.3700787402),round_to_int(desc.get_y_res()/39.3700787402),filename.c_str());
125         else
126                 command=strprintf("convert -depth 8 -size %dx%d rgb:-[0] -density %dx%d \"%s\"\n",desc.get_w(),desc.get_h(),round_to_int(desc.get_x_res()/39.3700787402),round_to_int(desc.get_y_res()/39.3700787402),filename.c_str());
127
128         file=popen(command.c_str(),"wb");
129
130         if(!file)
131         {
132                 const char *msg=_("Unable to open pipe to imagemagick's convert utility");
133                 if(cb)cb->error(N_(msg));
134                 else synfig::error(N_(msg));
135                 return false;
136         }
137
138         //etl::yield();
139
140         return true;
141 }
142
143 Color *
144 imagemagick_trgt::start_scanline(int /*scanline*/)
145 {
146         return color_buffer;
147 }
148
149 bool
150 imagemagick_trgt::end_scanline(void)
151 {
152         if(!file)
153                 return false;
154
155         convert_color_format(buffer, color_buffer, desc.get_w(), pf, gamma());
156
157         if(!fwrite(buffer,channels(pf),desc.get_w(),file))
158                 return false;
159
160         return true;
161 }