//======================================================================== // // ImgWriter.h // // This file is licensed under the GPLv2 or later // // Copyright (C) 2009 Stefan Thomas // Copyright (C) 2009, 2011, 2018 Albert Astals Cid // Copyright (C) 2010 Adrian Johnson // Copyright (C) 2010 Brian Cameron // Copyright (C) 2011 Thomas Freitag // //======================================================================== #ifndef IMGWRITER_H #define IMGWRITER_H #include class ImgWriter { public: ImgWriter() = default; ImgWriter(const ImgWriter &) = delete; ImgWriter& operator=(const ImgWriter &other) = delete; virtual ~ImgWriter(); virtual bool init(FILE *f, int width, int height, int hDPI, int vDPI) = 0; virtual bool writePointers(unsigned char **rowPointers, int rowCount) = 0; virtual bool writeRow(unsigned char **row) = 0; virtual bool close() = 0; virtual bool supportCMYK() { return false; } }; #endif