2022-11-27 19:03:07 +00:00
|
|
|
#include <map>
|
2022-11-27 20:52:40 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vips/vips8>
|
2020-07-12 15:14:39 +00:00
|
|
|
|
2022-12-28 23:01:50 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2020-07-12 15:14:39 +00:00
|
|
|
using namespace std;
|
2022-02-23 01:43:22 +00:00
|
|
|
using namespace vips;
|
2020-07-12 15:14:39 +00:00
|
|
|
|
2023-03-09 01:36:39 +00:00
|
|
|
char *Blur(string type, string *outType, char *BufferData, size_t BufferLength,
|
2022-12-03 19:49:28 +00:00
|
|
|
ArgumentMap Arguments, size_t *DataSize) {
|
|
|
|
bool sharp = GetArgument<bool>(Arguments, "sharp");
|
2022-11-27 20:52:40 +00:00
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
2021-04-26 14:47:03 +00:00
|
|
|
|
2022-11-27 20:52:40 +00:00
|
|
|
VImage in =
|
2022-11-27 19:03:07 +00:00
|
|
|
VImage::new_from_buffer(BufferData, BufferLength, "",
|
2023-03-09 01:36:39 +00:00
|
|
|
type == "gif" ? options->set("n", -1) : options)
|
2022-11-27 20:52:40 +00:00
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
2022-11-27 19:03:07 +00:00
|
|
|
|
2022-12-28 23:01:50 +00:00
|
|
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
2021-04-26 14:47:03 +00:00
|
|
|
|
2022-11-27 20:52:40 +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);
|
2020-07-12 15:14:39 +00:00
|
|
|
|
2022-11-27 20:52:40 +00:00
|
|
|
void *buf;
|
2023-03-09 01:36:39 +00:00
|
|
|
out.write_to_buffer(("." + *outType).c_str(), &buf, DataSize);
|
2022-11-27 19:03:07 +00:00
|
|
|
|
2022-11-27 20:52:40 +00:00
|
|
|
return (char *)buf;
|
2022-01-15 06:04:34 +00:00
|
|
|
}
|