From 5e7d06b220d21e03d01334c9f445a8407916bb0d Mon Sep 17 00:00:00 2001 From: lns Date: Wed, 4 May 2022 12:42:05 +0200 Subject: ukrainify-me Signed-off-by: lns --- ImageManipulation.hpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ImageManipulation.hpp (limited to 'ImageManipulation.hpp') diff --git a/ImageManipulation.hpp b/ImageManipulation.hpp new file mode 100644 index 0000000..e372d96 --- /dev/null +++ b/ImageManipulation.hpp @@ -0,0 +1,29 @@ +#ifndef IMAGEMANIPULATION_H +#define IMAGEMANIPULATION_H 1 + +/* *************** */ +// required for CImg.h +#include +#include +#include +/* *************** */ + +#include "CImg.h" + +#include +#include + +class ImageManipulation { +public: + ImageManipulation(); + ~ImageManipulation(); + + void SetJpegFromBuffer(std::vector &image_buffer); + void SaveToFile(std::string filename); + void Ukrainify(float opacity = 0.5f); + +private: + cimg_library::CImg image; +}; + +#endif -- cgit v1.2.3