#include #include #include using namespace std; using namespace Magick; Napi::Value Reddit(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); try { Napi::Object obj = info[0].As(); string path = obj.Get("path").As().Utf8Value(); string text = obj.Get("caption").As().Utf8Value(); string type = obj.Get("type").As().Utf8Value(); int delay = obj.Has("delay") ? obj.Get("delay").As().Int32Value() : 0; Blob blob; list frames; list coalesced; list mid; Image watermark; Image text_image; readImages(&frames, path); watermark.read("./assets/images/reddit.png"); text_image.textGravity(Magick::WestGravity); text_image.font("Roboto"); text_image.fontPointsize(47); text_image.backgroundColor("none"); text_image.read("pango:" + text + ""); watermark.composite(text_image, Geometry("+375+46"), Magick::OverCompositeOp); string query(to_string(frames.front().baseColumns()) + "x"); watermark.scale(Geometry(query)); coalesceImages(&coalesced, frames.begin(), frames.end()); for (Image &image : coalesced) { Image final; list to_append; to_append.push_back(image); to_append.push_back(watermark); appendImages(&final, to_append.begin(), to_append.end(), true); final.repage(); image.magick(type); final.animationDelay(delay == 0 ? image.animationDelay() : delay); mid.push_back(final); } optimizeTransparency(mid.begin(), mid.end()); if (type == "gif") { for (Image &image : mid) { image.quantizeDitherMethod(FloydSteinbergDitherMethod); image.quantize(); } } writeImages(mid.begin(), mid.end(), &blob); Napi::Object result = Napi::Object::New(env); result.Set("data", Napi::Buffer::Copy(env, (char *)blob.data(), blob.length())); result.Set("type", type); return result; } catch (std::exception const &err) { throw Napi::Error::New(env, err.what()); } }