📜  js 更改画布分辨率 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:03.155000             🧑  作者: Mango

代码示例1
canvasElement.width = 1920;
canvasElement.height = 1080;
// note, canvasElement.style.width != canvasElement.width
// cE.style.width is the size of the canvas and cE.width is it's resolution