00001
00002
00003
00004
00005
00006 #ifndef H_CPPPDFImage2RGB
00007 #define H_CPPPDFImage2RGB
00008
00009 #include <Filters/Filter.h>
00010 #include <C/Filters/TRN_Filter.h>
00011 #include <PDF/Element.h>
00012 #include <PDF/Image.h>
00013
00014 namespace pdftron {
00015 namespace PDF {
00016
00021 class Image2RGB : public Filters::Filter
00022 {
00023 public:
00024 Image2RGB(Element image_element);
00025 Image2RGB(SDF::Obj image_xobject);
00026 Image2RGB(Image image);
00027 };
00028
00029 #include <Impl/Image2RGB.inl>
00030
00031 };
00032 };
00033
00034 #endif
00035