fabric.js resize canvas to fit screen

前端 未结 2 2010
谎友^
谎友^ 2020-12-13 16:33

I\'m currently developping an application on mobile device (android and iPhone) with ionic and cordova. I would like to edit a picture. I use fabric.js library to do that. F

2条回答
  •  囚心锁ツ
    2020-12-13 17:08

    I have found a trick to do that without having to copy the canvas. This solution is really close to css zoom property but events are handle correctly.

    This is an example to display the canvas half its size:

    -webkit-transform : scale(0.5);
    -webkit-transform-origin : 0 0;
    

提交回复
热议问题