spiritix / php-chrome-html2pdf

A PHP library for converting HTML to PDF using Google Chrome
MIT License
112 stars 29 forks source link

Feature request: Add Auto Height #68

Open Baltazar5000 opened 6 months ago

Baltazar5000 commented 6 months ago

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)