Changed text position

This commit is contained in:
loicbersier 2020-02-22 01:59:29 +01:00
parent d73fcffd9c
commit 5da4039685

View file

@ -85,8 +85,8 @@ class memeCommand extends Command {
// Get the image size to calculate top and bottom text positions
img.size(function(err, value) {
// Set text position for top and bottom
const TOP_POS = Math.abs((value.height / 2) - PADDING) * -1;
const BOTTOM_POS = (value.height / 2) - PADDING;
const TOP_POS = Math.abs((value.height / 2) - PADDING) * -0.9;
const BOTTOM_POS = ((value.height / 2) - PADDING * 3);
let FONT_SIZE = args.fontSize ? args.fontSize : (value.width / 10);
// Write text on image using graphicsmagick