Answers for "increase resolution of js canvas"

1

js set canvas size

canvas.width = 300;
// or, if you only have the context
ctx.canvas.width = 300;
Posted by: Guest on March-02-2021
0

js change canvas resolution

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
Posted by: Guest on August-14-2020

Code answers related to "increase resolution of js canvas"

Code answers related to "Javascript"

Browse Popular Code Answers by Language