1 /* === S Y N F I G ========================================================= */
2 /*! \file trgt_magickpp.cpp
3 ** \brief Magick++ Target Module
8 ** Copyright (c) 2007, 2008 Chris Moore
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.
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.
21 ** === N O T E S ===========================================================
23 ** ========================================================================= */
25 /* === H E A D E R S ======================================================= */
37 #include "trgt_magickpp.h"
41 /* === M A C R O S ========================================================= */
43 using namespace synfig;
47 /* === G L O B A L S ======================================================= */
49 SYNFIG_TARGET_INIT(magickpp_trgt);
50 SYNFIG_TARGET_SET_NAME(magickpp_trgt,"magick++");
51 SYNFIG_TARGET_SET_EXT(magickpp_trgt,"gif");
52 SYNFIG_TARGET_SET_VERSION(magickpp_trgt,"0.1");
53 SYNFIG_TARGET_SET_CVS_ID(magickpp_trgt,"$Id$");
55 /* === M E T H O D S ======================================================= */
57 template <class Container>
58 MagickLib::Image* copy_image_list(Container& container)
60 typedef typename Container::iterator Iter;
61 MagickLib::Image* previous = 0;
62 MagickLib::Image* first = NULL;
63 MagickLib::ExceptionInfo exceptionInfo;
64 MagickLib::GetExceptionInfo(&exceptionInfo);
65 for (Iter iter = container.begin(); iter != container.end(); ++iter)
67 MagickLib::Image* current;
71 current = CloneImage(iter->image(), 0, 0, Magick::MagickTrue, &exceptionInfo);
73 if (!first) first = current;
75 current->previous = previous;
78 if ( previous != 0) previous->next = current;
81 catch(Magick::Warning warning) {
82 synfig::warning("exception '%s'", warning.what());
89 magickpp_trgt::~magickpp_trgt()
91 MagickLib::ExceptionInfo exceptionInfo;
92 MagickLib::GetExceptionInfo(&exceptionInfo);
96 bool multiple_images = images.size() != 1;
97 bool can_adjoin = false;
101 // check whether this file format supports multiple-image files
102 Magick::Image image(*(images.begin()));
103 image.fileName(filename);
106 SetImageInfo(image.imageInfo(),Magick::MagickTrue,&exceptionInfo);
107 can_adjoin = image.adjoin();
109 catch(Magick::Warning warning) {
110 synfig::warning("exception '%s'", warning.what());
114 // the file type is now in image.imageInfo()->magick and
115 // image.adjoin() tells us whether we can write to a single file
118 synfig::info("joining images");
119 unsigned int delay = round_to_int(100.0 / desc.get_frame_rate());
120 for_each(images.begin(), images.end(), Magick::animationDelayImage(delay));
122 // optimize the images (only write the pixels that change from frame to frame
123 #ifdef HAVE_MAGICK_OPTIMIZE
124 // make a completely new image list
125 // this is required because:
126 // RemoveDuplicateLayers wants a linked list of images, and removes some of them
127 // when it removes an image, it invalidates it using DeleteImageFromList, but we still have it in our container
128 // when we destroy our container, the image is re-freed, failing an assertion
130 synfig::info("copying image list");
131 MagickLib::Image *image_list = copy_image_list(images);
133 synfig::info("clearing old image list");
136 if (!getenv("SYNFIG_DISABLE_REMOVE_DUPS"))
138 synfig::info("removing duplicate frames");
141 RemoveDuplicateLayers(&image_list, &exceptionInfo);
143 catch(Magick::Warning warning) {
144 synfig::warning("exception '%s'", warning.what());
148 if (!getenv("SYNFIG_DISABLE_OPTIMIZE"))
150 synfig::info("optimizing layers");
153 image_list = OptimizeImageLayers(image_list,&exceptionInfo);
155 catch(Magick::Warning warning) {
156 synfig::warning("exception '%s'", warning.what());
160 if (!getenv("SYNFIG_DISABLE_OPTIMIZE_TRANS"))
162 synfig::info("optimizing layer transparency");
165 OptimizeImageTransparency(image_list,&exceptionInfo);
167 catch(Magick::Warning warning) {
168 synfig::warning("exception '%s'", warning.what());
172 synfig::info("recreating image list");
173 insertImages(&images, image_list);
175 synfig::info("not optimizing images");
176 // DeconstructImages is available in ImageMagic 6.2.* but it doesn't take
177 // the 'dispose' method into account, so for frames with transparency where
178 // nothing is moving, we end up with objects disappearing when they shouldn't
180 // linkImages(images.begin(), images.end());
181 // MagickLib::Image* new_images = DeconstructImages(images.begin()->image(),&exceptionInfo);
182 // unlinkImages(images.begin(), images.end());
184 // insertImages(&images, new_images);
187 else if (multiple_images)
189 // if we can't write multiple images to a file of this type,
190 // include '%04d' in the filename, so the files will be numbered
191 // with a fixed width, '0'-padded number
192 synfig::info("can't join images of this type - numbering instead");
193 filename = (filename_sans_extension(filename) + ".%04d" + filename_extension(filename));
196 synfig::info("writing %d image%s to %s", images.size(), images.size() == 1 ? "" : "s", filename.c_str());
199 Magick::writeImages(images.begin(), images.end(), filename);
201 catch(Magick::Warning warning) {
202 synfig::warning("exception '%s'", warning.what());
205 catch(Magick::Warning warning) {
206 synfig::warning("exception '%s'", warning.what());
208 catch(Magick::Error error) {
209 synfig::error("exception '%s'", error.what());
212 synfig::error("unknown exception");
215 if (buffer1 != NULL) delete [] buffer1;
216 if (buffer2 != NULL) delete [] buffer2;
217 if (color_buffer != NULL) delete [] color_buffer;
221 magickpp_trgt::set_rend_desc(RendDesc *given_desc)
228 magickpp_trgt::init()
230 width = desc.get_w();
231 height = desc.get_h();
233 start_pointer = NULL;
235 buffer1 = new unsigned char[4*width*height];
239 buffer2 = new unsigned char[4*width*height];
246 color_buffer = new Color[width];
247 if (color_buffer == NULL)
258 magickpp_trgt::end_frame()
260 Magick::Image image(width, height, "RGBA", Magick::CharPixel, start_pointer);
261 if (transparent && images.begin() != images.end())
262 (images.end()-1)->gifDisposeMethod(Magick::BackgroundDispose);
263 images.push_back(image);
267 magickpp_trgt::start_frame(synfig::ProgressCallback *callback __attribute__ ((unused)))
269 previous_buffer_pointer = start_pointer;
271 if (start_pointer == buffer1)
272 start_pointer = buffer_pointer = buffer2;
274 start_pointer = buffer_pointer = buffer1;
281 magickpp_trgt::start_scanline(int scanline __attribute__ ((unused)))
287 magickpp_trgt::end_scanline()
289 convert_color_format(buffer_pointer, color_buffer,
290 width, PF_RGB|PF_A, gamma());
293 for (int i = 0; i < width; i++)
294 if (previous_buffer_pointer && // this isn't the first frame
295 buffer_pointer[i*4 + 3] < 128 && // our pixel is transparent
296 !(previous_buffer_pointer[i*4 + 3] < 128)) // the previous frame's pixel wasn't
302 buffer_pointer += 4 * width;
304 if (previous_buffer_pointer)
305 previous_buffer_pointer += 4 * width;