2022-05-19 19:14:53 +00:00
|
|
|
#include <vips/vips8>
|
2021-12-03 00:05:52 +00:00
|
|
|
|
2022-12-28 23:01:50 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2021-12-03 00:05:52 +00:00
|
|
|
using namespace std;
|
2022-05-19 19:14:53 +00:00
|
|
|
using namespace vips;
|
2021-12-03 00:05:52 +00:00
|
|
|
|
2023-03-09 01:36:39 +00:00
|
|
|
char *Zamn(string type, string *outType, char *BufferData, size_t BufferLength,
|
2022-12-28 06:20:17 +00:00
|
|
|
ArgumentMap Arguments, size_t *DataSize) {
|
|
|
|
string basePath = GetArgument<string>(Arguments, "basePath");
|
|
|
|
|
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
|
|
|
|
|
|
|
VImage in =
|
|
|
|
VImage::new_from_buffer(BufferData, BufferLength, "",
|
2023-03-09 01:36:39 +00:00
|
|
|
type == "gif" ? options->set("n", -1) : options)
|
2022-12-28 06:20:17 +00:00
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
2022-12-28 23:01:50 +00:00
|
|
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
2022-12-28 06:20:17 +00:00
|
|
|
|
|
|
|
int width = in.width();
|
|
|
|
int pageHeight = vips_image_get_page_height(in.get_image());
|
|
|
|
int nPages = vips_image_get_n_pages(in.get_image());
|
|
|
|
|
|
|
|
string assetPath = basePath + "assets/images/zamn.png";
|
|
|
|
VImage tmpl = VImage::new_from_file(assetPath.c_str());
|
|
|
|
|
|
|
|
vector<VImage> img;
|
|
|
|
for (int i = 0; i < nPages; i++) {
|
|
|
|
VImage img_frame =
|
2023-03-09 01:36:39 +00:00
|
|
|
type == "gif" ? in.crop(0, i * pageHeight, width, pageHeight) : in;
|
2022-12-28 23:01:50 +00:00
|
|
|
VImage composited = tmpl.insert(
|
|
|
|
img_frame.extract_band(0, VImage::option()->set("n", 3))
|
|
|
|
.bandjoin(255)
|
|
|
|
.resize(
|
|
|
|
303.0 / (double)width,
|
|
|
|
VImage::option()->set("vscale", 438.0 / (double)pageHeight)),
|
|
|
|
310, 76);
|
2022-12-28 06:20:17 +00:00
|
|
|
img.push_back(composited);
|
2021-12-03 00:05:52 +00:00
|
|
|
}
|
2022-12-28 06:20:17 +00:00
|
|
|
VImage final = VImage::arrayjoin(img, VImage::option()->set("across", 1));
|
|
|
|
final.set(VIPS_META_PAGE_HEIGHT, 516);
|
|
|
|
|
|
|
|
void *buf;
|
2023-03-09 01:36:39 +00:00
|
|
|
final.write_to_buffer(("." + *outType).c_str(), &buf, DataSize);
|
2022-06-28 03:50:53 +00:00
|
|
|
|
2022-12-28 06:20:17 +00:00
|
|
|
return (char *)buf;
|
2021-12-03 00:05:52 +00:00
|
|
|
}
|