Forgot to re-add the background color in motivate

This commit is contained in:
Essem 2020-03-15 18:54:57 -05:00 committed by GitHub
parent 6f423f8a24
commit 729192dfe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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, "\\&amp;").replace(/>/g, "\\&gt;").replace(/</g, "\\&lt;").replace(/"/g, "\\&quot;").replace(/'/g, "\\&apos;")}`).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";