My code
var options = {format:'A3',border:{top:'30px',bottom:'30px',left:'10px'}}
pdf.create(html,options).toBuffer(function(err, buffer){
res.type('application/pdf');
res.end(buffer, 'binary');
});
This is always renders the page with a constant height. How to set the page height ? Thanks !