#include <vtkImageWriter.h>
Inheritance diagram for vtkImageWriter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetFileName (const char *) |
virtual char * | GetFileName () |
void | SetFilePrefix (char *filePrefix) |
virtual char * | GetFilePrefix () |
void | SetFilePattern (const char *filePattern) |
virtual char * | GetFilePattern () |
virtual void | SetFileDimensionality (int) |
virtual int | GetFileDimensionality () |
virtual void | SetInput (vtkImageData *input) |
vtkImageData * | GetInput () |
virtual void | Write () |
virtual void | SetMemoryLimit (unsigned long) |
virtual unsigned long | GetMemoryLimit () |
Static Public Methods | |
vtkImageWriter * | New () |
int | IsTypeOf (const char *type) |
vtkImageWriter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkImageWriter () | |
~vtkImageWriter () | |
vtkImageWriter (const vtkImageWriter &) | |
void | operator= (const vtkImageWriter &) |
void | RecursiveWrite (int dim, vtkImageData *region, ofstream *file) |
void | RecursiveWrite (int dim, vtkImageData *cache, vtkImageData *data, ofstream *file) |
virtual void | WriteFile (ofstream *file, vtkImageData *data, int extent[6]) |
virtual void | WriteFileHeader (ofstream *, vtkImageData *) |
virtual void | WriteFileTrailer (ofstream *, vtkImageData *) |
Protected Attributes | |
int | FileDimensionality |
char * | FilePrefix |
char * | FilePattern |
char * | FileName |
int | FileNumber |
int | FileLowerLeft |
char * | InternalFileName |
unsigned long | MemoryLimit |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. Reimplemented in vtkBMPWriter. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. Reimplemented in vtkBMPWriter. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. Reimplemented in vtkBMPWriter. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkProcessObject. Reimplemented in vtkBMPWriter. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkProcessObject. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkProcessObject. Reimplemented in vtkBMPWriter. |
|
What dimension are the files to be written. Usually this is 2, or 3. If it is 2 and the input is a volume then the volume will be written as a series of 2d slices. |
|
Specify file name for the image file. You should specify either a FileName or a FilePrefix. Use FilePrefix if the data is stored in multiple files. |
|
The sprintf format used to build filename from FilePrefix and number. |
|
Specify file prefix for the image file(s).You should specify either a FileName or FilePrefix. Use FilePrefix if the data is stored in multiple files. |
|
Set/Get the input object from the image pipeline. |
|
Set / Get the memory limit in kilobytes. The writer will stream to attempt to keep the pipeline size within this limit |
|
The main interface which triggers the writer to start. |