VTK  9.7.20260805
vtkPNGReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
21
22#ifndef vtkPNGReader_h
23#define vtkPNGReader_h
24
25#include "vtkIOImageModule.h" // For export macro
26#include "vtkImageReader2.h"
27#include "vtkSmartPointer.h" // For vtkSmartPointer
28
29VTK_ABI_NAMESPACE_BEGIN
30class vtkStringArray;
31VTK_ABI_NAMESPACE_END
32
33VTK_ABI_NAMESPACE_BEGIN
34class VTKIOIMAGE_EXPORT vtkPNGReader : public vtkImageReader2
35{
36public:
37 static vtkPNGReader* New();
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
42
48 int CanReadFile(VTK_FILEPATH const char* fname) override;
49 int CanReadFile(vtkResourceStream* stream) override;
51
57 const char* GetFileExtensions() override { return ".png"; }
58
62 const char* GetDescriptiveName() override { return "PNG"; }
63
69 void GetTextChunks(const char* key, int beginEndIndex[2]);
70
72
75 const char* GetTextKey(int index);
78
80
85 const char* GetTextValue(int index);
88
94
96
101 vtkSetMacro(ReadSpacingFromFile, bool);
102 vtkGetMacro(ReadSpacingFromFile, bool);
103 vtkBooleanMacro(ReadSpacingFromFile, bool);
105protected:
107 ~vtkPNGReader() override;
108
109 void ExecuteInformation() override;
111 template <class OT>
112 void vtkPNGReaderUpdate(vtkImageData* data, OT* outPtr);
113 template <class OT>
114 void vtkPNGReaderUpdate2(OT* outPtr, int* outExt, vtkIdType* outInc, long pixSize);
115
116private:
117 vtkPNGReader(const vtkPNGReader&) = delete;
118 void operator=(const vtkPNGReader&) = delete;
119
120 class vtkInternals;
121 vtkInternals* Internals;
122 bool ReadSpacingFromFile;
123};
124VTK_ABI_NAMESPACE_END
125#endif
general representation of visualization data
topologically and geometrically regular array of data
vtkImageReader2()
Return a descriptive name for the file format that might be useful in a GUI.
a simple class to control print indentation
Definition vtkIndent.h:29
Store vtkAlgorithm input/output information.
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.
vtkStringArray * GetTextValues()
Returns the text value stored at 'index'.
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.
int CanReadFile(const char *fname) override
Return 3 if, after a quick check of file header, it looks like the provided file or stream can be rea...
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.
int CanReadFile(vtkResourceStream *stream) override
Return 3 if, after a quick check of file header, it looks like the provided file or stream can be rea...
~vtkPNGReader() override
vtkStringArray * GetTextKeys()
Returns the text key stored at 'index'.
Abstract class used for custom streams.
a vtkAbstractArray subclass for strings
Set of utilities for OpenTURNS<->VTK conversions.
Definition vtkOTFilter.h:21
int vtkIdType
Definition vtkType.h:363
#define VTK_FILEPATH