forked from Supositware/Haha-Yes
Some refraction
This commit is contained in:
parent
48c46b8a5c
commit
c70988384e
2 changed files with 3 additions and 5 deletions
|
@ -84,7 +84,7 @@ class memeCommand extends Command {
|
|||
// Set text position for top and bottom
|
||||
const TOP_POS = Math.abs((value.height / 2) - PADDING) * -1;
|
||||
const BOTTOM_POS = (value.height / 2) - PADDING;
|
||||
let FONT_SIZE = args.fontSize == true ? args.fontSize : (value.width / 10);
|
||||
let FONT_SIZE = args.fontSize ? args.fontSize : (value.width / 10);
|
||||
|
||||
// Write text on image using graphicsmagick
|
||||
img.font(FONT, FONT_SIZE)
|
||||
|
|
|
@ -103,10 +103,8 @@ class posterCommand extends Command {
|
|||
const TOP_POS = Math.abs((value.height / 2) - PADDING + 110);
|
||||
const BOTTOM_POS = Math.abs((value.height / 2) - PADDING + 180);
|
||||
|
||||
let FONT_SIZE1 = (value.width / 12);
|
||||
if (args.title) FONT_SIZE1 = args.title;
|
||||
let FONT_SIZE2 = (value.width / 12) - 15;
|
||||
if (args.subtext) FONT_SIZE2 = args.subtext;
|
||||
let FONT_SIZE1 = args.title ? args.title : (value.width / 12);
|
||||
let FONT_SIZE2 = args.subtext ? args.subtext : (value.width / 12) - 15;
|
||||
|
||||
let BORDER_WIDTH = args.width;
|
||||
let BORDER_HEIGHT = args.height;
|
||||
|
|
Loading…
Reference in a new issue