Hi!
I'm trying to scale the content while rendering to PDF.
Using zoom style did work on Chromium, but not while rendering with PRINCEXML.
I'm currently using this CSS:
@media print {
@page {
size: A4 landscape;
margin: 10mm 20mm 10mm 20mm;
}
html, body {
zoom: 50%;
}
}
How can I accomplish scaling when rendering to PrinceXML?
I'm trying to scale the content while rendering to PDF.
Using zoom style did work on Chromium, but not while rendering with PRINCEXML.
I'm currently using this CSS:
@media print {
@page {
size: A4 landscape;
margin: 10mm 20mm 10mm 20mm;
}
html, body {
zoom: 50%;
}
}
How can I accomplish scaling when rendering to PrinceXML?