123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- #ifndef _IMAGEFILE_IMAGE_H
- #define _IMAGEFILE_IMAGE_H
- #include <string>
- #include <core/basics/types.h>
- #ifdef NICE_USELIB_PNG
- #include <png.h>
- #endif
- namespace NICE {
- template<class P> class GrayColorImageCommonImplementationT;
-
- class ImageFile
- {
- public:
- typedef enum{FormatUnknown,
- PBM_IMAGE_TEXT, PGM_IMAGE_TEXT, PPM_IMAGE_TEXT,
- PBM_RAW, PGM_RAW, PPM_RAW, PAM_RAW,
- PNG, JPG} Format;
- class Header
- {
- public:
- int width;
- int height;
- int bitdepth;
- int channel;
- Header() : width(-1), height(-1),
- bitdepth(-1), channel(-1) {};
- };
- private:
- std::string filename;
- ImageFile::Format fileformat;
- ImageFile::Header fileheader;
- int datapos;
-
-
- void getPXMHeader();
- #ifdef NICE_USELIB_PNG
-
-
- void getPNGHeader();
- #endif
-
- #ifdef NICE_USELIB_JPG
-
-
- void getJPGHeader();
- #endif
-
-
- void getMyHeader();
- public:
-
-
- ImageFile();
-
-
- ImageFile(const std::string &filename, Format type=FormatUnknown);
-
-
- ImageFile(const ImageFile& arg);
-
- virtual ~ImageFile();
-
-
- ImageFile& operator=(const ImageFile& ex);
-
-
- const std::string &fileName() const { return filename; }
-
-
- ImageFile::Format fileType() const { return fileformat; }
-
-
- bool isGray() const;
-
-
- const ImageFile::Header &getHeader();
- uint height();
- uint width();
-
-
- std::string getComment();
-
-
- template<class P>
- void reader(GrayColorImageCommonImplementationT<P> *image);
-
-
- template<class P>
- void writer(const GrayColorImageCommonImplementationT<P> *image) const;
-
-
- template <class P>
- void readerPXM(GrayColorImageCommonImplementationT<P> *image);
-
-
-
- template <class P>
- void writerPXM(const GrayColorImageCommonImplementationT<P> *image) const;
- #ifdef NICE_USELIB_PNG
-
-
- template<class P>
- void readerPNG(GrayColorImageCommonImplementationT<P> *image);
-
-
- template<class P>
- void writerPNG(const GrayColorImageCommonImplementationT<P> *image) const;
- #endif
- #ifdef NICE_USELIB_JPG
-
-
- template<class P>
- void readerJPG(GrayColorImageCommonImplementationT<P> *image);
-
-
-
- template<class P>
- void writerJPG(const GrayColorImageCommonImplementationT<P> *image, const int quality=100) const;
- #endif
- #ifdef NICE_USELIB_LIBMAGICK
- template<class P>
- void readerMagick(GrayColorImageCommonImplementationT<P> *image);
-
- template<class P>
- void writerMagick(const GrayColorImageCommonImplementationT<P> *image) const;
- #endif
-
-
- static ImageFile::Format name2Format(const std::string &filename);
-
- };
- }
- #include <core/image/GrayColorImageCommonImplementationT.h>
- #ifdef __GNUC__
- #include "core/image/ImageFile.tcc"
- #endif
- #endif
|