Forgot to re-add the background color in motivate
This commit is contained in:
parent
6f423f8a24
commit
729192dfe7
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ exports.run = async (message, args) => {
|
|||
const text = `/tmp/${Math.random().toString(36).substring(2, 15)}.png`;
|
||||
const text2 = `/tmp/${Math.random().toString(36).substring(2, 15)}.png`;
|
||||
const buffer = await gm().in("(").in(image.path).coalesce().resize(500, 500).borderColor("black").border(5, 5).out(")").borderColor("white").border(3, 3).bufferPromise("miff", image.delay);
|
||||
await gm(buffer).coalesce().gravity("Center").extent(600, "%[fx:s.h+50]").writePromise(file);
|
||||
await gm(buffer).coalesce().background("black").gravity("Center").extent(600, "%[fx:s.h+50]").writePromise(file);
|
||||
const size2 = await gm(file).sizePromise();
|
||||
await gm().background("black").out("-size", "600").fill("white").font("Times").pointSize(56).gravity("Center").out(`pango:${topText.replace(/&/g, "\\&").replace(/>/g, "\\>").replace(/</g, "\\<").replace(/"/g, "\\"").replace(/'/g, "\\'")}`).gravity("South").out("-splice", bottomText ? "0x0" : "0x20").writePromise(text);
|
||||
const size3 = await gm(text).sizePromise();
|
||||
|
@ -34,4 +34,4 @@ exports.run = async (message, args) => {
|
|||
|
||||
exports.aliases = ["motivational", "motiv", "demotiv", "demotivational", "poster"];
|
||||
exports.category = 5;
|
||||
exports.help = "Creates a motivational poster";
|
||||
exports.help = "Creates a motivational poster";
|
||||
|
|
Loading…
Reference in a new issue