canvas 生成的图片 dpi 不够大。
1
otakustay 2017-03-21 17:53:07 +08:00
canvas 本身是位图绘制的,所以 canvas 就这么大生成的图片也只能这么大,放大就会失真,你要高 dpi 的只能一开始就搞一个超大的 canvas 出来
|
3
ffx0s OP @otakustay 官方文档说: The HTMLCanvasElement.toDataURL() method returns a data URI containing a representation of the image in the format specified by the type parameter (defaults to PNG). The returned image is in a resolution of 96 dpi.
就是无论 canvas 多大,下载的图片 dpi 都是 96 |