#include #include #include using namespace std; using namespace Magick; class SwirlWorker : public Napi::AsyncWorker { public: SwirlWorker(Napi::Function& callback, string in_path, string type, int delay) : Napi::AsyncWorker(callback), in_path(in_path), type(type), delay(delay) {} ~SwirlWorker() {} void Execute() { list frames; list coalesced; list mid; list result; readImages(&frames, in_path); coalesceImages(&coalesced, frames.begin(), frames.end()); for (Image &image : coalesced) { image.swirl(180); image.magick(type); mid.push_back(image); } optimizeImageLayers(&result, mid.begin(), mid.end()); if (delay != 0) for_each(result.begin(), result.end(), animationDelayImage(delay)); writeImages(result.begin(), result.end(), &blob); } void OnOK() { Callback().Call({Env().Undefined(), Napi::Buffer::Copy(Env(), (char *)blob.data(), blob.length())}); } private: string in_path, type; int delay; Blob blob; }; Napi::Value Swirl(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); Napi::Object obj = info[0].As(); Napi::Function cb = info[1].As(); string path = obj.Get("path").As().Utf8Value(); string type = obj.Get("type").As().Utf8Value(); int delay = obj.Has("delay") ? obj.Get("delay").As().Int32Value() : 0; SwirlWorker* flopWorker = new SwirlWorker(cb, path, type, delay); flopWorker->Queue(); return env.Undefined(); }