aboutsummaryrefslogtreecommitdiff
path: root/ImageManipulation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ImageManipulation.hpp')
-rw-r--r--ImageManipulation.hpp29
1 files changed, 29 insertions, 0 deletions
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 <cstdio>
+#include <jerror.h>
+#include <jpeglib.h>
+/* *************** */
+
+#include "CImg.h"
+
+#include <string>
+#include <vector>
+
+class ImageManipulation {
+public:
+ ImageManipulation();
+ ~ImageManipulation();
+
+ void SetJpegFromBuffer(std::vector<unsigned char> &image_buffer);
+ void SaveToFile(std::string filename);
+ void Ukrainify(float opacity = 0.5f);
+
+private:
+ cimg_library::CImg<unsigned char> image;
+};
+
+#endif