#include <vtkImageWriter.h>
Inheritance diagram for vtkImageWriter:
vtkImageWriter writes images to files with any data type. The data type of the file is the same scalar type as the input. The dimensionality determines whether the data will be written in one or multiple files. This class is used as the superclass of most image writing classes such as vtkBMPWriter etc. It supports streaming.
Definition at line 30 of file vtkImageWriter.h.
Public Types | |
typedef vtkImageAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
vtkImageData * | GetInput () |
virtual void | Write () |
void | DeleteFiles () |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetFileName (const char *) |
virtual char * | GetFileName () |
virtual void | SetFilePrefix (const char *) |
virtual char * | GetFilePrefix () |
virtual void | SetFilePattern (const char *) |
virtual char * | GetFilePattern () |
virtual void | SetFileDimensionality (int) |
virtual int | GetFileDimensionality () |
Static Public Member Functions | |
static vtkImageWriter * | New () |
static int | IsTypeOf (const char *type) |
static vtkImageWriter * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkImageWriter () | |
~vtkImageWriter () | |
virtual void | RecursiveWrite (int dim, vtkImageData *region, ofstream *file) |
virtual 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 *) |
virtual int | RequestData (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) |
Protected Attributes | |
int | FileDimensionality |
char * | FilePrefix |
char * | FilePattern |
char * | FileName |
int | FileNumber |
int | FileLowerLeft |
char * | InternalFileName |
int | MinimumFileNumber |
int | MaximumFileNumber |
int | FilesDeleted |
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. Definition at line 34 of file vtkImageWriter.h. |
|
|
|
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
Reimplemented from vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
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 vtkImageAlgorithm. Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter. |
|
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. Reimplemented in vtkMetaImageWriter. |
|
Reimplemented in vtkMetaImageWriter. |
|
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. |
|
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. |
|
The sprintf format used to build filename from FilePrefix and number. |
|
The sprintf format used to build filename from FilePrefix and number. |
|
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. |
|
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. |
|
Set/Get the input object from the image pipeline. Reimplemented from vtkImageAlgorithm. |
|
The main interface which triggers the writer to start. Reimplemented in vtkJPEGWriter, and vtkPNGWriter. |
|
|
|
Reimplemented in vtkPImageWriter. |
|
Reimplemented in vtkPImageWriter. |
|
Reimplemented in vtkBMPWriter, vtkPNMWriter, vtkPostScriptWriter, and vtkTIFFWriter. |
|
Reimplemented in vtkBMPWriter, vtkPNMWriter, vtkPostScriptWriter, and vtkTIFFWriter. Definition at line 93 of file vtkImageWriter.h. |
|
Reimplemented in vtkPostScriptWriter, and vtkTIFFWriter. Definition at line 94 of file vtkImageWriter.h. |
|
This is called by the superclass. This is the method you should override. Reimplemented from vtkImageAlgorithm. Reimplemented in vtkMetaImageWriter. |
|
Definition at line 81 of file vtkImageWriter.h. |
|
Definition at line 82 of file vtkImageWriter.h. |
|
Definition at line 83 of file vtkImageWriter.h. |
|
Definition at line 84 of file vtkImageWriter.h. |
|
Definition at line 85 of file vtkImageWriter.h. |
|
Definition at line 86 of file vtkImageWriter.h. |
|
Definition at line 87 of file vtkImageWriter.h. |
|
Definition at line 102 of file vtkImageWriter.h. |
|
Definition at line 103 of file vtkImageWriter.h. |
|
Definition at line 104 of file vtkImageWriter.h. |