#include #include #include #include using namespace std; using namespace Magick; Napi::Value Deepfry(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); try { Napi::Object obj = info[0].As(); Napi::Buffer data = obj.Get("data").As>(); 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 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) { Blob temp; image.colorSpace(Magick::sRGBColorspace); image.level(16383.75, 39321); image.quality(1); image.magick("JPEG"); image.write(&temp); Image newImage(temp); newImage.magick(type); newImage.animationDelay(delay == 0 ? image.animationDelay() : delay); blurred.push_back(newImage); } optimizeTransparency(blurred.begin(), blurred.end()); if (type == "gif") { for (Image &image : blurred) { image.quantizeDitherMethod(FloydSteinbergDitherMethod); image.quantize(); } } writeImages(blurred.begin(), blurred.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"); } }