ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkImageWriter Class Reference

vtkImageWriter - Writes images to files. More...

Inheritance diagram for Kitware.VTK.vtkImageWriter:
[legend]
Collaboration diagram for Kitware.VTK.vtkImageWriter:
[legend]

List of all members.

Public Member Functions

 vtkImageWriter (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkImageWriter ()
 Undocumented Block.
void DeleteFiles ()
 The main interface which triggers the writer to start.
virtual int GetFileDimensionality ()
 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 string GetFileName ()
 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.
virtual string GetFilePattern ()
 The sprintf format used to build filename from FilePrefix and number.
virtual string GetFilePrefix ()
 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.
new vtkImageData GetInput ()
 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.
override int IsA (string type)
 Undocumented Block.
new vtkImageWriter NewInstance ()
 Undocumented Block.
virtual void SetFileDimensionality (int _arg)
 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 void SetFileName (string _arg)
 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.
virtual void SetFilePattern (string _arg)
 The sprintf format used to build filename from FilePrefix and number.
virtual void SetFilePrefix (string _arg)
 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 Write ()
 The main interface which triggers the writer to start.

Static Public Member Functions

static new vtkImageWriter New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkImageWriter SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkImageWriter"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "14vtkImageWriter"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkImageWriter_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkImageWriter_DeleteFiles_01 (HandleRef pThis)
static internal int vtkImageWriter_GetFileDimensionality_02 (HandleRef pThis)
static internal IntPtr vtkImageWriter_GetFileName_03 (HandleRef pThis)
static internal IntPtr vtkImageWriter_GetFilePattern_04 (HandleRef pThis)
static internal IntPtr vtkImageWriter_GetFilePrefix_05 (HandleRef pThis)
static internal IntPtr vtkImageWriter_GetInput_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkImageWriter_IsA_07 (HandleRef pThis, string type)
static internal int vtkImageWriter_IsTypeOf_08 (string type)
static internal IntPtr vtkImageWriter_NewInstance_10 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkImageWriter_SafeDownCast_11 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkImageWriter_SetFileDimensionality_12 (HandleRef pThis, int _arg)
static internal void vtkImageWriter_SetFileName_13 (HandleRef pThis, string _arg)
static internal void vtkImageWriter_SetFilePattern_14 (HandleRef pThis, string _arg)
static internal void vtkImageWriter_SetFilePrefix_15 (HandleRef pThis, string _arg)
static internal void vtkImageWriter_Write_16 (HandleRef pThis)

Static Private Member Functions

static vtkImageWriter ()
 Automatically generated type registration mechanics.

Detailed Description

vtkImageWriter - Writes images to files.

Description 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.


Constructor & Destructor Documentation

static Kitware.VTK.vtkImageWriter.vtkImageWriter ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkImageWriter.vtkImageWriter ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

The main interface which triggers the writer to start.

override void Kitware.VTK.vtkImageWriter.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkImageAlgorithm.

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

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 string Kitware.VTK.vtkImageWriter.GetFileName ( ) [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 Kitware.VTK.vtkMetaImageWriter.

virtual string Kitware.VTK.vtkImageWriter.GetFilePattern ( ) [virtual]

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

virtual string Kitware.VTK.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.

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.

Reimplemented from Kitware.VTK.vtkImageAlgorithm.

Here is the call graph for this function:

override int Kitware.VTK.vtkImageWriter.IsA ( string  type) [virtual]
static new int Kitware.VTK.vtkImageWriter.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkImageAlgorithm.

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

Here is the call graph for this function:

virtual void Kitware.VTK.vtkImageWriter.SetFileDimensionality ( int  _arg) [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 void Kitware.VTK.vtkImageWriter.SetFileName ( string  _arg) [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 Kitware.VTK.vtkMINCImageWriter, and Kitware.VTK.vtkMetaImageWriter.

virtual void Kitware.VTK.vtkImageWriter.SetFilePattern ( string  _arg) [virtual]

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

virtual void Kitware.VTK.vtkImageWriter.SetFilePrefix ( string  _arg) [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.

static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_DeleteFiles_01 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkImageWriter.vtkImageWriter_GetFileDimensionality_02 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_GetFileName_03 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_GetFilePattern_04 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_GetFilePrefix_05 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_GetInput_06 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkImageWriter.vtkImageWriter_IsA_07 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkImageWriter.vtkImageWriter_IsTypeOf_08 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_NewInstance_10 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkImageWriter.vtkImageWriter_SafeDownCast_11 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_SetFileDimensionality_12 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_SetFileName_13 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_SetFilePattern_14 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_SetFilePrefix_15 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkImageWriter.vtkImageWriter_Write_16 ( HandleRef  pThis) [private]
virtual void Kitware.VTK.vtkImageWriter.Write ( ) [virtual]

The main interface which triggers the writer to start.

Reimplemented in Kitware.VTK.vtkMINCImageWriter, Kitware.VTK.vtkJPEGWriter, Kitware.VTK.vtkMetaImageWriter, and Kitware.VTK.vtkPNGWriter.


Member Data Documentation

new readonly string Kitware.VTK.vtkImageWriter.MRClassNameKey = "14vtkImageWriter" [static]
new const string Kitware.VTK.vtkImageWriter.MRFullTypeName = "Kitware.VTK.vtkImageWriter"

The documentation for this class was generated from the following file: