2020-07-23 20:49:34 +00:00
|
|
|
#include <napi.h>
|
|
|
|
#include <list>
|
|
|
|
#include <Magick++.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Magick;
|
|
|
|
|
|
|
|
class CaptionWorker : public Napi::AsyncWorker {
|
|
|
|
public:
|
|
|
|
CaptionWorker(Napi::Function& callback, string caption, string in_path, string type, int delay)
|
|
|
|
: Napi::AsyncWorker(callback), caption(caption), in_path(in_path), type(type), delay(delay) {}
|
|
|
|
~CaptionWorker() {}
|
|
|
|
|
|
|
|
void Execute() {
|
2020-08-28 02:34:12 +00:00
|
|
|
list <Image> frames;
|
|
|
|
list <Image> coalesced;
|
|
|
|
list <Image> captioned;
|
|
|
|
list <Image> result;
|
2020-07-23 20:49:34 +00:00
|
|
|
readImages(&frames, in_path);
|
|
|
|
|
|
|
|
size_t width = frames.front().baseColumns();
|
|
|
|
string query(to_string(width - ((width / 25) * 2)) + "x");
|
|
|
|
Image caption_image(Geometry(query), Color("white"));
|
|
|
|
caption_image.fillColor("black");
|
|
|
|
caption_image.alpha(true);
|
2020-11-05 21:40:18 +00:00
|
|
|
caption_image.font("Futura");
|
2020-11-10 04:04:29 +00:00
|
|
|
caption_image.fontPointsize(width / 13);
|
2020-07-23 20:49:34 +00:00
|
|
|
caption_image.textGravity(Magick::CenterGravity);
|
2020-11-05 21:40:18 +00:00
|
|
|
caption_image.read("pango:" + caption);
|
2020-11-10 04:04:29 +00:00
|
|
|
caption_image.extent(Geometry(width, caption_image.rows() + (width / 13)), Magick::CenterGravity);
|
2020-07-23 20:49:34 +00:00
|
|
|
|
|
|
|
coalesceImages(&coalesced, frames.begin(), frames.end());
|
|
|
|
|
|
|
|
for (Image &image : coalesced) {
|
|
|
|
Image appended;
|
2020-08-28 02:34:12 +00:00
|
|
|
list <Image> images;
|
2020-07-23 20:49:34 +00:00
|
|
|
image.backgroundColor("white");
|
|
|
|
images.push_back(caption_image);
|
|
|
|
images.push_back(image);
|
|
|
|
appendImages(&appended, images.begin(), images.end(), true);
|
2020-09-10 02:36:20 +00:00
|
|
|
appended.repage();
|
2020-07-23 20:49:34 +00:00
|
|
|
appended.magick(type);
|
2021-01-27 02:30:04 +00:00
|
|
|
appended.animationDelay(delay == 0 ? image.animationDelay() : delay);
|
2020-07-23 20:49:34 +00:00
|
|
|
captioned.push_back(appended);
|
|
|
|
}
|
|
|
|
|
2021-02-13 00:22:36 +00:00
|
|
|
optimizeTransparency(captioned.begin(), captioned.end());
|
|
|
|
writeImages(captioned.begin(), captioned.end(), &blob);
|
2020-07-23 20:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OnOK() {
|
|
|
|
Callback().Call({Env().Undefined(), Napi::Buffer<char>::Copy(Env(), (char *)blob.data(), blob.length())});
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
string caption, in_path, type;
|
2020-07-28 14:38:55 +00:00
|
|
|
int delay;
|
2020-07-23 20:49:34 +00:00
|
|
|
Blob blob;
|
|
|
|
};
|
|
|
|
|
|
|
|
Napi::Value Caption(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();
|
|
|
|
string caption = obj.Get("caption").As<Napi::String>().Utf8Value();
|
|
|
|
string type = obj.Get("type").As<Napi::String>().Utf8Value();
|
2021-01-27 02:30:04 +00:00
|
|
|
int delay = obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
|
2020-07-23 20:49:34 +00:00
|
|
|
|
2020-08-28 02:34:12 +00:00
|
|
|
CaptionWorker* captionWorker = new CaptionWorker(cb, caption, path, type, delay);
|
2020-07-23 20:49:34 +00:00
|
|
|
captionWorker->Queue();
|
|
|
|
return env.Undefined();
|
|
|
|
}
|