92 lines
No EOL
3 KiB
C++
92 lines
No EOL
3 KiB
C++
#include <Magick++.h>
|
|
#include <napi.h>
|
|
|
|
#include <iostream>
|
|
#include <list>
|
|
|
|
using namespace std;
|
|
using namespace Magick;
|
|
|
|
Napi::Value CaptionTwo(const Napi::CallbackInfo &info) {
|
|
Napi::Env env = info.Env();
|
|
|
|
try {
|
|
Napi::Object obj = info[0].As<Napi::Object>();
|
|
Napi::Buffer<char> data = obj.Get("data").As<Napi::Buffer<char>>();
|
|
string caption = obj.Get("caption").As<Napi::String>().Utf8Value();
|
|
bool top = obj.Get("top").As<Napi::Boolean>().Value();
|
|
string font = obj.Get("font").As<Napi::String>().Utf8Value();
|
|
string type = obj.Get("type").As<Napi::String>().Utf8Value();
|
|
int delay =
|
|
obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
|
|
|
|
Blob blob;
|
|
|
|
list<Image> frames;
|
|
list<Image> coalesced;
|
|
list<Image> captioned;
|
|
Blob caption_blob;
|
|
try {
|
|
readImages(&frames, Blob(data.Data(), data.Length()));
|
|
} catch (Magick::WarningCoder &warning) {
|
|
cerr << "Coder Warning: " << warning.what() << endl;
|
|
} catch (Magick::Warning &warning) {
|
|
cerr << "Warning: " << warning.what() << endl;
|
|
}
|
|
|
|
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.font("Helvetica Neue");
|
|
caption_image.fontPointsize(width / 17);
|
|
caption_image.read("pango:<span font_family=\"" +
|
|
(font == "roboto" ? "Roboto Condensed" : font) +
|
|
"\" weight=\"" + (font != "impact" ? "bold" : "normal") +
|
|
"\">" + caption + "</span>");
|
|
caption_image.extent(Geometry(width, caption_image.rows() + (width / 25)),
|
|
Magick::CenterGravity);
|
|
|
|
coalesceImages(&coalesced, frames.begin(), frames.end());
|
|
|
|
for (Image &image : coalesced) {
|
|
Image appended;
|
|
list<Image> images;
|
|
image.backgroundColor("white");
|
|
if (top) {
|
|
images.push_back(caption_image);
|
|
images.push_back(image);
|
|
} else {
|
|
images.push_back(image);
|
|
images.push_back(caption_image);
|
|
}
|
|
appendImages(&appended, images.begin(), images.end(), true);
|
|
appended.repage();
|
|
appended.magick(type);
|
|
appended.animationDelay(delay == 0 ? image.animationDelay() : delay);
|
|
appended.gifDisposeMethod(Magick::BackgroundDispose);
|
|
captioned.push_back(appended);
|
|
}
|
|
|
|
optimizeTransparency(captioned.begin(), captioned.end());
|
|
|
|
if (type == "gif") {
|
|
for (Image &image : captioned) {
|
|
image.quantizeDither(false);
|
|
image.quantize();
|
|
}
|
|
}
|
|
|
|
writeImages(captioned.begin(), captioned.end(), &blob);
|
|
|
|
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());
|
|
} catch (...) {
|
|
throw Napi::Error::New(env, "Unknown error");
|
|
}
|
|
} |