#include #include #include #include using namespace std; using namespace Magick; Napi::Value Circle(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); Napi::Object result = Napi::Object::New(env); try { Napi::Object obj = info[0].As(); Napi::Buffer data = obj.Get("data").As>(); string type = obj.Get("type").As().Utf8Value(); Blob blob; list frames; list coalesced; list blurred; try { readImages(&frames, Blob(data.Data(), data.Length())); } catch (Magick::WarningCoder &warning) { cerr << "Coder Warning: " << warning.what() << endl; } catch (Magick::Warning &warning) { cerr << "Warning: " << warning.what() << endl; } coalesceImages(&coalesced, frames.begin(), frames.end()); for (Image &image : coalesced) { image.rotationalBlur(10); image.magick(type); blurred.push_back(image); } optimizeTransparency(blurred.begin(), blurred.end()); if (type == "gif") { for (Image &image : blurred) { image.quantizeDitherMethod(FloydSteinbergDitherMethod); image.quantize(); } } writeImages(blurred.begin(), blurred.end(), &blob); result.Set("data", Napi::Buffer::Copy(env, (char *)blob.data(), blob.length())); result.Set("type", type); } catch (std::exception const &err) { Napi::Error::New(env, err.what()).ThrowAsJavaScriptException(); } catch (...) { Napi::Error::New(env, "Unknown error").ThrowAsJavaScriptException(); } return result; }