VTK
vtkAVIWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAVIWriter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
28 #ifndef vtkAVIWriter_h
29 #define vtkAVIWriter_h
30 
31 #include "vtkIOMovieModule.h" // For export macro
32 #include "vtkGenericMovieWriter.h"
33 
34 class vtkAVIWriterInternal;
35 
37 {
38 public:
39  static vtkAVIWriter *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
46  void Start();
47  void Write();
48  void End();
50 
52 
53  vtkSetClampMacro(Rate, int, 1, 5000);
54  vtkGetMacro(Rate, int);
56 
58 
60  vtkSetClampMacro(Quality, int, 0, 2);
61  vtkGetMacro(Quality, int);
63 
65 
68  vtkSetMacro(PromptCompressionOptions, int);
69  vtkGetMacro(PromptCompressionOptions, int);
70  vtkBooleanMacro(PromptCompressionOptions, int);
72 
74 
85  vtkSetStringMacro(CompressorFourCC);
86  vtkGetStringMacro(CompressorFourCC);
88 
89 protected:
90  vtkAVIWriter();
91  ~vtkAVIWriter();
92 
93  vtkAVIWriterInternal *Internals;
94 
95  int Rate;
96  int Time;
97  int Quality;
100 
101 private:
102  vtkAVIWriter(const vtkAVIWriter&); // Not implemented
103  void operator=(const vtkAVIWriter&); // Not implemented
104 };
105 
106 #endif
107 
108 
109 
virtual void Write()=0
#define VTKIOMOVIE_EXPORT
virtual void Start()=0
char * CompressorFourCC
Definition: vtkAVIWriter.h:99
virtual void End()=0
Writes Windows AVI files.
Definition: vtkAVIWriter.h:36
int PromptCompressionOptions
Definition: vtkAVIWriter.h:98
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkAVIWriterInternal * Internals
Definition: vtkAVIWriter.h:93
an abstract movie writer class.
void PrintSelf(ostream &os, vtkIndent indent)
static vtkAlgorithm * New()