Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

vtkImageWriter Class Reference

#include <vtkImageWriter.h>

Inheritance diagram for vtkImageWriter:

Inheritance graph
[legend]
Collaboration diagram for vtkImageWriter:

Collaboration graph
[legend]
List of all members.

Detailed Description

Writes images to files.

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)
vtkImageDataGetInput ()
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 vtkImageWriterNew ()
static int IsTypeOf (const char *type)
static vtkImageWriterSafeDownCast (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


Member Typedef Documentation

typedef vtkImageAlgorithm vtkImageWriter::Superclass
 

Reimplemented from vtkImageAlgorithm.

Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter.

Definition at line 34 of file vtkImageWriter.h.


Constructor & Destructor Documentation

vtkImageWriter::vtkImageWriter  )  [protected]
 

vtkImageWriter::~vtkImageWriter  )  [protected]
 


Member Function Documentation

static vtkImageWriter* vtkImageWriter::New  )  [static]
 

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.

virtual const char* vtkImageWriter::GetClassName  )  [virtual]
 

Reimplemented from vtkImageAlgorithm.

Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter.

static int vtkImageWriter::IsTypeOf const char *  type  )  [static]
 

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.

virtual int vtkImageWriter::IsA const char *  type  )  [virtual]
 

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.

static vtkImageWriter* vtkImageWriter::SafeDownCast vtkObject o  )  [static]
 

Reimplemented from vtkImageAlgorithm.

Reimplemented in vtkBMPWriter, vtkJPEGWriter, vtkMetaImageWriter, vtkPNGWriter, vtkPNMWriter, vtkPostScriptWriter, vtkTIFFWriter, and vtkPImageWriter.

void vtkImageWriter::PrintSelf ostream &  os,
vtkIndent  indent
[virtual]
 

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.

virtual void vtkImageWriter::SetFileName const char *   )  [virtual]
 

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.

virtual char* vtkImageWriter::GetFileName  )  [virtual]
 

Reimplemented in vtkMetaImageWriter.

virtual void vtkImageWriter::SetFilePrefix const char *   )  [virtual]
 

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.

virtual char* vtkImageWriter::GetFilePrefix  )  [virtual]
 

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.

virtual void vtkImageWriter::SetFilePattern const char *   )  [virtual]
 

The sprintf format used to build filename from FilePrefix and number.

virtual char* vtkImageWriter::GetFilePattern  )  [virtual]
 

The sprintf format used to build filename from FilePrefix and number.

virtual void vtkImageWriter::SetFileDimensionality int   )  [virtual]
 

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.

virtual int vtkImageWriter::GetFileDimensionality  )  [virtual]
 

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.

vtkImageData* vtkImageWriter::GetInput  ) 
 

Set/Get the input object from the image pipeline.

Reimplemented from vtkImageAlgorithm.

virtual void vtkImageWriter::Write  )  [virtual]
 

The main interface which triggers the writer to start.

Reimplemented in vtkJPEGWriter, and vtkPNGWriter.

void vtkImageWriter::DeleteFiles  ) 
 

virtual void vtkImageWriter::RecursiveWrite int  dim,
vtkImageData region,
ofstream *  file
[protected, virtual]
 

Reimplemented in vtkPImageWriter.

virtual void vtkImageWriter::RecursiveWrite int  dim,
vtkImageData cache,
vtkImageData data,
ofstream *  file
[protected, virtual]
 

Reimplemented in vtkPImageWriter.

virtual void vtkImageWriter::WriteFile ofstream *  file,
vtkImageData data,
int  extent[6]
[protected, virtual]
 

Reimplemented in vtkBMPWriter, vtkPNMWriter, vtkPostScriptWriter, and vtkTIFFWriter.

virtual void vtkImageWriter::WriteFileHeader ofstream *  ,
vtkImageData
[inline, protected, virtual]
 

Reimplemented in vtkBMPWriter, vtkPNMWriter, vtkPostScriptWriter, and vtkTIFFWriter.

Definition at line 93 of file vtkImageWriter.h.

virtual void vtkImageWriter::WriteFileTrailer ofstream *  ,
vtkImageData
[inline, protected, virtual]
 

Reimplemented in vtkPostScriptWriter, and vtkTIFFWriter.

Definition at line 94 of file vtkImageWriter.h.

virtual int vtkImageWriter::RequestData vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector
[protected, virtual]
 

This is called by the superclass. This is the method you should override.

Reimplemented from vtkImageAlgorithm.

Reimplemented in vtkMetaImageWriter.


Member Data Documentation

int vtkImageWriter::FileDimensionality [protected]
 

Definition at line 81 of file vtkImageWriter.h.

char* vtkImageWriter::FilePrefix [protected]
 

Definition at line 82 of file vtkImageWriter.h.

char* vtkImageWriter::FilePattern [protected]
 

Definition at line 83 of file vtkImageWriter.h.

char* vtkImageWriter::FileName [protected]
 

Definition at line 84 of file vtkImageWriter.h.

int vtkImageWriter::FileNumber [protected]
 

Definition at line 85 of file vtkImageWriter.h.

int vtkImageWriter::FileLowerLeft [protected]
 

Definition at line 86 of file vtkImageWriter.h.

char* vtkImageWriter::InternalFileName [protected]
 

Definition at line 87 of file vtkImageWriter.h.

int vtkImageWriter::MinimumFileNumber [protected]
 

Definition at line 102 of file vtkImageWriter.h.

int vtkImageWriter::MaximumFileNumber [protected]
 

Definition at line 103 of file vtkImageWriter.h.

int vtkImageWriter::FilesDeleted [protected]
 

Definition at line 104 of file vtkImageWriter.h.


The documentation for this class was generated from the following file:
Generated on Mon Jan 21 23:54:40 2008 for VTK by  doxygen 1.4.3-20050530