ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkGiplImageIO.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef __itkGiplImageIO_h
19 #define __itkGiplImageIO_h
20 
21 
22 #include <fstream>
23 #include "itkImageIOBase.h"
24 #include <stdio.h>
25 
26 namespace itk
27 {
28 class GiplImageIOInternals;
29 
38 class ITK_EXPORT GiplImageIO:public ImageIOBase
39 {
40 public:
42  typedef GiplImageIO Self;
45 
47  itkNewMacro(Self);
48 
50  itkTypeMacro(GiplImageIO, Superclass);
51 
52  /*-------- This part of the interfaces deals with reading data. ----- */
53 
56  virtual bool CanReadFile(const char *);
57 
59  virtual void ReadImageInformation();
60 
62  virtual void Read(void *buffer);
63 
64  /*-------- This part of the interfaces deals with writing data. ----- */
65 
68  virtual bool CanWriteFile(const char *);
69 
71  virtual void WriteImageInformation();
72 
75  virtual void Write(const void *buffer);
76 
77  GiplImageIO();
78  ~GiplImageIO();
79  void PrintSelf(std::ostream & os, Indent indent) const;
80 
81 private:
82  GiplImageIO(const Self &); //purposely not implemented
83  void operator=(const Self &); //purposely not implemented
84 
85  void SwapBytesIfNecessary(void *buffer, SizeValueType numberOfPixels);
86 
87  bool CheckExtension(const char *);
88 
89  std::ifstream m_Ifstream;
90  std::ofstream m_Ofstream;
92 
93  GiplImageIOInternals *m_Internal;
94 };
95 } // end namespace itk
96 
97 #endif // __itkGiplImageIO_h
98