mrmBot-Matrix/natives/invert.cc

27 lines
811 B
C++
Raw Normal View History

2022-02-27 21:37:51 +00:00
#include <vips/vips8>
#include "common.h"
using namespace std;
2022-02-27 21:37:51 +00:00
using namespace vips;
2022-12-28 06:20:17 +00:00
char *Invert(string *type, char *BufferData, size_t BufferLength,
2022-12-26 06:28:56 +00:00
ArgumentMap Arguments, size_t *DataSize) {
VOption *options = VImage::option()->set("access", "sequential");
2022-12-26 06:28:56 +00:00
VImage in =
VImage::new_from_buffer(BufferData, BufferLength, "",
2022-12-28 06:20:17 +00:00
*type == "gif" ? options->set("n", -1) : options)
2022-12-26 06:28:56 +00:00
.colourspace(VIPS_INTERPRETATION_sRGB);
if (!in.has_alpha()) in = in.bandjoin(255);
2022-12-26 06:28:56 +00:00
VImage noAlpha =
in.extract_band(0, VImage::option()->set("n", in.bands() - 1));
VImage inverted = noAlpha.invert();
VImage out = inverted.bandjoin(in.extract_band(3));
2022-12-26 06:28:56 +00:00
void *buf;
2022-12-28 06:20:17 +00:00
out.write_to_buffer(("." + *type).c_str(), &buf, DataSize);
2022-06-28 03:50:53 +00:00
2022-12-26 06:28:56 +00:00
return (char *)buf;
}