mrmBot-Matrix/natives/togif.cc

26 lines
619 B
C++
Raw Normal View History

#include <vips/vips8>
#include "common.h"
using namespace std;
using namespace vips;
2022-12-28 06:20:17 +00:00
char *ToGif(string *type, char *BufferData, size_t BufferLength,
ArgumentMap Arguments, size_t *DataSize) {
if (*type == "gif") {
*DataSize = BufferLength;
return BufferData;
} else {
VOption *options = VImage::option()->set("access", "sequential");
VImage in = VImage::new_from_buffer(
BufferData, BufferLength, "",
*type == "webp" ? options->set("n", -1) : options);
2022-06-28 03:50:53 +00:00
2022-12-28 06:20:17 +00:00
void *buf;
in.write_to_buffer(".gif", &buf, DataSize);
*type = "gif";
return (char *)buf;
}
}