mrmBot-Matrix/natives/resize.cc

73 lines
2.3 KiB
C++
Raw Normal View History

2020-07-22 18:12:38 +00:00
#include <napi.h>
#include <list>
#include <Magick++.h>
using namespace std;
using namespace Magick;
class ResizeWorker : public Napi::AsyncWorker {
public:
ResizeWorker(Napi::Function& callback, string in_path, bool stretch, bool wide, string type, int delay)
: Napi::AsyncWorker(callback), in_path(in_path), stretch(stretch), wide(wide), type(type), delay(delay) {}
2020-07-22 18:12:38 +00:00
~ResizeWorker() {}
void Execute() {
list <Image> frames;
list <Image> coalesced;
list <Image> blurred;
2020-07-22 18:12:38 +00:00
readImages(&frames, in_path);
coalesceImages(&coalesced, frames.begin(), frames.end());
for (Image &image : coalesced) {
2020-07-23 00:54:58 +00:00
if (stretch) {
image.resize(Geometry("512x512!"));
} else if (wide) {
image.resize(Geometry(to_string((image.baseColumns() * 19) / 2) + "x" + to_string(image.baseRows() / 2) + "!"));
2020-07-23 00:54:58 +00:00
} else {
image.scale(Geometry("10%"));
image.scale(Geometry("1000%"));
}
2020-07-22 18:12:38 +00:00
image.magick(type);
blurred.push_back(image);
}
optimizeTransparency(blurred.begin(), blurred.end());
2021-02-25 21:09:53 +00:00
if (type == "gif") {
for (Image &image : blurred) {
image.quantizeDitherMethod(FloydSteinbergDitherMethod);
image.quantize();
if (delay != 0) image.animationDelay(delay);
}
}
writeImages(blurred.begin(), blurred.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()), Napi::String::From(Env(), type)});
2020-07-22 18:12:38 +00:00
}
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;
bool stretch, wide;
2020-07-22 18:12:38 +00:00
};
Napi::Value Resize(const Napi::CallbackInfo &info)
{
Napi::Env env = info.Env();
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 stretch = obj.Has("stretch") ? obj.Get("stretch").As<Napi::Boolean>().Value() : false;
bool wide = obj.Has("wide") ? obj.Get("wide").As<Napi::Boolean>().Value() : false;
string type = obj.Get("type").As<Napi::String>().Utf8Value();
int delay = obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
2020-07-22 18:12:38 +00:00
ResizeWorker* explodeWorker = new ResizeWorker(cb, path, stretch, wide, type, delay);
2020-07-22 18:12:38 +00:00
explodeWorker->Queue();
return env.Undefined();
}