Hello,
I tried Export to PDF feature, apparently Windows and Linux fonts are not the same thus the exported report is not showing in the same way it supposed to be.
I tried to add an online font to standardize the font in Windows and Linux. But still, the exported pdf in Linux does not show the correct font either.
XReport.view.php
`
...
@import url('https://fonts.googleapis.com/css?family=PT+Sans&display=swap');
html {
font-family: 'PT Sans', sans-serif;
}
...
`
I searched online about phantomJS and apparently the project is dead now. Also have taken a look at chrome headless, but due to my project requirement, I need to host it locally (no internet connection in production server).
Any input / advice on this particular topic?
Thanks, AST