VTK  9.2.6
vtkPNGReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPNGReader.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=========================================================================*/
41#ifndef vtkPNGReader_h
42#define vtkPNGReader_h
43
44#include "vtkIOImageModule.h" // For export macro
45#include "vtkImageReader2.h"
46
47class VTKIOIMAGE_EXPORT vtkPNGReader : public vtkImageReader2
48{
49public:
50 static vtkPNGReader* New();
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
57 int CanReadFile(VTK_FILEPATH const char* fname) override;
58
64 const char* GetFileExtensions() override { return ".png"; }
65
69 const char* GetDescriptiveName() override { return "PNG"; }
70
76 void GetTextChunks(const char* key, int beginEndIndex[2]);
80 const char* GetTextKey(int index);
86 const char* GetTextValue(int index);
92
94
99 vtkSetMacro(ReadSpacingFromFile, bool);
100 vtkGetMacro(ReadSpacingFromFile, bool);
101 vtkBooleanMacro(ReadSpacingFromFile, bool);
103protected:
105 ~vtkPNGReader() override;
106
107 void ExecuteInformation() override;
109 template <class OT>
110 void vtkPNGReaderUpdate(vtkImageData* data, OT* outPtr);
111 template <class OT>
112 void vtkPNGReaderUpdate2(OT* outPtr, int* outExt, vtkIdType* outInc, long pixSize);
113
114private:
115 vtkPNGReader(const vtkPNGReader&) = delete;
116 void operator=(const vtkPNGReader&) = delete;
117
118 class vtkInternals;
119 vtkInternals* Internals;
120 bool ReadSpacingFromFile;
121};
122#endif
general representation of visualization data
topologically and geometrically regular array of data
Superclass of binary file readers.
a simple class to control print indentation
Definition vtkIndent.h:49
Store vtkAlgorithm input/output information.
read PNG files
const char * GetTextValue(int index)
Returns the text value stored at 'index'.
void ExecuteInformation() override
size_t GetNumberOfTextChunks()
Return the number of text chunks in the PNG file.
const char * GetDescriptiveName() override
Return a descriptive name for the file format that might be useful in a GUI.
void vtkPNGReaderUpdate(vtkImageData *data, OT *outPtr)
void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
static vtkPNGReader * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void vtkPNGReaderUpdate2(OT *outPtr, int *outExt, vtkIdType *outInc, long pixSize)
const char * GetTextKey(int index)
Returns the text key stored at 'index'.
void GetTextChunks(const char *key, int beginEndIndex[2])
Given a 'key' for the text chunks, fills in 'beginEndIndex' with the begin and end indexes.
const char * GetFileExtensions() override
Get the file extensions for this format.
~vtkPNGReader() override
int CanReadFile(VTK_FILEPATH const char *fname) override
Is the given file a PNG file?
Set of utilities for OpenTURNS<->VTK conversions.
Definition vtkOTFilter.h:33
int vtkIdType
Definition vtkType.h:332
#define VTK_FILEPATH