我想知道如何从文本对象中检索文本(IText / Text)值?
var textObj = new fabric.IText('hello friends', { left: 100, top: 100 });
canvas.add(textObj);
那么我如何检索'textObj'的文本值?
答案 0 :(得分:1)
textObj.text
或textObj.get('text')
适用于Fabricjs 2.x
要从所选对象中获取文本
const obj = canvas.getActiveObject()
if (obj && obj.isType('textbox')) {
const { text } = obj
// ...
}