2020-07-22 18:12:38 +00:00
|
|
|
#include <napi.h>
|
2021-04-24 22:54:47 +00:00
|
|
|
|
2022-04-30 21:41:44 +00:00
|
|
|
#include <vips/vips8>
|
2020-07-22 18:12:38 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2022-04-30 21:41:44 +00:00
|
|
|
using namespace vips;
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2021-05-12 04:05:38 +00:00
|
|
|
void *memset16(void *m, uint16_t val, size_t count) {
|
|
|
|
uint16_t *buf = (uint16_t *)m;
|
|
|
|
|
|
|
|
while (count--) *buf++ = val;
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2022-04-30 21:41:44 +00:00
|
|
|
void vipsRemove(Napi::Env *env, Napi::Object *result, Napi::Buffer<char> data,
|
|
|
|
int speed) {
|
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
|
|
|
|
|
|
|
VImage in = VImage::new_from_buffer(data.Data(), data.Length(), "",
|
|
|
|
options->set("n", -1))
|
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
|
|
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
|
|
|
|
|
|
|
int width = in.width();
|
2022-06-20 06:05:06 +00:00
|
|
|
int pageHeight = vips_image_get_page_height(in.get_image());
|
2022-06-22 16:00:31 +00:00
|
|
|
int nPages = vips_image_get_n_pages(in.get_image());
|
2022-04-30 21:41:44 +00:00
|
|
|
|
|
|
|
vector<VImage> img;
|
2022-06-22 16:00:31 +00:00
|
|
|
for (int i = 0; i < nPages; i += speed) {
|
2022-06-20 06:05:06 +00:00
|
|
|
VImage img_frame = in.crop(0, i * pageHeight, width, pageHeight);
|
2022-04-30 21:41:44 +00:00
|
|
|
img.push_back(img_frame);
|
|
|
|
}
|
|
|
|
VImage out = VImage::arrayjoin(img, VImage::option()->set("across", 1));
|
2022-06-20 06:05:06 +00:00
|
|
|
out.set(VIPS_META_PAGE_HEIGHT, pageHeight);
|
2022-04-30 21:41:44 +00:00
|
|
|
|
|
|
|
void *buf;
|
|
|
|
size_t length;
|
|
|
|
out.write_to_buffer(".gif", &buf, &length);
|
|
|
|
|
|
|
|
result->Set("data", Napi::Buffer<char>::Copy(*env, (char *)buf, length));
|
|
|
|
}
|
|
|
|
|
2021-04-24 22:54:47 +00:00
|
|
|
Napi::Value Speed(const Napi::CallbackInfo &info) {
|
|
|
|
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>();
|
2021-05-11 19:25:02 +00:00
|
|
|
Napi::Buffer<char> data = obj.Get("data").As<Napi::Buffer<char>>();
|
2021-04-26 14:47:03 +00:00
|
|
|
bool slow =
|
|
|
|
obj.Has("slow") ? obj.Get("slow").As<Napi::Boolean>().Value() : false;
|
|
|
|
string type = obj.Get("type").As<Napi::String>().Utf8Value();
|
|
|
|
int speed =
|
|
|
|
obj.Has("speed") ? obj.Get("speed").As<Napi::Number>().Int32Value() : 2;
|
2021-01-27 02:30:04 +00:00
|
|
|
|
2021-05-12 04:05:38 +00:00
|
|
|
char *fileData = data.Data();
|
2021-04-20 01:15:32 +00:00
|
|
|
|
2022-01-15 06:04:34 +00:00
|
|
|
char *match = (char *)"\x00\x21\xF9\x04";
|
2021-04-20 01:15:32 +00:00
|
|
|
|
2022-06-07 23:26:40 +00:00
|
|
|
vector<uint16_t> old_delays;
|
|
|
|
bool removeFrames = false;
|
|
|
|
char *lastPos;
|
|
|
|
|
|
|
|
int amount = 0;
|
|
|
|
|
|
|
|
lastPos = (char *)memchr(fileData, '\x00', data.Length());
|
|
|
|
while (lastPos != NULL) {
|
|
|
|
if (memcmp(lastPos, match, 4) != 0) {
|
2021-05-18 04:44:28 +00:00
|
|
|
lastPos = (char *)memchr(lastPos + 1, '\x00',
|
2021-05-12 04:05:38 +00:00
|
|
|
(data.Length() - (lastPos - fileData)) - 1);
|
2022-06-07 23:26:40 +00:00
|
|
|
continue;
|
2021-04-19 16:04:24 +00:00
|
|
|
}
|
2022-06-07 23:26:40 +00:00
|
|
|
++amount;
|
|
|
|
uint16_t old_delay;
|
|
|
|
memcpy(&old_delay, lastPos + 5, 2);
|
|
|
|
old_delays.push_back(old_delay);
|
|
|
|
lastPos = (char *)memchr(lastPos + 1, '\x00',
|
|
|
|
(data.Length() - (lastPos - fileData)) - 1);
|
|
|
|
}
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2022-06-07 23:26:40 +00:00
|
|
|
int currentFrame = 0;
|
|
|
|
lastPos = (char *)memchr(fileData, '\x00', data.Length());
|
|
|
|
while (lastPos != NULL) {
|
|
|
|
if (memcmp(lastPos, match, 4) != 0) {
|
2021-05-18 04:44:28 +00:00
|
|
|
lastPos = (char *)memchr(lastPos + 1, '\x00',
|
2021-05-12 04:05:38 +00:00
|
|
|
(data.Length() - (lastPos - fileData)) - 1);
|
2022-06-07 23:26:40 +00:00
|
|
|
continue;
|
2021-04-24 22:54:47 +00:00
|
|
|
}
|
2022-06-07 23:26:40 +00:00
|
|
|
uint16_t new_delay = slow ? old_delays[currentFrame] * speed
|
|
|
|
: old_delays[currentFrame] / speed;
|
|
|
|
if (!slow && new_delay <= 1) {
|
|
|
|
removeFrames = true;
|
2021-05-12 04:05:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-06-07 23:26:40 +00:00
|
|
|
memset16(lastPos + 5, new_delay, 1);
|
|
|
|
lastPos = (char *)memchr(lastPos + 1, '\x00',
|
2021-05-12 04:05:38 +00:00
|
|
|
(data.Length() - (lastPos - fileData)) - 1);
|
2022-06-07 23:26:40 +00:00
|
|
|
++currentFrame;
|
2021-04-24 22:54:47 +00:00
|
|
|
}
|
2020-07-22 18:12:38 +00:00
|
|
|
|
2022-06-07 23:26:40 +00:00
|
|
|
result.Set("data", Napi::Buffer<char>::Copy(env, fileData, data.Length()));
|
|
|
|
|
|
|
|
if (removeFrames) vipsRemove(&env, &result, data, speed);
|
|
|
|
|
2021-04-26 14:47:03 +00:00
|
|
|
result.Set("type", type);
|
|
|
|
} 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;
|
2022-04-30 21:41:44 +00:00
|
|
|
}
|