2020-07-20 22:10:04 +00:00
|
|
|
#include <napi.h>
|
2021-04-24 22:54:47 +00:00
|
|
|
|
2022-02-27 21:37:51 +00:00
|
|
|
#include <vips/vips8>
|
2020-07-20 22:10:04 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2022-02-27 21:37:51 +00:00
|
|
|
using namespace vips;
|
2020-07-20 22:10:04 +00:00
|
|
|
|
2021-04-24 22:54:47 +00:00
|
|
|
Napi::Value Jpeg(const Napi::CallbackInfo &info) {
|
2020-07-20 22:10:04 +00:00
|
|
|
Napi::Env env = info.Env();
|
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
try {
|
|
|
|
Napi::Object obj = info[0].As<Napi::Object>();
|
2021-05-11 19:25:02 +00:00
|
|
|
Napi::Buffer<char> data = obj.Get("data").As<Napi::Buffer<char>>();
|
2022-02-27 21:37:51 +00:00
|
|
|
int quality = obj.Has("quality")
|
|
|
|
? obj.Get("quality").As<Napi::Number>().Int32Value()
|
|
|
|
: 0;
|
2021-06-29 22:26:22 +00:00
|
|
|
string type = obj.Get("type").As<Napi::String>().Utf8Value();
|
2020-07-20 22:10:04 +00:00
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
Napi::Object result = Napi::Object::New(env);
|
2021-06-29 22:26:22 +00:00
|
|
|
|
|
|
|
if (type == "gif") {
|
2022-02-27 21:37:51 +00:00
|
|
|
VImage in =
|
|
|
|
VImage::new_from_buffer(
|
|
|
|
data.Data(), data.Length(), "",
|
|
|
|
VImage::option()->set("access", "sequential")->set("n", -1))
|
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
|
|
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
2021-06-29 22:26:22 +00:00
|
|
|
|
2022-02-27 21:37:51 +00:00
|
|
|
int page_height = vips_image_get_page_height(in.get_image());
|
2021-06-29 22:26:22 +00:00
|
|
|
|
2022-04-25 04:23:21 +00:00
|
|
|
void *jpgBuf;
|
|
|
|
size_t jpgLength;
|
|
|
|
in.write_to_buffer(
|
|
|
|
".jpg", &jpgBuf, &jpgLength,
|
|
|
|
VImage::option()->set("Q", quality)->set("strip", true));
|
|
|
|
VImage final = VImage::new_from_buffer(jpgBuf, jpgLength, "");
|
2022-02-27 21:37:51 +00:00
|
|
|
final.set(VIPS_META_PAGE_HEIGHT, page_height);
|
2022-06-07 23:26:40 +00:00
|
|
|
final.set("delay", in.get_array_int("delay"));
|
2022-02-27 21:37:51 +00:00
|
|
|
|
|
|
|
void *buf;
|
|
|
|
size_t length;
|
2022-06-08 03:04:39 +00:00
|
|
|
final.write_to_buffer(
|
|
|
|
("." + type).c_str(), &buf, &length,
|
|
|
|
type == "gif" ? VImage::option()->set("dither", 0) : 0);
|
2021-06-29 22:26:22 +00:00
|
|
|
|
2022-02-27 21:37:51 +00:00
|
|
|
vips_thread_shutdown();
|
2021-06-29 22:26:22 +00:00
|
|
|
|
2022-02-27 21:37:51 +00:00
|
|
|
result.Set("data", Napi::Buffer<char>::Copy(env, (char *)buf, length));
|
2021-06-29 22:26:22 +00:00
|
|
|
result.Set("type", type);
|
|
|
|
} else {
|
2022-02-27 21:37:51 +00:00
|
|
|
VImage in = VImage::new_from_buffer(data.Data(), data.Length(), "");
|
|
|
|
void *buf;
|
|
|
|
size_t length;
|
|
|
|
in.write_to_buffer(
|
|
|
|
".jpg", &buf, &length,
|
|
|
|
VImage::option()->set("Q", quality)->set("strip", true));
|
|
|
|
|
|
|
|
vips_thread_shutdown();
|
2021-06-29 22:26:22 +00:00
|
|
|
|
2022-02-27 21:37:51 +00:00
|
|
|
result.Set("data", Napi::Buffer<char>::Copy(env, (char *)buf, length));
|
2021-06-29 22:26:22 +00:00
|
|
|
result.Set("type", "jpg");
|
|
|
|
}
|
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
return result;
|
|
|
|
} catch (std::exception const &err) {
|
|
|
|
throw Napi::Error::New(env, err.what());
|
2021-05-03 21:01:48 +00:00
|
|
|
} catch (...) {
|
|
|
|
throw Napi::Error::New(env, "Unknown error");
|
2021-04-26 14:47:03 +00:00
|
|
|
}
|
2022-01-21 04:52:29 +00:00
|
|
|
}
|