#include #include #include using namespace std; using namespace Magick; Napi::Value Spin(const Napi::CallbackInfo &info) { Napi::Env env = info.Env(); try { Napi::Object obj = info[0].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; Blob blob; list frames; list coalesced; list mid; readImages(&frames, path); coalesceImages(&coalesced, frames.begin(), frames.end()); if (type != "gif") { list::iterator it = coalesced.begin(); for (int i = 0; i < 29; ++i) { coalesced.push_back(*it); } } int i = 0; for (Image &image : coalesced) { image.virtualPixelMethod(Magick::TransparentVirtualPixelMethod); image.scale(Geometry("256x256")); image.alphaChannel(Magick::SetAlphaChannel); double rotation[1] = {360 * i / coalesced.size()}; image.distort(Magick::ScaleRotateTranslateDistortion, 1, rotation); image.magick("GIF"); mid.push_back(image); i++; } for_each(mid.begin(), mid.end(), gifDisposeMethodImage(Magick::BackgroundDispose)); optimizeTransparency(mid.begin(), mid.end()); if (delay != 0) { for_each(mid.begin(), mid.end(), animationDelayImage(delay)); } else if (type != "gif") { for_each(mid.begin(), mid.end(), animationDelayImage(5)); } 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", "gif"); return result; } catch (std::exception const &err) { throw Napi::Error::New(env, err.what()); } }