mrmBot-Matrix/natives/gamexplain.cc

54 lines
1.4 KiB
C++
Raw Normal View History

#include <Magick++.h>
2020-07-16 14:33:35 +00:00
#include <napi.h>
2020-07-16 14:33:35 +00:00
#include <list>
using namespace std;
using namespace Magick;
Napi::Value Gamexplain(const Napi::CallbackInfo &info) {
Napi::Env env = info.Env();
2021-02-25 21:09:53 +00:00
Napi::Object obj = info[0].As<Napi::Object>();
string path = obj.Get("path").As<Napi::String>().Utf8Value();
string type = obj.Get("type").As<Napi::String>().Utf8Value();
int delay =
obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
2021-02-25 21:09:53 +00:00
Blob blob;
2020-07-16 14:33:35 +00:00
list<Image> frames;
list<Image> coalesced;
list<Image> mid;
Image watermark;
readImages(&frames, path);
watermark.read("./assets/images/gamexplain.png");
coalesceImages(&coalesced, frames.begin(), frames.end());
for (Image &image : coalesced) {
image.backgroundColor("white");
image.scale(Geometry("1181x571!"));
image.extent(Geometry("1200x675-10-92"));
image.composite(watermark, Geometry("+0+0"), Magick::OverCompositeOp);
image.magick(type);
mid.push_back(image);
2020-07-16 14:33:35 +00:00
}
optimizeTransparency(mid.begin(), mid.end());
2020-07-16 14:33:35 +00:00
if (type == "gif") {
for (Image &image : mid) {
image.quantizeDither(false);
image.quantize();
if (delay != 0) image.animationDelay(delay);
}
}
2020-07-16 14:33:35 +00:00
writeImages(mid.begin(), mid.end(), &blob);
2020-07-16 14:33:35 +00:00
Napi::Object result = Napi::Object::New(env);
result.Set("data",
Napi::Buffer<char>::Copy(env, (char *)blob.data(), blob.length()));
result.Set("type", type);
return result;
2020-07-16 14:33:35 +00:00
}