#include #include "common.h" using namespace std; using namespace vips; ArgumentMap Gamexplain(string type, string *outType, char *BufferData, size_t BufferLength, ArgumentMap Arguments, size_t *DataSize) { string basePath = GetArgument(Arguments, "basePath"); VOption *options = VImage::option()->set("access", "sequential"); VImage in = VImage::new_from_buffer(BufferData, BufferLength, "", type == "gif" ? options->set("n", -1) : options) .colourspace(VIPS_INTERPRETATION_sRGB); if (!in.has_alpha()) in = in.bandjoin(255); string assetPath = basePath + "assets/images/gamexplain.png"; VImage tmpl = VImage::new_from_file(assetPath.c_str()); int width = in.width(); int pageHeight = vips_image_get_page_height(in.get_image()); int nPages = vips_image_get_n_pages(in.get_image()); vector img; for (int i = 0; i < nPages; i++) { VImage img_frame = type == "gif" ? in.crop(0, i * pageHeight, width, pageHeight) : in; VImage resized = img_frame .resize(1181.0 / (double)width, VImage::option()->set("vscale", 571.0 / (double)pageHeight)) .embed(10, 92, 1200, 675, VImage::option()->set("extend", "white")); VImage composited = resized.composite2(tmpl, VIPS_BLEND_MODE_OVER); img.push_back(composited); } VImage final = VImage::arrayjoin(img, VImage::option()->set("across", 1)); final.set(VIPS_META_PAGE_HEIGHT, 675); void *buf; final.write_to_buffer( ("." + *outType).c_str(), &buf, DataSize, *outType == "gif" ? VImage::option()->set("dither", 0)->set("reoptimise", 1) : 0); ArgumentMap output; output["buf"] = (char *)buf; output["width"] = final.width(); output["height"] = vips_image_get_page_height(final.get_image()); return output; }