PaperJS如何在setZoom()

时间:2018-03-03 11:02:50

标签: javascript jquery paperjs

Paper.js使用setZoom()后图像超出界限,如何将缩放系在左上方coordinate (0 , 0),,以便图像从中缩放? setZoom(85)上的实际结果:

Actual

coordinates (0, 0):

上的图像时的预期结果

Expected

1 个答案:

答案 0 :(得分:0)

我发现,我需要将我的方法添加到paper.js。

setZoomToTopLeft: function (zoom)
{
    this.transform(new Matrix().scale(zoom / this.getZoom(),
        new Point(0, 0)));
},