2022-11-27 19:03:07 +00:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2022-02-23 03:21:06 +00:00
|
|
|
#include <vips/vips8>
|
2020-07-23 22:43:39 +00:00
|
|
|
|
2022-12-28 23:01:50 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2020-07-23 22:43:39 +00:00
|
|
|
using namespace std;
|
2022-02-23 03:21:06 +00:00
|
|
|
using namespace vips;
|
2020-07-23 22:43:39 +00:00
|
|
|
|
2022-12-28 06:20:17 +00:00
|
|
|
char *Crop(string *type, char *BufferData, size_t BufferLength,
|
2022-12-03 19:49:28 +00:00
|
|
|
ArgumentMap Arguments, size_t *DataSize) {
|
2022-11-27 20:52:40 +00:00
|
|
|
VOption *options = VImage::option()->set("access", "sequential");
|
2021-04-26 14:47:03 +00:00
|
|
|
|
2022-11-27 20:52:40 +00:00
|
|
|
VImage in =
|
2022-11-27 19:03:07 +00:00
|
|
|
VImage::new_from_buffer(BufferData, BufferLength, "",
|
2022-12-28 06:20:17 +00:00
|
|
|
*type == "gif" ? options->set("n", -1) : options)
|
2022-11-27 20:52:40 +00:00
|
|
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
|
|
|
|
|
|
|
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<VImage> img;
|
|
|
|
int finalHeight = 0;
|
|
|
|
for (int i = 0; i < nPages; i++) {
|
|
|
|
VImage img_frame =
|
2022-12-28 06:20:17 +00:00
|
|
|
*type == "gif" ? in.crop(0, i * pageHeight, width, pageHeight) : in;
|
2022-11-27 20:52:40 +00:00
|
|
|
int frameWidth = img_frame.width();
|
|
|
|
int frameHeight = img_frame.height();
|
|
|
|
bool widthOrHeight = frameWidth / frameHeight >= 1;
|
|
|
|
int size = widthOrHeight ? frameHeight : frameWidth;
|
|
|
|
// img_frame.crop(frameWidth - size, frameHeight - size, size, size);
|
|
|
|
VImage result = img_frame.smartcrop(
|
|
|
|
size, size,
|
|
|
|
VImage::option()->set("interesting", VIPS_INTERESTING_CENTRE));
|
|
|
|
finalHeight = size;
|
|
|
|
img.push_back(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
VImage final = VImage::arrayjoin(img, VImage::option()->set("across", 1));
|
|
|
|
final.set(VIPS_META_PAGE_HEIGHT, finalHeight);
|
|
|
|
|
|
|
|
void *buf;
|
|
|
|
final.write_to_buffer(
|
2022-12-28 06:20:17 +00:00
|
|
|
("." + *type).c_str(), &buf, DataSize,
|
|
|
|
*type == "gif" ? VImage::option()->set("dither", 0)->set("reoptimise", 1)
|
2022-12-28 23:01:50 +00:00
|
|
|
: 0);
|
2022-11-27 20:52:40 +00:00
|
|
|
|
|
|
|
return (char *)buf;
|
2020-07-23 22:43:39 +00:00
|
|
|
}
|