2021-04-24 22:54:47 +00:00
|
|
|
#include <Magick++.h>
|
2020-07-14 14:53:51 +00:00
|
|
|
#include <napi.h>
|
2021-04-24 22:54:47 +00:00
|
|
|
|
2020-08-28 02:34:12 +00:00
|
|
|
#include <iostream>
|
2021-04-24 22:54:47 +00:00
|
|
|
#include <list>
|
2020-07-14 14:53:51 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Magick;
|
|
|
|
|
2021-04-24 22:54:47 +00:00
|
|
|
Napi::Value Watermark(const Napi::CallbackInfo &info) {
|
|
|
|
Napi::Env env = info.Env();
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
try {
|
|
|
|
Napi::Object obj = info[0].As<Napi::Object>();
|
2021-05-11 19:25:02 +00:00
|
|
|
Napi::Buffer<char> data = obj.Get("data").As<Napi::Buffer<char>>();
|
2021-04-26 14:47:03 +00:00
|
|
|
string water = obj.Get("water").As<Napi::String>().Utf8Value();
|
|
|
|
int gravity = obj.Get("gravity").As<Napi::Number>().Int32Value();
|
|
|
|
bool resize = obj.Has("resize")
|
|
|
|
? obj.Get("resize").As<Napi::Boolean>().Value()
|
|
|
|
: false;
|
|
|
|
bool append = obj.Has("append")
|
|
|
|
? obj.Get("append").As<Napi::Boolean>().Value()
|
|
|
|
: false;
|
|
|
|
bool mc = obj.Has("mc") ? obj.Get("mc").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;
|
2021-02-25 21:09:53 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
Blob blob;
|
2021-02-25 21:09:53 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
list<Image> frames;
|
|
|
|
list<Image> coalesced;
|
|
|
|
list<Image> mid;
|
|
|
|
Image watermark;
|
2021-05-11 19:25:02 +00:00
|
|
|
readImages(&frames, Blob(data.Data(), data.Length()));
|
2021-04-26 14:47:03 +00:00
|
|
|
watermark.read(water);
|
|
|
|
if (resize && append) {
|
|
|
|
string query(to_string(frames.front().baseColumns()) + "x");
|
|
|
|
watermark.scale(Geometry(query));
|
|
|
|
} else if (resize) {
|
|
|
|
string query("x" + to_string(frames.front().baseRows()));
|
|
|
|
watermark.scale(Geometry(query));
|
|
|
|
}
|
|
|
|
coalesceImages(&coalesced, frames.begin(), frames.end());
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
for (Image &image : coalesced) {
|
|
|
|
Image final;
|
|
|
|
if (append) {
|
|
|
|
list<Image> to_append;
|
|
|
|
to_append.push_back(image);
|
|
|
|
to_append.push_back(watermark);
|
|
|
|
appendImages(&final, to_append.begin(), to_append.end(), true);
|
|
|
|
final.repage();
|
|
|
|
} else if (mc) {
|
|
|
|
image.backgroundColor("white");
|
|
|
|
image.extent(Geometry(image.columns(), image.rows() + 15));
|
|
|
|
image.composite(watermark, Magick::GravityType(gravity),
|
|
|
|
Magick::OverCompositeOp);
|
|
|
|
final = image;
|
|
|
|
} else {
|
|
|
|
image.composite(watermark, Magick::GravityType(gravity),
|
|
|
|
Magick::OverCompositeOp);
|
|
|
|
final = image;
|
|
|
|
}
|
|
|
|
image.magick(type);
|
|
|
|
final.animationDelay(delay == 0 ? image.animationDelay() : delay);
|
|
|
|
mid.push_back(final);
|
2021-04-24 22:54:47 +00:00
|
|
|
}
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
optimizeTransparency(mid.begin(), mid.end());
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
if (type == "gif") {
|
|
|
|
for (Image &image : mid) {
|
|
|
|
image.quantizeDitherMethod(FloydSteinbergDitherMethod);
|
|
|
|
image.quantize();
|
|
|
|
}
|
2021-04-24 22:54:47 +00:00
|
|
|
}
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
writeImages(mid.begin(), mid.end(), &blob);
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
Napi::Object result = Napi::Object::New(env);
|
|
|
|
result.Set("data", Napi::Buffer<char>::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());
|
2021-05-03 21:01:48 +00:00
|
|
|
} catch (...) {
|
|
|
|
throw Napi::Error::New(env, "Unknown error");
|
2021-04-26 14:47:03 +00:00
|
|
|
}
|
2020-07-14 14:53:51 +00:00
|
|
|
}
|