mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkJSONImageWriter.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
// .NAME vtkJSONImageWriter - Writes vtkImageData to a JSON file.
|
|
// .SECTION Description
|
|
// vtkJSONImageWriter writes a JSON file which will describe the
|
|
// data inside a vtkImageData.
|
|
|
|
#ifndef vtkJSONImageWriter_h
|
|
#define vtkJSONImageWriter_h
|
|
|
|
#include "vtkIOImageModule.h" // For export macro
|
|
#include "vtkImageAlgorithm.h"
|
|
|
|
class VTKIOIMAGE_EXPORT vtkJSONImageWriter : public vtkImageAlgorithm
|
|
{
|
|
public:
|
|
static vtkJSONImageWriter *New();
|
|
vtkTypeMacro(vtkJSONImageWriter,vtkImageAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
// Description:
|
|
// Specify file name for the image file.
|
|
vtkSetStringMacro(FileName);
|
|
vtkGetStringMacro(FileName);
|
|
|
|
// Description:
|
|
// Specify ArrayName to export. By default NULL which will dump ALL arrays.
|
|
vtkSetStringMacro(ArrayName);
|
|
vtkGetStringMacro(ArrayName);
|
|
|
|
// Description:
|
|
// Specify Slice in Z to export. By default -1 which will dump the full 3D domain.
|
|
vtkSetMacro(Slice, int);
|
|
vtkGetMacro(Slice, int);
|
|
|
|
// Description:
|
|
// The main interface which triggers the writer to start.
|
|
virtual void Write();
|
|
|
|
protected:
|
|
vtkJSONImageWriter();
|
|
~vtkJSONImageWriter();
|
|
|
|
char *FileName;
|
|
char *ArrayName;
|
|
int Slice;
|
|
|
|
virtual int RequestData(vtkInformation *request,
|
|
vtkInformationVector** inputVector,
|
|
vtkInformationVector* outputVector);
|
|
|
|
private:
|
|
vtkJSONImageWriter(const vtkJSONImageWriter&); // Not implemented.
|
|
void operator=(const vtkJSONImageWriter&); // Not implemented.
|
|
};
|
|
|
|
#endif
|