2022-06-25 17:40:52 +00:00
|
|
|
#include <napi.h>
|
|
|
|
|
|
|
|
#include <vips/vips8>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace vips;
|
|
|
|
|
|
|
|
Napi::Value ToGif(const Napi::CallbackInfo &info) {
|
|
|
|
Napi::Env env = info.Env();
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Object result = Napi::Object::New(env);
|
2022-06-25 17:40:52 +00:00
|
|
|
|
|
|
|
try {
|
2022-11-27 19:03:07 +00:00
|
|
|
Napi::Object obj = info[1].As<Napi::Object>();
|
2022-06-25 17:40:52 +00:00
|
|
|
Napi::Buffer<char> data = obj.Get("data").As<Napi::Buffer<char>>();
|
|
|
|
string type = obj.Get("type").As<Napi::String>().Utf8Value();
|
|
|
|
|
|
|
|
if (type == "gif") {
|
|
|
|
result.Set("data", data);
|
|
|
|
result.Set("type", "gif");
|
2022-06-28 03:50:53 +00:00
|
|
|
} else {
|
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
2022-06-25 17:40:52 +00:00
|
|
|
|
2022-06-28 20:09:30 +00:00
|
|
|
VImage in = VImage::new_from_buffer(data.Data(), data.Length(), "",
|
|
|
|
type == "webp" ? options->set("n", -1)
|
|
|
|
: options);
|
2022-06-25 17:40:52 +00:00
|
|
|
|
2022-06-28 03:50:53 +00:00
|
|
|
void *buf;
|
|
|
|
size_t length;
|
|
|
|
in.write_to_buffer(".gif", &buf, &length);
|
2022-06-25 17:40:52 +00:00
|
|
|
|
2022-06-28 03:50:53 +00:00
|
|
|
result.Set("data", Napi::Buffer<char>::Copy(env, (char *)buf, length));
|
|
|
|
result.Set("type", "gif");
|
|
|
|
}
|
2022-06-25 17:40:52 +00:00
|
|
|
} catch (std::exception const &err) {
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Error::New(env, err.what()).ThrowAsJavaScriptException();
|
2022-06-25 17:40:52 +00:00
|
|
|
} catch (...) {
|
2022-06-28 03:50:53 +00:00
|
|
|
Napi::Error::New(env, "Unknown error").ThrowAsJavaScriptException();
|
2022-06-25 17:40:52 +00:00
|
|
|
}
|
2022-06-28 03:50:53 +00:00
|
|
|
|
|
|
|
vips_error_clear();
|
|
|
|
vips_thread_shutdown();
|
|
|
|
return result;
|
2022-06-25 17:40:52 +00:00
|
|
|
}
|