HTML5 Canvas: Zooming

后端 未结 6 863
天命终不由人
天命终不由人 2020-11-27 11:59

Is there any easy way how to zoom in and back out in canvas (JavaScript)? Basically I have a 400x400px canvas and I\'d like to be able to zoom in with \'mousedown\' (2x) and

6条回答
  •  清酒与你
    2020-11-27 12:47

    IIRC Canvas is a raster style bitmap. it wont be zoomable because there's no stored information to zoom to.

    Your best bet is to keep two copies in memory (zoomed and non) and swap them on mouse click.

提交回复
热议问题