php-chrome-html2pdf icon indicating copy to clipboard operation
php-chrome-html2pdf copied to clipboard

Feature request: Add Auto Height

Open Baltazar5000 opened this issue 1 year ago • 0 comments

Hello.

Add Auto Height, please.

For example, in Converter.js:

        if (options.hasOwnProperty('height')) {
            if(options.height == 'auto'){
                let bodyHeight = await page.evaluate(() => document.body.scrollHeight);
                options.height = bodyHeight;
            }
        }

        return this._getPdf(page, options)

Baltazar5000 avatar May 07 '24 20:05 Baltazar5000