2020-07-12 15:14:39 +00:00
|
|
|
#include <napi.h>
|
|
|
|
#include <list>
|
|
|
|
#include <Magick++.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Magick;
|
|
|
|
|
2020-07-14 14:53:51 +00:00
|
|
|
class FlipWorker : public Napi::AsyncWorker {
|
2020-07-12 15:14:39 +00:00
|
|
|
public:
|
2020-07-14 14:53:51 +00:00
|
|
|
FlipWorker(Napi::Function& callback, string in_path, string type, int delay)
|
2020-07-12 15:14:39 +00:00
|
|
|
: Napi::AsyncWorker(callback), in_path(in_path), type(type), delay(delay) {}
|
2020-07-14 14:53:51 +00:00
|
|
|
~FlipWorker() {}
|
2020-07-12 15:14:39 +00:00
|
|
|
|
|
|
|
void Execute() {
|
|
|
|
list<Image> frames;
|
|
|
|
list<Image> coalesced;
|
|
|
|
list<Image> mid;
|
|
|
|
list<Image> result;
|
|
|
|
readImages(&frames, in_path);
|
|
|
|
coalesceImages(&coalesced, frames.begin(), frames.end());
|
|
|
|
|
|
|
|
for (Image &image : coalesced) {
|
2020-07-14 14:53:51 +00:00
|
|
|
image.flip();
|
2020-07-12 15:14:39 +00:00
|
|
|
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<char>::Copy(Env(), (char *)blob.data(), blob.length())});
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
string in_path, type;
|
|
|
|
int delay, wordlength, i, n;
|
|
|
|
size_t bytes, type_size;
|
|
|
|
Blob blob;
|
|
|
|
};
|
|
|
|
|
2020-07-14 14:53:51 +00:00
|
|
|
Napi::Value Flip(const Napi::CallbackInfo &info)
|
2020-07-12 15:14:39 +00:00
|
|
|
{
|
|
|
|
Napi::Env env = info.Env();
|
|
|
|
|
|
|
|
string in_path = info[0].As<Napi::String>().Utf8Value();
|
|
|
|
string type = info[1].As<Napi::String>().Utf8Value();
|
|
|
|
int delay = info[2].As<Napi::Number>().Int32Value();
|
|
|
|
Napi::Function cb = info[3].As<Napi::Function>();
|
|
|
|
|
2020-07-14 14:53:51 +00:00
|
|
|
FlipWorker* flipWorker = new FlipWorker(cb, in_path, type, delay);
|
|
|
|
flipWorker->Queue();
|
2020-07-12 15:14:39 +00:00
|
|
|
return env.Undefined();
|
|
|
|
}
|