Chop half the border height

This commit is contained in:
loicbersier 2020-02-21 20:16:21 +01:00
parent a5a1bcfff7
commit 592516d8b0

View file

@ -129,7 +129,7 @@ class posterCommand extends Command {
.write(output, function(err) {
// Chop the top part of the image
let img2 = gm(output);
img2.chop(0, 100)
img2.chop(0, BORDER_HEIGHT / 2)
.write(output, function(err) {
loadingmsg.delete();
if (err) {