aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot.js b/bot.js
index 5c17efd..4535c1b 100644
--- a/bot.js
+++ b/bot.js
@@ -186,8 +186,8 @@ module.exports = {
}
const svg = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n' + dom.serialize();
fs.writeFileSync(path + '.svg', svg);
- console.log('convert', '-background', 'none', path + '.svg', path + '.png');
- child_process.spawnSync('convert', ['-background', 'none', path + '.svg', path + '.png'], {stdio: ['inherit', 'inherit', 'inherit']});
+ console.log('rsvg-convert', '--format=png', '--output=' + path + '.png', path + '.svg');
+ child_process.spawnSync('rsvg-convert', ['--format=png', '--output=' + path + '.png', path + '.svg'], {stdio: ['inherit', 'inherit', 'inherit']});
}
if (type === 'mp4') {
let background = STYLES[style].video;