#include #include #include using namespace std; using namespace Magick; Napi::Value Whisper(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); try { Napi::Object obj = info[0].As(); Napi::Buffer data = obj.Get("data").As>(); string caption = 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 captioned; Blob caption_blob; readImages(&frames, Blob(data.Data(), data.Length())); size_t width = frames.front().baseColumns(); size_t height = frames.front().baseRows(); int dividedWidth = width / 150; Image caption_image; caption_image.size(Geometry(to_string(width) + "x" + to_string(height))); caption_image.backgroundColor("none"); caption_image.fillColor("white"); caption_image.font("Upright"); caption_image.fontPointsize(width / 6); caption_image.textGravity(Magick::CenterGravity); caption_image.read("pango:" + caption); caption_image.trim(); caption_image.repage(); Image caption_fill = caption_image; caption_fill.extent(Geometry(width, height), Magick::CenterGravity); caption_fill.channel(Magick::AlphaChannel); caption_fill.morphology(Magick::EdgeOutMorphology, "Octagon", dividedWidth != 0 ? dividedWidth : 1); caption_fill.backgroundColor("black"); caption_fill.alphaChannel(Magick::ShapeAlphaChannel); size_t fill_width = caption_fill.columns(); size_t fill_height = caption_fill.rows(); caption_image.extent(Geometry(fill_width, fill_height), Magick::CenterGravity); caption_image.composite(caption_fill, Magick::CenterGravity, Magick::DstOverCompositeOp); coalesceImages(&coalesced, frames.begin(), frames.end()); for (Image &image : coalesced) { list images; image.composite(caption_image, Magick::CenterGravity, Magick::OverCompositeOp); image.magick(type); image.animationDelay(delay == 0 ? image.animationDelay() : delay); captioned.push_back(image); } optimizeTransparency(captioned.begin(), captioned.end()); if (type == "gif") { for (Image &image : captioned) { image.quantizeDither(false); image.quantize(); } } writeImages(captioned.begin(), captioned.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()); } catch (...) { throw Napi::Error::New(env, "Unknown error"); } }