SMIL  1.0.4
DImageIO_TIFF.hpp
1 /*
2  * Copyright (c) 2011-2016, Matthieu FAESSEL and ARMINES
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of Matthieu FAESSEL, or ARMINES nor the
14  * names of its contributors may be used to endorse or promote products
15  * derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef _D_IMAGE_IO_TIFF_H
31 #define _D_IMAGE_IO_TIFF_H
32 
33 #include <iostream>
34 
35 #include "Core/include/private/DTypes.hpp"
36 #include "Core/include/DCommon.h"
37 #include "Core/include/DErrors.h"
38 
39 using namespace std;
40 
41 #ifdef USE_TIFF
42 
43 namespace smil
44 {
48  /* *@{*/
49 
50  RES_T getTIFFFileInfo(const char *filename, ImageFileInfo &fInfo);
51 
52  template <class T> class Image;
53 
54  template <class T = void>
56  {
57  public:
59  {
60  }
61 
62  virtual RES_T getFileInfo(const char *filename, ImageFileInfo &fInfo)
63  {
64  return getTIFFFileInfo(filename, fInfo);
65  }
66 
67  virtual RES_T read(const char *filename, Image<T> &image)
68  {
69  return ImageFileHandler<T>::read(filename, image);
70  }
71  virtual RES_T write(const Image<T> &image, const char *filename)
72  {
73  return ImageFileHandler<T>::write(image, filename);
74  }
75  };
76 
77  // Specializations
78  IMAGEFILEHANDLER_TEMP_SPEC(TIFF, UINT8);
79  IMAGEFILEHANDLER_TEMP_SPEC(TIFF, UINT16);
80  IMAGEFILEHANDLER_TEMP_SPEC(TIFF, RGB);
81 
84 } // namespace smil
85 
86 #endif // USE_TIFF
87 
88 #endif // _D_IMAGE_IO_TIFF_H
Definition: DImageIO.hpp:45
Main Image class.
Definition: DImage.hpp:57
Definition: DImageIO_TIFF.hpp:56
RES_T write(const Image< T > &image, const char *filename)
Write image into file.
Definition: DImageIO.hxx:184
RES_T read(const char *filename, Image< T > &image)
Read image file.
Definition: DImageIO.hxx:107
RES_T getFileInfo(const char *filename, ImageFileInfo &fInfo)
Get information about an image file.
Definition: DImageIO.cpp:51
Definition: DCommonIO.h:72
Definition: DColor.h:88