Paper.js使用setZoom()
后图像超出界限,如何将缩放系在左上方coordinate (0 , 0),
,以便图像从中缩放?
setZoom(85)上的实际结果:
coordinates (0, 0):
答案 0 :(得分:0)
我发现,我需要将我的方法添加到paper.js。
setZoomToTopLeft: function (zoom)
{
this.transform(new Matrix().scale(zoom / this.getZoom(),
new Point(0, 0)));
},