gpt4 book ai didi

javascript - Fabric.js 文本转换不起作用

转载 作者:行者123 更新时间:2023-11-28 08:40:16 26 4
gpt4 key购买 nike

我无法将 transformMatrix 应用于 Fabric 中的文本对象。

问题如下: http://jsfiddle.net/d8Tkj/1/

var canvas = new fabric.Canvas('c');

canvas.add(new fabric.Text('Transform does not work', {
fontSize:20,
left:0,
top:0,
'transformMatrix': [1,0,0,1,0,200] // should translate by 200px down. But this does not work
}));


canvas.add(new fabric.Text('But this works', {
fontSize:20,
left:0,
top:200
}));

// transform works on other objects:
canvas.add(new fabric.Rect({
left:0,
top:0,
width:50,
height:50,
fill:'red',
'transformMatrix': [1,0,0,1,100,100]
}));

还有其他人看到过这个问题吗?我知道我可以通过改变位置来进行翻译,但我需要能够为我的应用程序使用变换矩阵。

最佳答案

文本的transformMatrix在最新版本的fabric.js ie中工作正常。 1.4.1 https://github.com/kangax/fabric.js/blob/master/CHANGELOG.md

检查上面的链接。

关于javascript - Fabric.js 文本转换不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20579306/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com