2020-07-22 18:12:38 +00:00
|
|
|
#include <napi.h>
|
|
|
|
#include <list>
|
|
|
|
#include <Magick++.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Magick;
|
|
|
|
|
|
|
|
class ReverseWorker : public Napi::AsyncWorker {
|
|
|
|
public:
|
2020-07-23 00:54:58 +00:00
|
|
|
ReverseWorker(Napi::Function& callback, string in_path, bool soos, int delay)
|
|
|
|
: Napi::AsyncWorker(callback), in_path(in_path), soos(soos), delay(delay) {}
|
2020-07-22 18:12:38 +00:00
|
|
|
~ReverseWorker() {}
|
|
|
|
|
|
|
|
void Execute() {
|
|
|
|
list<Image> frames;
|
|
|
|
list<Image> coalesced;
|
|
|
|
readImages(&frames, in_path);
|
|
|
|
coalesceImages(&coalesced, frames.begin(), frames.end());
|
|
|
|
|
2020-07-23 00:54:58 +00:00
|
|
|
if (soos) {
|
|
|
|
list<Image> copy = coalesced;
|
|
|
|
copy.reverse();
|
|
|
|
coalesced.insert(coalesced.end(), copy.begin(), copy.end());
|
|
|
|
} else {
|
|
|
|
coalesced.reverse();
|
|
|
|
}
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2020-09-12 18:57:25 +00:00
|
|
|
for_each(coalesced.begin(), coalesced.end(), magickImage("GIF"));
|
2020-09-11 02:04:09 +00:00
|
|
|
|
2021-02-13 00:22:36 +00:00
|
|
|
optimizeTransparency(coalesced.begin(), coalesced.end());
|
2021-02-25 21:09:53 +00:00
|
|
|
|
|
|
|
if (type == "gif") {
|
|
|
|
for (Image &image : coalesced) {
|
|
|
|
image.quantizeDither(false);
|
|
|
|
image.quantize();
|
|
|
|
if (delay != 0) image.animationDelay(delay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-13 00:22:36 +00:00
|
|
|
writeImages(coalesced.begin(), coalesced.end(), &blob);
|
2020-07-22 18:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OnOK() {
|
|
|
|
Callback().Call({Env().Undefined(), Napi::Buffer<char>::Copy(Env(), (char *)blob.data(), blob.length())});
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
string in_path, type;
|
2020-07-28 14:38:55 +00:00
|
|
|
int delay, amount;
|
2020-07-22 18:12:38 +00:00
|
|
|
Blob blob;
|
2020-07-23 00:54:58 +00:00
|
|
|
bool soos;
|
2020-07-22 18:12:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Napi::Value Reverse(const Napi::CallbackInfo &info)
|
|
|
|
{
|
|
|
|
Napi::Env env = info.Env();
|
|
|
|
|
2020-08-28 02:34:12 +00:00
|
|
|
Napi::Object obj = info[0].As<Napi::Object>();
|
|
|
|
Napi::Function cb = info[1].As<Napi::Function>();
|
|
|
|
string path = obj.Get("path").As<Napi::String>().Utf8Value();
|
|
|
|
bool soos = obj.Has("soos") ? obj.Get("soos").As<Napi::Boolean>().Value() : false;
|
2021-01-27 02:30:04 +00:00
|
|
|
int delay = obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2020-08-28 02:34:12 +00:00
|
|
|
ReverseWorker* explodeWorker = new ReverseWorker(cb, path, soos, delay);
|
2020-07-22 18:12:38 +00:00
|
|
|
explodeWorker->Queue();
|
|
|
|
return env.Undefined();
|
|
|
|
}
|