From 218a764b72392b4dc2918f62cf2261667f5ce4b9 Mon Sep 17 00:00:00 2001 From: incymbalis <sam@incymbalis.net> Date: Sun, 9 Jun 2019 14:33:49 +0100 Subject: [PATCH] Fix calculations for pages with bleeds set --- src/postprocesser.js | 8 ++++---- src/printer.js | 30 ++++++++++++++++-------------- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/src/postprocesser.js b/src/postprocesser.js index 635f277..27f8029 100644 --- a/src/postprocesser.js +++ b/src/postprocesser.js @@ -184,10 +184,10 @@ class PostProcesser extends EventEmitter { const rectangle = PDFLib.PDFArray.fromArray( [ - PDFLib.PDFNumber.fromNumber(boxes.crop.x * 2), - PDFLib.PDFNumber.fromNumber(boxes.crop.y * 2), - PDFLib.PDFNumber.fromNumber(boxes.crop.width), - PDFLib.PDFNumber.fromNumber(boxes.crop.height), + PDFLib.PDFNumber.fromNumber(boxes.crop.x), + PDFLib.PDFNumber.fromNumber(boxes.crop.y), + PDFLib.PDFNumber.fromNumber(boxes.crop.width + boxes.crop.x), + PDFLib.PDFNumber.fromNumber(boxes.crop.height + boxes.crop.y), ], pdfPage.index, ); diff --git a/src/printer.js b/src/printer.js index 4b3609a..5dd0bf6 100644 --- a/src/printer.js +++ b/src/printer.js @@ -16,18 +16,6 @@ let scriptPath = paths[0] + "node_modules" + paths[paths.length-1]; const PostProcesser = require('./postprocesser'); -const PDF_SETTINGS = { - printBackground: true, - displayHeaderFooter: false, - preferCSSPageSize: true, - margin: { - top: 0, - right: 0, - bottom: 0, - left: 0, - } -}; - class Printer extends EventEmitter { constructor(headless, allowLocal) { super(); @@ -205,7 +193,7 @@ class Printer extends EventEmitter { let settings = { printBackground: true, displayHeaderFooter: false, - preferCSSPageSize: options.width ? false : true, +// preferCSSPageSize: options.width ? false : true, // does not currently work with bleeds: needs to be calculated from the document width: options.width, height: options.height, orientation: options.orientation, @@ -217,7 +205,21 @@ class Printer extends EventEmitter { } } - let pdf = await page.pdf(PDF_SETTINGS) + if (!options.width) { // calculate paper size from the first page's dimensions + await page.exposeFunction('setWidthHeight', (width, height) => { + settings.width = `${width}mm`; + settings.height = `${height}mm`; + }); + await page.evaluate(() => { + const rect = document.querySelector('.pagedjs_page').getBoundingClientRect(); + setWidthHeight( + Math.round(CSS.px(rect.width).to('mm').value), + Math.round(CSS.px(rect.height).to('mm').value) + ); + }); + } + + let pdf = await page.pdf(settings) .catch((e) => { console.error(e); }); -- GitLab