This commit is contained in:
Skylar Grant 2024-09-09 13:15:30 -04:00
parent f21948baad
commit c12b13dc72
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ module.exports = {
const infoString = infoArray.join('\n'); const infoString = infoArray.join('\n');
// Create a new PDF document in-memory // Create a new PDF document in-memory
const doc = new PDFDocument({ const doc = new PDFDocument({
size: [204, 450], size: [204, 400],
margin: 0 margin: 5
}); });
// Store the PDF in a buffer // Store the PDF in a buffer