Level 63
Why not using spatie BrowserShot package ?
https://spatie.be/docs/browsershot/v2/introduction
You could generate a printable PDF from the HTML page with no problem about the size of the page.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have an HTML page set to a certain size since I use it for printing.
@page {
size: A4 portrait;
margin: 1%;
}
I want to add a feature where I can change the size of the page using JavaSript. Now, how do I access the @page on JavaScript?
Please or to participate in this conversation.