From 2c240452ed1b1e2044fa6cacb5f3af99c50306b8 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 14 Sep 2018 01:27:52 +0000 Subject: [PATCH] Fixes --- commands/image-edit/demotivational-poster.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/image-edit/demotivational-poster.js b/commands/image-edit/demotivational-poster.js index 80c2c96e..f6d658b4 100644 --- a/commands/image-edit/demotivational-poster.js +++ b/commands/image-edit/demotivational-poster.js @@ -52,11 +52,11 @@ module.exports = class DemotivationalPosterCommand extends Command { ctx.fillRect(0, 0, canvas.width, canvas.height); const ratio = data.width / data.height; const width = Math.min(Math.round(402 / ratio), 602); - const x = (data.width / 2) - (width / 2); + const x = (canvas.width / 2) - (width / 2); ctx.fillStyle = 'white'; - ctx.fillRect(x - 4, 40, width + 4, 406); + ctx.fillRect(x - 4, 40, width + 8, 406); ctx.fillStyle = 'black'; - ctx.fillRect(x - 2, 42, width + 2, 404); + ctx.fillRect(x - 2, 42, width + 4, 404); ctx.fillStyle = 'white'; ctx.fillRect(x, 44, width, 402); ctx.drawImage(data, x, 44, width, 402);