VTK
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 =========================================================================*/
32 #ifndef vtkPNGReader_h
33 #define vtkPNGReader_h
34 
35 #include "vtkIOImageModule.h" // For export macro
36 #include "vtkImageReader2.h"
37 
38 class VTKIOIMAGE_EXPORT vtkPNGReader : public vtkImageReader2
39 {
40 public:
41  static vtkPNGReader *New();
43  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
44 
48  virtual int CanReadFile(const char* fname);
49 
55  virtual const char* GetFileExtensions()
56  {
57  return ".png";
58  }
59 
63  virtual const char* GetDescriptiveName()
64  {
65  return "PNG";
66  }
67 
73  void GetTextChunks(const char* key, int beginEndIndex[2]);
77  const char* GetTextKey(int index);
83  const char* GetTextValue(int index);
88  size_t GetNumberOfTextChunks();
89 
90 protected:
91  vtkPNGReader();
92  ~vtkPNGReader();
93 
94  virtual void ExecuteInformation();
95  virtual void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation *outInfo);
96  template <class OT>
97  void vtkPNGReaderUpdate(vtkImageData *data, OT *outPtr);
98  template <class OT>
99  void vtkPNGReaderUpdate2(
100  OT *outPtr, int *outExt, vtkIdType *outInc, long pixSize);
101 
102 
103 private:
104  vtkPNGReader(const vtkPNGReader&) VTK_DELETE_FUNCTION;
105  void operator=(const vtkPNGReader&) VTK_DELETE_FUNCTION;
106 
107  class vtkInternals;
108  vtkInternals* Internals;
109 };
110 #endif
static vtkImageReader2 * New()
Store vtkAlgorithm input/output information.
virtual const char * GetDescriptiveName()
Return a descriptive name for the file format that might be useful in a GUI.
Definition: vtkPNGReader.h:63
int vtkIdType
Definition: vtkType.h:287
virtual int CanReadFile(const char *vtkNotUsed(fname))
Return non zero if the reader can read the given file name.
a simple class to control print indentation
Definition: vtkIndent.h:39
read PNG files
Definition: vtkPNGReader.h:38
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
virtual void ExecuteInformation()
virtual const char * GetFileExtensions()
Get the file extensions for this format.
Definition: vtkPNGReader.h:55
Superclass of binary file readers.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo)
This is a convenience method that is implemented in many subclasses instead of RequestData.
general representation of visualization data
Definition: vtkDataObject.h:64