MCPcopy Create free account
hub / github.com/Kitware/VTK / vtkImageWriter

Method vtkImageWriter

IO/Image/vtkImageWriter.cxx:24–44  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

22
23//------------------------------------------------------------------------------
24vtkImageWriter::vtkImageWriter()
25{
26 this->FilePrefix = nullptr;
27 this->FilePattern = nullptr;
28 this->FileName = nullptr;
29 this->InternalFileName = nullptr;
30 this->InternalFileNameSize = 0;
31 this->FileNumber = 0;
32 this->FileDimensionality = 2;
33
34 this->FilePattern = new char[strlen("{:s}.{:d}") + 1];
35 strcpy(this->FilePattern, "{:s}.{:d}");
36
37 this->FileLowerLeft = 0;
38
39 this->WriteToMemory = 0;
40
41 this->MinimumFileNumber = this->MaximumFileNumber = 0;
42 this->FilesDeleted = 0;
43 this->SetNumberOfOutputPorts(0);
44}
45
46//------------------------------------------------------------------------------
47vtkImageWriter::~vtkImageWriter()

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected