Port scott, update packages
This commit is contained in:
parent
d36ff74326
commit
a77dc5acf9
4 changed files with 55 additions and 64 deletions
BIN
assets/images/scottmap.png
Normal file
BIN
assets/images/scottmap.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 133 KiB |
|
@ -1,64 +1,55 @@
|
||||||
#include <Magick++.h>
|
#include <vips/vips8>
|
||||||
|
|
||||||
#include <cstring>
|
|
||||||
#include <iostream>
|
|
||||||
#include <list>
|
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace Magick;
|
using namespace vips;
|
||||||
|
|
||||||
char *Scott(string type, string *outType, char *BufferData, size_t BufferLength,
|
char *Scott(string type, string *outType, char *BufferData, size_t BufferLength,
|
||||||
ArgumentMap Arguments, size_t *DataSize) {
|
ArgumentMap Arguments, size_t *DataSize) {
|
||||||
string basePath = GetArgument<string>(Arguments, "basePath");
|
string basePath = GetArgument<string>(Arguments, "basePath");
|
||||||
|
|
||||||
Blob blob;
|
VOption *options = VImage::option()->set("access", "sequential");
|
||||||
|
|
||||||
list<Image> frames;
|
VImage in =
|
||||||
list<Image> coalesced;
|
VImage::new_from_buffer(BufferData, BufferLength, "",
|
||||||
list<Image> mid;
|
type == "gif" ? options->set("n", -1) : options)
|
||||||
Image watermark;
|
.colourspace(VIPS_INTERPRETATION_sRGB);
|
||||||
try {
|
if (!in.has_alpha()) in = in.bandjoin(255);
|
||||||
readImages(&frames, Blob(BufferData, BufferLength));
|
|
||||||
} catch (Magick::WarningCoder &warning) {
|
int width = in.width();
|
||||||
cerr << "Coder Warning: " << warning.what() << endl;
|
int pageHeight = vips_image_get_page_height(in.get_image());
|
||||||
} catch (Magick::Warning &warning) {
|
int nPages = vips_image_get_n_pages(in.get_image());
|
||||||
cerr << "Warning: " << warning.what() << endl;
|
|
||||||
|
string assetPath = basePath + "assets/images/scott.png";
|
||||||
|
VImage bg = VImage::new_from_file(assetPath.c_str());
|
||||||
|
|
||||||
|
string distortPath = basePath + "assets/images/scottmap.png";
|
||||||
|
VImage distort = VImage::new_from_file(distortPath.c_str());
|
||||||
|
|
||||||
|
VImage distortImage =
|
||||||
|
((distort[1] / 255) * 414).bandjoin((distort[0] / 255) * 233);
|
||||||
|
|
||||||
|
vector<VImage> 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(
|
||||||
|
415 / (double)width,
|
||||||
|
VImage::option()->set("vscale", 234 / (double)pageHeight));
|
||||||
|
VImage mapped = resized.mapim(distortImage)
|
||||||
|
.extract_band(0, VImage::option()->set("n", 3))
|
||||||
|
.bandjoin(distort[2]);
|
||||||
|
VImage offset = mapped.embed(127, 181, 864, 481);
|
||||||
|
VImage composited = bg.composite2(offset, VIPS_BLEND_MODE_OVER);
|
||||||
|
img.push_back(composited);
|
||||||
}
|
}
|
||||||
watermark.read(basePath + "assets/images/scott.png");
|
VImage final = VImage::arrayjoin(img, VImage::option()->set("across", 1));
|
||||||
coalesceImages(&coalesced, frames.begin(), frames.end());
|
final.set(VIPS_META_PAGE_HEIGHT, 481);
|
||||||
|
|
||||||
for (Image &image : coalesced) {
|
void *buf;
|
||||||
Image watermark_new = watermark;
|
final.write_to_buffer(
|
||||||
image.virtualPixelMethod(Magick::TransparentVirtualPixelMethod);
|
("." + *outType).c_str(), &buf, DataSize,
|
||||||
image.backgroundColor("none");
|
*outType == "gif" ? VImage::option()->set("dither", 1) : 0);
|
||||||
image.scale(Geometry("415x234!"));
|
return (char *)buf;
|
||||||
double arguments[16] = {0, 0, 129, 187, 415, 0, 517, 182,
|
|
||||||
415, 234, 517, 465, 0, 234, 132, 418};
|
|
||||||
image.distort(Magick::PerspectiveDistortion, 16, arguments, true);
|
|
||||||
image.extent(Geometry("864x481"), Magick::CenterGravity);
|
|
||||||
watermark_new.composite(image, Geometry("-110+83"),
|
|
||||||
Magick::OverCompositeOp);
|
|
||||||
watermark_new.magick(*outType);
|
|
||||||
watermark_new.animationDelay(image.animationDelay());
|
|
||||||
mid.push_back(watermark_new);
|
|
||||||
}
|
|
||||||
|
|
||||||
optimizeTransparency(mid.begin(), mid.end());
|
|
||||||
|
|
||||||
if (*outType == "gif") {
|
|
||||||
for (Image &image : mid) {
|
|
||||||
image.quantizeDitherMethod(FloydSteinbergDitherMethod);
|
|
||||||
image.quantize();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
writeImages(mid.begin(), mid.end(), &blob);
|
|
||||||
|
|
||||||
*DataSize = blob.length();
|
|
||||||
|
|
||||||
char *data = (char *)malloc(*DataSize);
|
|
||||||
memcpy(data, blob.data(), *DataSize);
|
|
||||||
return data;
|
|
||||||
}
|
}
|
|
@ -34,7 +34,7 @@
|
||||||
"jsqr": "^1.4.0",
|
"jsqr": "^1.4.0",
|
||||||
"node-addon-api": "^5.1.0",
|
"node-addon-api": "^5.1.0",
|
||||||
"node-emoji": "^1.11.0",
|
"node-emoji": "^1.11.0",
|
||||||
"oceanic.js": "1.4.1",
|
"oceanic.js": "1.5.1",
|
||||||
"qrcode": "^1.5.1",
|
"qrcode": "^1.5.1",
|
||||||
"sharp": "^0.31.3",
|
"sharp": "^0.31.3",
|
||||||
"shoukaku": "^3.3.1",
|
"shoukaku": "^3.3.1",
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
||||||
"cmake-js": "^7.2.1",
|
"cmake-js": "^7.2.1",
|
||||||
"eslint": "^8.35.0",
|
"eslint": "^8.35.0",
|
||||||
"eslint-plugin-unicorn": "^45.0.2"
|
"eslint-plugin-unicorn": "^46.0.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"better-sqlite3": "^8.1.0",
|
"better-sqlite3": "^8.1.0",
|
||||||
|
|
|
@ -12,13 +12,13 @@ specifiers:
|
||||||
emoji-regex: ^10.2.1
|
emoji-regex: ^10.2.1
|
||||||
erlpack: ^0.1.4
|
erlpack: ^0.1.4
|
||||||
eslint: ^8.35.0
|
eslint: ^8.35.0
|
||||||
eslint-plugin-unicorn: ^45.0.2
|
eslint-plugin-unicorn: ^46.0.0
|
||||||
file-type: ^18.2.1
|
file-type: ^18.2.1
|
||||||
format-duration: ^3.0.2
|
format-duration: ^3.0.2
|
||||||
jsqr: ^1.4.0
|
jsqr: ^1.4.0
|
||||||
node-addon-api: ^5.1.0
|
node-addon-api: ^5.1.0
|
||||||
node-emoji: ^1.11.0
|
node-emoji: ^1.11.0
|
||||||
oceanic.js: 1.4.1
|
oceanic.js: 1.5.1
|
||||||
pm2: ^5.2.2
|
pm2: ^5.2.2
|
||||||
postgres: ^3.3.4
|
postgres: ^3.3.4
|
||||||
qrcode: ^1.5.1
|
qrcode: ^1.5.1
|
||||||
|
@ -39,7 +39,7 @@ dependencies:
|
||||||
jsqr: 1.4.0
|
jsqr: 1.4.0
|
||||||
node-addon-api: 5.1.0
|
node-addon-api: 5.1.0
|
||||||
node-emoji: 1.11.0
|
node-emoji: 1.11.0
|
||||||
oceanic.js: 1.4.1_bufferutil@4.0.7
|
oceanic.js: 1.5.1_bufferutil@4.0.7
|
||||||
qrcode: 1.5.1
|
qrcode: 1.5.1
|
||||||
sharp: 0.31.3
|
sharp: 0.31.3
|
||||||
shoukaku: 3.3.1_bufferutil@4.0.7
|
shoukaku: 3.3.1_bufferutil@4.0.7
|
||||||
|
@ -64,7 +64,7 @@ devDependencies:
|
||||||
'@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
|
'@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
|
||||||
cmake-js: 7.2.1
|
cmake-js: 7.2.1
|
||||||
eslint: 8.35.0
|
eslint: 8.35.0
|
||||||
eslint-plugin-unicorn: 45.0.2_eslint@8.35.0
|
eslint-plugin-unicorn: 46.0.0_eslint@8.35.0
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
|
@ -389,8 +389,8 @@ packages:
|
||||||
kuler: 2.0.0
|
kuler: 2.0.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@discordjs/voice/0.13.0_bufferutil@4.0.7:
|
/@discordjs/voice/0.14.0_bufferutil@4.0.7:
|
||||||
resolution: {integrity: sha512-ZzwDmVINaLgkoDUeTJfpN9TkjINMLfTVoLMtEygm0YC5jTTw7AvKGqhc+Ae/2kNLywd0joyFVNrLp94yCkQ9SA==}
|
resolution: {integrity: sha512-/LV8LSFuJ1c4OEW1ubPg3al2QNpUpwX8ZL+KL+LORmnUFVCtehSaEh+38uDfWg1O/TgiGI5vOLj4ZKql43drcw==}
|
||||||
engines: {node: '>=16.9.0'}
|
engines: {node: '>=16.9.0'}
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -1352,8 +1352,8 @@ packages:
|
||||||
dev: false
|
dev: false
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/eslint-plugin-unicorn/45.0.2_eslint@8.35.0:
|
/eslint-plugin-unicorn/46.0.0_eslint@8.35.0:
|
||||||
resolution: {integrity: sha512-Y0WUDXRyGDMcKLiwgL3zSMpHrXI00xmdyixEGIg90gHnj0PcHY4moNv3Ppje/kDivdAy5vUeUr7z211ImPv2gw==}
|
resolution: {integrity: sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==}
|
||||||
engines: {node: '>=14.18'}
|
engines: {node: '>=14.18'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=8.28.0'
|
eslint: '>=8.28.0'
|
||||||
|
@ -2361,14 +2361,14 @@ packages:
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/oceanic.js/1.4.1_bufferutil@4.0.7:
|
/oceanic.js/1.5.1_bufferutil@4.0.7:
|
||||||
resolution: {integrity: sha512-wwL31SyGc6JrF0wXlgNapSR5Ziu3oBrETKpWvCXMG3YrM4EdcCGYRdwwsPtKp5lfrW9K0/+X6mvJonSyU6TByw==}
|
resolution: {integrity: sha512-N4c25J8UCxYJ5BtqTc2EVmcRLyBO/ZGhMhwsIiodYBwBen9AX4ipqwAsAhoosOJi8+WrWiDzAI3mSJ4Lxt2Mww==}
|
||||||
engines: {node: '>=16.16.0'}
|
engines: {node: '>=16.16.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
undici: 5.20.0
|
undici: 5.20.0
|
||||||
ws: 8.12.1_bufferutil@4.0.7
|
ws: 8.12.1_bufferutil@4.0.7
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@discordjs/voice': 0.13.0_bufferutil@4.0.7
|
'@discordjs/voice': 0.14.0_bufferutil@4.0.7
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@discordjs/opus'
|
- '@discordjs/opus'
|
||||||
- bufferutil
|
- bufferutil
|
||||||
|
|
Loading…
Reference in a new issue