Image being clipped when copied to HTML canvas using drawImage

后端 未结 2 1796
孤城傲影
孤城傲影 2020-12-22 09:14

I am writing a small snippet that allows a user to drag an image into a div container (dropzone) and then creates a canvas in that div and paints the image into the div. But

2条回答
  •  眼角桃花
    2020-12-22 09:49

    I have canvas width and heihgt set to 100% in css setting so:

    canvas.width = canvas.offsetWidth;
    canvas.height = canvas.offsetHeight;
    

    in page load event do the trick

提交回复
热议问题