synfig-core  1.0.3
trgt_ppm.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_PPM_H
28 #define __SYNFIG_TRGT_PPM_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/smartfile.h>
35 #include <synfig/targetparam.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 
45 {
47 
48 private:
49  int imagecount;
50  bool multi_image;
51  synfig::SmartFILE file;
52  synfig::String filename;
53  synfig::Color *color_buffer;
54  unsigned char *buffer;
55  synfig::String sequence_separator;
56 public:
57  ppm(const char *filename, const synfig::TargetParam& /* params */);
58  virtual ~ppm();
59 
60  virtual bool set_rend_desc(synfig::RendDesc *desc);
61  virtual bool start_frame(synfig::ProgressCallback *cb);
62  virtual void end_frame();
63 
64  virtual synfig::Color * start_scanline(int scanline);
65  virtual bool end_scanline();
66 };
67 
68 /* === E N D =============================================================== */
69 
70 #endif