2020-07-22 18:12:38 +00:00
|
|
|
#include <napi.h>
|
2021-04-24 22:54:47 +00:00
|
|
|
|
2022-04-25 04:23:21 +00:00
|
|
|
#include <vips/vips8>
|
2020-07-22 18:12:38 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2022-04-25 04:23:21 +00:00
|
|
|
using namespace vips;
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2021-04-24 22:54:47 +00:00
|
|
|
Napi::Value Sonic(const Napi::CallbackInfo &info) {
|
2020-07-22 18:12:38 +00:00
|
|
|
Napi::Env env = info.Env();
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Object result = Napi::Object::New(env);
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
try {
|
|
|
|
Napi::Object obj = info[0].As<Napi::Object>();
|
|
|
|
string text = obj.Get("text").As<Napi::String>().Utf8Value();
|
2022-04-17 15:40:56 +00:00
|
|
|
string basePath = obj.Get("basePath").As<Napi::String>().Utf8Value();
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2022-04-25 04:23:21 +00:00
|
|
|
string assetPath = basePath + "assets/images/sonic.jpg";
|
|
|
|
VImage bg = VImage::new_from_file(assetPath.c_str());
|
|
|
|
|
|
|
|
VImage textImage =
|
2022-09-23 22:24:28 +00:00
|
|
|
VImage::text(("<span foreground=\"white\">" + text + "</span>").c_str(),
|
|
|
|
VImage::option()
|
|
|
|
->set("rgba", true)
|
|
|
|
->set("align", VIPS_ALIGN_CENTRE)
|
|
|
|
->set("font", "Verdana, Twemoji Color Font")
|
|
|
|
->set("fontfile",
|
|
|
|
(basePath + "assets/fonts/twemoji.otf").c_str())
|
|
|
|
->set("width", 542)
|
|
|
|
->set("height", 390))
|
2022-04-25 04:23:21 +00:00
|
|
|
.gravity(VIPS_COMPASS_DIRECTION_CENTRE, 542, 390);
|
|
|
|
|
|
|
|
VImage out = bg.composite2(textImage, VIPS_BLEND_MODE_OVER,
|
|
|
|
VImage::option()->set("x", 391)->set("y", 84));
|
|
|
|
|
|
|
|
void *buf;
|
|
|
|
size_t length;
|
|
|
|
out.write_to_buffer(".png", &buf, &length);
|
|
|
|
|
|
|
|
result.Set("data", Napi::Buffer<char>::Copy(env, (char *)buf, length));
|
2021-04-26 14:47:03 +00:00
|
|
|
result.Set("type", "png");
|
|
|
|
} catch (std::exception const &err) {
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Error::New(env, err.what()).ThrowAsJavaScriptException();
|
2021-05-03 21:01:48 +00:00
|
|
|
} catch (...) {
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Error::New(env, "Unknown error").ThrowAsJavaScriptException();
|
2021-04-26 14:47:03 +00:00
|
|
|
}
|
2022-06-28 03:50:53 +00:00
|
|
|
|
|
|
|
vips_error_clear();
|
|
|
|
vips_thread_shutdown();
|
|
|
|
return result;
|
2020-07-22 18:12:38 +00:00
|
|
|
}
|