mrmBot-Matrix/natives/blur.cc

36 lines
1.0 KiB
C++
Raw Normal View History

#include "common.h"
2022-02-23 01:43:22 +00:00
#include <vips/vips8>
#include <string>
#include <map>
using namespace std;
2022-02-23 01:43:22 +00:00
using namespace vips;
char* Blur(string type, char* BufferData, size_t BufferLength, map<string, string> Arguments, size_t* DataSize) {
string caption = Arguments["caption"];
string font = MAP_GET(Arguments, "font");
bool sharp = MAP_GET(Arguments, "sharp") == "true";
2022-02-23 01:43:22 +00:00
VOption *options = VImage::option()->set("access", "sequential");
2022-02-23 01:43:22 +00:00
VImage in =
VImage::new_from_buffer(BufferData, BufferLength, "",
type == "gif" ? options->set("n", -1) : options)
.colourspace(VIPS_INTERPRETATION_sRGB);
2022-02-23 01:43:22 +00:00
if (!in.has_alpha()) in = in.bandjoin(255);
2022-02-23 01:43:22 +00:00
// TODO: find a better way to calculate the intensity for GIFs without
// splitting frames
VImage out = sharp ? in.sharpen(VImage::option()->set("sigma", 3))
: in.gaussblur(15);
2022-02-23 01:43:22 +00:00
void *buf;
out.write_to_buffer(("." + type).c_str(), &buf, DataSize);
vips_error_clear();
vips_thread_shutdown();
return (char*) buf;
}