diff --git a/package.json b/package.json index 6f1ecdd..2fc3cc9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "discord-image-generation", - "version": "1.3.6", + "version": "1.3.7", "description": "discord-image-generation is a powerfull module that allow you to generate awesome images.", "main": "src/index.js", "scripts": { diff --git a/src/module/montage/podium.js b/src/module/montage/podium.js index 110efbb..eee1896 100644 --- a/src/module/montage/podium.js +++ b/src/module/montage/podium.js @@ -30,30 +30,30 @@ module.exports = class Podium { ctx.drawImage(image2, 96, 236, 225, 225); ctx.drawImage(image3, 853, 236, 225, 225); ctx.drawImage(background, 0, 0, 1173, 686); - let maxWidth = 20 + let maxWidth = 80; if (name1.length > 5) maxWidth = 150; if (name1.length > 10) maxWidth = 250; if (name1.length > 20) maxWidth = 350; ctx.textAlign = 'center'; ctx.font = applyText(canvas, name1, 80, maxWidth, "Comic Sans MS"); - ctx.fillStyle = `#513d34` - ctx.fillText(name1, 580, 575) - maxWidth = 80 + ctx.fillStyle = `#513d34`; + ctx.fillText(name1, 580, 575); + maxWidth = 80; if (name2.length > 5) maxWidth = 150; if (name2.length > 10) maxWidth = 180; if (name2.length > 20) maxWidth = 240; ctx.textAlign = 'center'; ctx.font = applyText(canvas, name2, 50, maxWidth, "Comic Sans MS"); - ctx.fillStyle = `#513d34` - ctx.fillText(name2, 210, 540) - maxWidth = 80 + ctx.fillStyle = `#513d34`; + ctx.fillText(name2, 210, 540); + maxWidth = 80; if (name3.length > 5) maxWidth = 150; if (name3.length > 10) maxWidth = 180; if (name3.length > 20) maxWidth = 240; ctx.textAlign = 'center'; ctx.font = applyText(canvas, name3, 50, maxWidth, "Comic Sans MS"); - ctx.fillStyle = `#513d34` - ctx.fillText(name3, 970, 540) + ctx.fillStyle = `#513d34`; + ctx.fillText(name3, 970, 540); return canvas.toBuffer(); } } \ No newline at end of file