mrmBot-Matrix/natives/sonic.cc

40 lines
1.2 KiB
C++
Raw Normal View History

#include <Magick++.h>
2020-07-22 18:12:38 +00:00
#include <napi.h>
2020-07-22 18:12:38 +00:00
#include <list>
using namespace std;
using namespace Magick;
Napi::Value Sonic(const Napi::CallbackInfo &info) {
2020-07-22 18:12:38 +00:00
Napi::Env env = info.Env();
try {
Napi::Object obj = info[0].As<Napi::Object>();
string text = obj.Get("text").As<Napi::String>().Utf8Value();
2020-07-22 18:12:38 +00:00
Blob blob;
Image image;
Image text_image;
text_image.backgroundColor("none");
text_image.fontPointsize(72);
text_image.textGravity(Magick::CenterGravity);
text_image.font("Bitstream Vera Sans");
text_image.read("pango:<span foreground='white'>" + text + "</span>");
text_image.resize(Geometry(474, 332));
text_image.extent(Geometry("1024x538-435-145"), Magick::CenterGravity);
image.read("./assets/images/sonic.jpg");
image.composite(text_image, Geometry("+160+10"), Magick::OverCompositeOp);
image.magick("PNG");
image.write(&blob);
Napi::Object result = Napi::Object::New(env);
result.Set("data", Napi::Buffer<char>::Copy(env, (char *)blob.data(),
blob.length()));
result.Set("type", "png");
return result;
} catch (std::exception const &err) {
throw Napi::Error::New(env, err.what());
}
2020-07-22 18:12:38 +00:00
}