diff --git a/commands/image-edit/to-be-continued.js b/commands/image-edit/to-be-continued.js index 2acead7c..d5d0f4f0 100644 --- a/commands/image-edit/to-be-continued.js +++ b/commands/image-edit/to-be-continued.js @@ -36,6 +36,10 @@ module.exports = class ToBeContinuedCommand extends Command { const ctx = canvas.getContext('2d'); ctx.drawImage(data, 0, 0); sepia(ctx, 0, 0, data.width, data.height); + ctx.globalAlpha = 0.5; + ctx.fillStyle = '#704214'; + ctx.fillRect(0, 0, data.width, data.height); + ctx.globalAlpha = 1; const ratio = base.width / base.height; const width = canvas.width / 2; const height = Math.round(width / ratio);