did I really forget to coalesce caption2
This commit is contained in:
parent
6f66799518
commit
9fbb5dfe64
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ exports.run = async (message, args) => {
|
|||
const size = await gm(image.path).sizePromise();
|
||||
await gm().out("-size", `${size.width - ((size.width / 25) * 2)}x`).background("white").fill("black").font("Helvetica Neue").out("-pointsize", size.width / 17).out(`pango:${newArgs.length !== 0 ? newArgs.join(" ") : words.sort(() => 0.5 - Math.random()).slice(0, Math.floor(Math.random() * words.length + 1)).join(" ")}`).gravity("Center").extent(size.width, `%[fx:h+${size.width / 25}]`).writePromise(text);
|
||||
const size2 = await gm(text).sizePromise();
|
||||
const outputFinal = await gm(image.path).gravity("North").extent(size.width, size2.height + size.height).out("null:", "(", text, "-set", "page", `+0+${size.height}`, ")", "-layers", "composite", "-layers", "optimize").bufferPromise(image.type, image.delay);
|
||||
const outputFinal = await gm(image.path).coalesce().gravity("North").extent(size.width, size2.height + size.height).out("null:", "(", text, "-set", "page", `+0+${size.height}`, ")", "-layers", "composite", "-layers", "optimize").bufferPromise(image.type, image.delay);
|
||||
await processMessage.delete();
|
||||
return {
|
||||
file: outputFinal,
|
||||
|
@ -22,4 +22,4 @@ exports.run = async (message, args) => {
|
|||
|
||||
exports.aliases = ["tags2", "meirl", "memecaption", "medotmecaption"];
|
||||
exports.category = 5;
|
||||
exports.help = "Adds a me.me caption/tag list to an image/GIF";
|
||||
exports.help = "Adds a me.me caption/tag list to an image/GIF";
|
||||
|
|
Loading…
Reference in a new issue