mrmBot-Matrix/natives/colors.cc

37 lines
1.0 KiB
C++
Raw Normal View History

#include <map>
#include <string>
2022-11-27 20:52:40 +00:00
#include <vips/vips8>
#include "common.h"
using namespace std;
2022-02-23 01:43:22 +00:00
using namespace vips;
VImage sepia = VImage::new_matrixv(3, 3, 0.3588, 0.7044, 0.1368, 0.2990, 0.5870,
0.1140, 0.2392, 0.4696, 0.0912);
2022-12-28 06:20:17 +00:00
char *Colors(string *type, char *BufferData, size_t BufferLength,
ArgumentMap Arguments, size_t *DataSize) {
string color = GetArgument<string>(Arguments, "color");
2022-11-27 20:52:40 +00:00
VOption *options = VImage::option()->set("access", "sequential");
2022-02-23 01:43:22 +00:00
2022-11-27 20:52:40 +00:00
VImage in =
VImage::new_from_buffer(BufferData, BufferLength, "",
2022-12-28 06:20:17 +00:00
*type == "gif" ? options->set("n", -1) : options)
2022-11-27 20:52:40 +00:00
.colourspace(VIPS_INTERPRETATION_sRGB);
2022-02-23 01:43:22 +00:00
2022-11-27 20:52:40 +00:00
VImage out;
2022-11-27 20:52:40 +00:00
if (color == "grayscale") {
out = in.colourspace(VIPS_INTERPRETATION_B_W);
} else if (color == "sepia") {
2022-12-22 04:40:17 +00:00
out = in.extract_band(0, VImage::option()->set("n", 3)).recomb(sepia);
2022-11-27 20:52:40 +00:00
}
2022-11-27 20:52:40 +00:00
void *buf;
2022-12-28 06:20:17 +00:00
out.write_to_buffer(("." + *type).c_str(), &buf, DataSize);
2022-11-27 20:52:40 +00:00
return (char *)buf;
2021-12-14 07:16:23 +00:00
}