Medical Imaging Interaction Toolkit
2024.06.00
Medical Imaging Interaction Toolkit
|
Interface class of writers that write data to files. More...
#include <mitkFileWriter.h>
Public Types | |
typedef FileWriter | Self |
typedef itk::ProcessObject | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer< const Self > | ConstPointer |
Public Member Functions | |
virtual std::vector< std::string > | GetClassHierarchy () const |
virtual const char * | GetClassName () const |
virtual const char * | GetFileName () const =0 |
Get the specified the file to write. More... | |
virtual void | SetFileName (const char *aFileName)=0 |
Specify the file to write. More... | |
virtual const char * | GetFilePrefix () const =0 |
Get the specified file prefix for the file(s) to write. More... | |
virtual void | SetFilePrefix (const char *aFilePrefix)=0 |
Specify file prefix for the file(s) to write. More... | |
virtual const char * | GetFilePattern () const =0 |
Get the specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number. More... | |
virtual void | SetFilePattern (const char *aFilePattern)=0 |
Specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number. More... | |
virtual std::string | GetFileExtension () |
Return the extension to be added to the filename. More... | |
bool | IsExtensionValid (std::string extension) |
Checks if given extension is valid for file writer. More... | |
virtual std::vector< std::string > | GetPossibleFileExtensions ()=0 |
Return the possible file extensions for the data type associated with the writer. More... | |
virtual std::string | GetPossibleFileExtensionsAsString () |
possible file extensions for the data type associated with the writer as string More... | |
virtual bool | CanWriteDataType (DataNode *) |
Check if the Writer can write this type of data of the DataTreenode. More... | |
virtual std::string | GetWritenMIMEType () |
Return the MimeType of the saved File. More... | |
virtual std::string | GetSupportedBaseData () const =0 |
void | SetInput (BaseData *data) |
virtual void | Write ()=0 |
virtual bool | CanWriteToMemory () |
Specifies, whether the file writer also can write a file to a memory buffer. More... | |
virtual void | SetWriteToMemory (bool write) |
Set/Get functions to advise the file writer to use tis internal memory array as file writing destination. More... | |
virtual bool | GetWriteToMemory () |
virtual const char * | GetMemoryPointer () |
To be used along with a call of SetWriteToMemory(true). This returns the memory buffer where the file was written. More... | |
virtual unsigned int | GetMemorySize () |
To be used along with a call of SetWriteToMemory(true). This returns the size of the memory buffer where the file was written. More... | |
virtual void | ReleaseMemory () |
CAUTION: It's up to the user to call this function to release the memory buffer after use in case the file writer has written to its memory array. More... | |
Static Public Member Functions | |
static const char * | GetStaticNameOfClass () |
Protected Member Functions | |
FileWriter () | |
~FileWriter () override | |
Protected Attributes | |
bool | m_CanWriteToMemory |
bool | m_WriteToMemory |
char * | m_MemoryBuffer |
unsigned int | m_MemoryBufferSize |
Interface class of writers that write data to files.
Definition at line 26 of file mitkFileWriter.h.
typedef itk::SmartPointer<const Self> mitk::FileWriter::ConstPointer |
Definition at line 29 of file mitkFileWriter.h.
Definition at line 29 of file mitkFileWriter.h.
typedef FileWriter mitk::FileWriter::Self |
Definition at line 29 of file mitkFileWriter.h.
typedef itk::ProcessObject mitk::FileWriter::Superclass |
Definition at line 29 of file mitkFileWriter.h.
|
protected |
|
overrideprotected |
|
virtual |
Check if the Writer can write this type of data of the DataTreenode.
Reimplemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
virtual |
Specifies, whether the file writer also can write a file to a memory buffer.
|
inlinevirtual |
Reimplemented in mitk::FileWriterWithInformation.
Definition at line 29 of file mitkFileWriter.h.
|
virtual |
Reimplemented in mitk::FileWriterWithInformation.
|
virtual |
Return the extension to be added to the filename.
Reimplemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
pure virtual |
Get the specified the file to write.
Either the FileName or FilePrefix plus FilePattern are used to write.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
pure virtual |
Get the specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number.
You should specify either a FileName or FilePrefix. Use FilePrefix if the data is stored in multiple files.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::ImageWriter, and mitk::PointSetWriter.
|
pure virtual |
Get the specified file prefix for the file(s) to write.
You should specify either a FileName or FilePrefix. Use FilePrefix if the data is stored in multiple files.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::ImageWriter, and mitk::PointSetWriter.
|
virtual |
To be used along with a call of SetWriteToMemory(true). This returns the memory buffer where the file was written.
|
virtual |
To be used along with a call of SetWriteToMemory(true). This returns the size of the memory buffer where the file was written.
|
pure virtual |
Return the possible file extensions for the data type associated with the writer.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
virtual |
possible file extensions for the data type associated with the writer as string
|
inlinestatic |
Definition at line 29 of file mitkFileWriter.h.
|
pure virtual |
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
virtual |
Return the MimeType of the saved File.
Reimplemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::PointSetWriter, and mitk::ImageWriter.
|
virtual |
bool mitk::FileWriter::IsExtensionValid | ( | std::string | extension | ) |
Checks if given extension is valid for file writer.
|
virtual |
CAUTION: It's up to the user to call this function to release the memory buffer after use in case the file writer has written to its memory array.
|
pure virtual |
Specify the file to write.
Either the FileName or FilePrefix plus FilePattern are used to write.
Implemented in mitk::ImageWriter, mitk::SurfaceVtkWriter< VTKWRITER >, and mitk::PointSetWriter.
|
pure virtual |
Specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number.
You should specify either a FileName or FilePrefix. Use FilePrefix if the data is stored in multiple files.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::ImageWriter, and mitk::PointSetWriter.
|
pure virtual |
Specify file prefix for the file(s) to write.
You should specify either a FileName or FilePrefix. Use FilePrefix if the data is stored in multiple files.
Implemented in mitk::SurfaceVtkWriter< VTKWRITER >, mitk::ImageWriter, and mitk::PointSetWriter.
void mitk::FileWriter::SetInput | ( | BaseData * | data | ) |
|
virtual |
Set/Get functions to advise the file writer to use tis internal memory array as file writing destination.
|
pure virtual |
|
protected |
Definition at line 134 of file mitkFileWriter.h.
|
protected |
Definition at line 136 of file mitkFileWriter.h.
|
protected |
Definition at line 137 of file mitkFileWriter.h.
|
protected |
Definition at line 135 of file mitkFileWriter.h.