synfig-core  1.0.3
trgt_imagemagick.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
25 /* === S T A R T =========================================================== */
26 
27 #ifndef __SYNFIG_TRGT_IMAGEMAGICK_H
28 #define __SYNFIG_TRGT_IMAGEMAGICK_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #include <synfig/target_scanline.h>
33 #include <synfig/string.h>
34 #include <synfig/targetparam.h>
35 #include <sys/types.h>
36 #include <cstdio>
37 
38 /* === M A C R O S ========================================================= */
39 
40 /* === T Y P E D E F S ===================================================== */
41 
42 /* === C L A S S E S & S T R U C T S ======================================= */
43 
44 
46 {
48 private:
49  pid_t pid;
50  int imagecount;
51  bool multi_image;
52  FILE *file;
53  synfig::String filename;
54  unsigned char *buffer;
55  synfig::Color *color_buffer;
57  synfig::String sequence_separator;
58 public:
59  imagemagick_trgt(const char *filename,
60  const synfig::TargetParam& /* params */);
61  virtual ~imagemagick_trgt();
62 
63  virtual bool set_rend_desc(synfig::RendDesc *desc);
64  virtual bool init(synfig::ProgressCallback *cb);
65  virtual bool start_frame(synfig::ProgressCallback *cb);
66  virtual void end_frame();
67  virtual synfig::Color * start_scanline(int scanline);
68  virtual bool end_scanline();
69 };
70 
71 /* === E N D =============================================================== */
72 
73 #endif