2022-11-27 19:03:07 +00:00
|
|
|
#include "common.h"
|
2021-04-24 22:54:47 +00:00
|
|
|
|
2022-02-24 19:03:36 +00:00
|
|
|
#include <vips/vips8>
|
2022-11-27 19:03:07 +00:00
|
|
|
#include <map>
|
2020-07-14 14:53:51 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2022-02-24 19:03:36 +00:00
|
|
|
using namespace vips;
|
2020-07-14 14:53:51 +00:00
|
|
|
|
2022-11-27 19:03:07 +00:00
|
|
|
char* Watermark(string type, char* BufferData, size_t BufferLength, map<string, string> Arguments, size_t* DataSize) {
|
|
|
|
|
|
|
|
string water = Arguments["water"];
|
|
|
|
int gravity = stoi(Arguments["gravity"]);
|
|
|
|
|
|
|
|
bool resize = MAP_HAS(Arguments, "resize") ? Arguments["resize"] == "true" : false;;
|
|
|
|
float yscale = MAP_HAS(Arguments, "yscale") ? stof(Arguments["yscale"]) : false;
|
|
|
|
|
|
|
|
bool append = MAP_HAS(Arguments, "append") ? Arguments["append"] == "true" : false;
|
|
|
|
|
|
|
|
bool alpha = MAP_HAS(Arguments, "alpha") ? Arguments["alpha"] == "true" : false;
|
|
|
|
bool flip = MAP_HAS(Arguments, "flip") ? Arguments["flip"] == "true" : false;
|
|
|
|
|
|
|
|
bool mc = MAP_HAS(Arguments, "mc");
|
|
|
|
|
|
|
|
string basePath = Arguments["basePath"];
|
2021-02-25 21:09:53 +00:00
|
|
|
|
2022-02-24 19:03:36 +00:00
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
2021-02-25 21:09:53 +00:00
|
|
|
|
2022-02-24 19:03:36 +00:00
|
|
|
VImage in =
|
2022-11-27 19:03:07 +00:00
|
|
|
VImage::new_from_buffer(BufferData, BufferLength, "",
|
2022-02-24 19:03:36 +00:00
|
|
|
type == "gif" ? options->set("n", -1) : options)
|
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
|
|
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
|
|
|
|
|
|
|
string merged = basePath + water;
|
|
|
|
VImage watermark = VImage::new_from_file(merged.c_str());
|
|
|
|
|
|
|
|
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-02-24 19:03:36 +00:00
|
|
|
|
2022-06-23 02:55:09 +00:00
|
|
|
if (flip) {
|
|
|
|
watermark = watermark.flip(VIPS_DIRECTION_HORIZONTAL);
|
|
|
|
}
|
|
|
|
|
2022-02-24 19:03:36 +00:00
|
|
|
if (resize && append) {
|
2022-04-25 04:23:21 +00:00
|
|
|
watermark = watermark.resize((double)width / (double)watermark.width());
|
2022-03-09 19:55:19 +00:00
|
|
|
} else if (resize && yscale) {
|
2022-04-25 04:23:21 +00:00
|
|
|
watermark = watermark.resize(
|
|
|
|
(double)width / (double)watermark.width(),
|
2022-06-20 06:05:06 +00:00
|
|
|
VImage::option()->set("vscale", (double)(pageHeight * yscale) /
|
2022-04-25 04:23:21 +00:00
|
|
|
(double)watermark.height()));
|
2022-02-24 19:03:36 +00:00
|
|
|
} else if (resize) {
|
2022-04-25 04:23:21 +00:00
|
|
|
watermark =
|
2022-06-20 06:05:06 +00:00
|
|
|
watermark.resize((double)pageHeight / (double)watermark.height());
|
2022-02-24 19:03:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 21:27:47 +00:00
|
|
|
int x = 0, y = 0;
|
|
|
|
switch (gravity) {
|
|
|
|
case 1:
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
x = (width / 2) - (watermark.width() / 2);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
x = width - watermark.width();
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
x = (width / 2) - (watermark.width() / 2);
|
2022-06-20 06:05:06 +00:00
|
|
|
y = (pageHeight / 2) - (watermark.height() / 2);
|
2022-06-07 21:27:47 +00:00
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
x = width - watermark.width();
|
2022-06-20 06:05:06 +00:00
|
|
|
y = (pageHeight / 2) - (watermark.height() / 2);
|
2022-06-07 21:27:47 +00:00
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
x = (width / 2) - (watermark.width() / 2);
|
2022-06-20 06:05:06 +00:00
|
|
|
y = pageHeight - watermark.height();
|
2022-06-07 21:27:47 +00:00
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
x = width - watermark.width();
|
2022-06-20 06:05:06 +00:00
|
|
|
y = pageHeight - watermark.height();
|
2022-06-07 21:27:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-02-24 19:03:36 +00:00
|
|
|
vector<VImage> img;
|
|
|
|
int addedHeight = 0;
|
2022-06-07 21:27:47 +00:00
|
|
|
VImage contentAlpha;
|
|
|
|
VImage frameAlpha;
|
|
|
|
VImage bg;
|
|
|
|
VImage frame;
|
2022-06-22 16:00:31 +00:00
|
|
|
for (int i = 0; i < nPages; i++) {
|
2022-02-24 19:03:36 +00:00
|
|
|
VImage img_frame =
|
2022-06-20 06:05:06 +00:00
|
|
|
type == "gif" ? in.crop(0, i * pageHeight, width, pageHeight) : in;
|
2022-02-24 19:03:36 +00:00
|
|
|
if (append) {
|
|
|
|
VImage appended = img_frame.join(watermark, VIPS_DIRECTION_VERTICAL,
|
|
|
|
VImage::option()->set("expand", true));
|
|
|
|
addedHeight = watermark.height();
|
|
|
|
img.push_back(appended);
|
|
|
|
} else if (mc) {
|
|
|
|
VImage padded =
|
2022-06-20 06:05:06 +00:00
|
|
|
img_frame.embed(0, 0, width, pageHeight + 15,
|
2022-02-24 19:03:36 +00:00
|
|
|
VImage::option()->set("background", 0xffffff));
|
|
|
|
VImage composited =
|
|
|
|
padded.composite2(watermark, VIPS_BLEND_MODE_OVER,
|
|
|
|
VImage::option()
|
|
|
|
->set("x", width - 190)
|
|
|
|
->set("y", padded.height() - 22));
|
|
|
|
addedHeight = 15;
|
|
|
|
img.push_back(composited);
|
|
|
|
} else {
|
2022-06-07 21:27:47 +00:00
|
|
|
VImage composited;
|
|
|
|
if (alpha) {
|
|
|
|
if (i == 0) {
|
|
|
|
contentAlpha = watermark.extract_band(0).embed(
|
2022-06-20 06:05:06 +00:00
|
|
|
x, y, width, pageHeight,
|
2022-06-07 21:27:47 +00:00
|
|
|
VImage::option()->set("extend", "white"));
|
|
|
|
frameAlpha = watermark.extract_band(1).embed(
|
2022-06-20 06:05:06 +00:00
|
|
|
x, y, width, pageHeight,
|
2022-06-07 21:27:47 +00:00
|
|
|
VImage::option()->set("extend", "black"));
|
|
|
|
bg =
|
|
|
|
frameAlpha.new_from_image({0, 0, 0}).copy(VImage::option()->set(
|
|
|
|
"interpretation", VIPS_INTERPRETATION_sRGB));
|
|
|
|
frame = bg.bandjoin(frameAlpha);
|
|
|
|
if (type == "jpg" || type == "jpeg") {
|
|
|
|
type = "png";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
VImage content =
|
|
|
|
img_frame.extract_band(0, VImage::option()->set("n", 3))
|
|
|
|
.bandjoin(contentAlpha & img_frame.extract_band(3));
|
|
|
|
|
|
|
|
composited =
|
|
|
|
content.composite2(frame, VIPS_BLEND_MODE_OVER,
|
2022-02-24 19:03:36 +00:00
|
|
|
VImage::option()->set("x", x)->set("y", y));
|
2022-06-07 21:27:47 +00:00
|
|
|
} else {
|
|
|
|
composited =
|
|
|
|
img_frame.composite2(watermark, VIPS_BLEND_MODE_OVER,
|
|
|
|
VImage::option()->set("x", x)->set("y", y));
|
|
|
|
}
|
2022-02-24 19:03:36 +00:00
|
|
|
img.push_back(composited);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
VImage final = VImage::arrayjoin(img, VImage::option()->set("across", 1));
|
2022-06-20 06:05:06 +00:00
|
|
|
final.set(VIPS_META_PAGE_HEIGHT, pageHeight + addedHeight);
|
2022-02-24 19:03:36 +00:00
|
|
|
|
|
|
|
void *buf;
|
|
|
|
final.write_to_buffer(
|
2022-11-27 19:03:07 +00:00
|
|
|
("." + type).c_str(), &buf, DataSize,
|
2022-06-28 02:58:42 +00:00
|
|
|
type == "gif" ? VImage::option()->set("dither", 0)->set("reoptimise", 1) : 0);
|
2022-02-24 19:03:36 +00:00
|
|
|
|
2022-06-28 03:50:53 +00:00
|
|
|
vips_error_clear();
|
|
|
|
vips_thread_shutdown();
|
2022-11-27 19:03:07 +00:00
|
|
|
return (char*) buf;
|
2022-03-08 17:03:25 +00:00
|
|
|
}
|