Is it possible to fix the width and height of a canvas element with some variables? I am speaking of such canvas elements that only exist in Html 5.
The usual way is the following :
<canvas id="canvas" width="300" height="300"></canvas>
|
|
|
The
Note that this clears the canvas, though you should follow with Note further that the height and width are the logical canvas dimensions used for drawing and are different from the
See this live example of a canvas that is zoomed in by 4x. |
||||
|
|
|
Thank you very much! Finally I solved the blurred pixels problem with this code:
plus the 'half-pixel' trick to unblur lines. |
|||||||||
|
|
The code you provided does fix the values, the width to 300px and the height to 300px. You can change those values to change your canvas size. Were you wanting to dynamically change your canvas size? |
|||||||||||
|