1 #ifndef MSP_GRAPHICS_IMAGELOADER_H_
2 #define MSP_GRAPHICS_IMAGELOADER_H_
9 class unsupported_image_format: public std::runtime_error
12 unsupported_image_format(const std::string &w): std::runtime_error(w) { }
13 virtual ~unsupported_image_format() throw() { }
16 class bad_image_data: public std::runtime_error
19 bad_image_data(const std::string &w): std::runtime_error(w) { }
20 virtual ~bad_image_data() throw() { }
32 virtual ~RegisterBase() { }
34 virtual unsigned get_signature_size() const = 0;
35 virtual bool detect(const std::string &) const = 0;
36 virtual ImageLoader *create(IO::Seekable &) const = 0;
41 class Register: RegisterBase
44 virtual unsigned get_signature_size() const { return T::get_signature_size(); }
45 virtual bool detect(const std::string &s) const { return T::detect(s); }
46 virtual T *create(IO::Seekable &io) const { return new T(io); }
52 static std::list<RegisterBase *> &get_registered_loaders();
53 static bool registered_loaders_changed;
54 static bool signature_size_compare(RegisterBase *, RegisterBase *);
59 virtual ~ImageLoader();
61 static ImageLoader *open_file(const std::string &);
62 static ImageLoader *open_io(IO::Seekable &);
64 virtual void load(Image::Data &) = 0;
67 } // namespace Graphics