I'm trying to generate an image 1800px 2400px with 150DPI but I always get 72DPI.
var image = canvas.toDataURL({
left:150,
top: 100,
width: 180,
height: 240,
multiplier: 10
}).replace("image/png", "image/octet-stream")
How can I get a PNG with 150DPI ?