VTK  9.1.0
vtkImageWriter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageWriter.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=========================================================================*/
35#ifndef vtkImageWriter_h
36#define vtkImageWriter_h
37
38#include "vtkIOImageModule.h" // For export macro
39#include "vtkImageAlgorithm.h"
40
41class VTKIOIMAGE_EXPORT vtkImageWriter : public vtkImageAlgorithm
42{
43public:
46 void PrintSelf(ostream& os, vtkIndent indent) override;
47
49
57
59
67
69
72 vtkSetFilePathMacro(FilePattern);
73 vtkGetFilePathMacro(FilePattern);
75
77
82 vtkSetMacro(FileDimensionality, int);
83 vtkGetMacro(FileDimensionality, int);
85
90
94 virtual void Write();
95
97
98protected:
100 ~vtkImageWriter() override;
101
105 char* FileName;
110
111 virtual void RecursiveWrite(int dim, vtkImageData* region, vtkInformation* inInfo, ostream* file);
112 virtual void RecursiveWrite(
113 int dim, vtkImageData* cache, vtkImageData* data, vtkInformation* inInfo, ostream* file);
114 virtual void WriteFile(ostream* file, vtkImageData* data, int extent[6], int wExtent[6]);
115 virtual void WriteFileHeader(ostream*, vtkImageData*, int[6]) {}
116 virtual void WriteFileTrailer(ostream*, vtkImageData*) {}
117
118 // Required for subclasses that need to prevent the writer
119 // from touching the file system. The getter/setter are only
120 // available in these subclasses.
122
123 // subclasses that do write to memory can override this
124 // to implement the simple case
125 virtual void MemoryWrite(int, vtkImageData*, int[6], vtkInformation*) {}
126
127 // This is called by the superclass.
128 // This is the method you should override.
130 vtkInformationVector* outputVector) override;
131
135
136private:
137 vtkImageWriter(const vtkImageWriter&) = delete;
138 void operator=(const vtkImageWriter&) = delete;
139};
140
141#endif
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:57
Writes images to files.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
char * InternalFileName
vtkGetFilePathMacro(FilePrefix)
Specify file prefix for the image file(s).You should specify either a FileName or FilePrefix.
vtkGetFilePathMacro(FilePattern)
The snprintf format used to build filename from FilePrefix and number.
size_t InternalFileNameSize
virtual void MemoryWrite(int, vtkImageData *, int[6], vtkInformation *)
virtual void RecursiveWrite(int dim, vtkImageData *region, vtkInformation *inInfo, ostream *file)
vtkGetFilePathMacro(FileName)
Specify file name for the image file.
virtual void WriteFileHeader(ostream *, vtkImageData *, int[6])
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
virtual void Write()
The main interface which triggers the writer to start.
vtkSetFilePathMacro(FilePrefix)
Specify file prefix for the image file(s).You should specify either a FileName or FilePrefix.
vtkImageData * GetInput()
Set/Get the input object from the image pipeline.
vtkTypeUBool WriteToMemory
void DeleteFiles()
vtkSetFilePathMacro(FilePattern)
The snprintf format used to build filename from FilePrefix and number.
~vtkImageWriter() override
virtual void RecursiveWrite(int dim, vtkImageData *cache, vtkImageData *data, vtkInformation *inInfo, ostream *file)
virtual void WriteFileTrailer(ostream *, vtkImageData *)
static vtkImageWriter * New()
vtkSetFilePathMacro(FileName)
Specify file name for the image file.
virtual void WriteFile(ostream *file, vtkImageData *data, int extent[6], int wExtent[6])
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ extent
Definition: vtkX3D.h:351
@ data
Definition: vtkX3D.h:321
unsigned int vtkTypeUBool
Definition: vtkABI.h:70