HTML canvas - drawing disappear on resizing

前端 未结 7 1342
自闭症患者
自闭症患者 2020-12-03 17:08

I have created a basic shape in HTML canvas element which works fine.

The problem occurs when I resize the canvas, all the drawing in the canvas disappears. Is this

7条回答
  •  心在旅途
    2020-12-03 18:03

    I had the same problem. Try following code

    var wrapper = document.getElementById("signature-pad");
    var canvas = wrapper.querySelector("canvas");
    var ratio = Math.max(window.devicePixelRatio || 1, 1);
    canvas.width = canvas.offsetWidth * ratio;
    canvas.height = canvas.offsetHeight * ratio;
    

    It keeps the drawing as it is

提交回复
热议问题