What is the default DPI when using puppeteer?

Viewed 558

When using puppeteer without changing any settings, what is the default Dots per inch (DPI) when saving a PDF?

1 Answers

It looks to me like the default it 96dpi.

From some testing and trying to render a design at 72dpi, it's clear that the output is out by a factor of 1.33333.

It doesn't seem there is a way to configure this however.

Related