寻找有关如何呈现传递到自定义文本框中的文本的一些建议。我正在探索创建具有不同类型边框(圆形,菱形等)的文本框,并使用下面的代码,可以创建一个内部带有文本框的cirlce。但是,文本没有显示/呈现到页面。
addCustom2() {
let customObj2 = fabric.util.createClass(fabric.Textbox, {
type: 'customObj2',
radius: 50,
initialize: function(element, options) {
console.log(this)
this.callSuper('initialize', element, options);
this.set({ width: 2 * this.radius, height: 2 * this.radius});
},
_render: function(ctx) {
console.log("inside render 2")
ctx.beginPath();
ctx.arc(0, 0 , this.radius, 0, 2 * Math.PI, false);
ctx.lineWidth = 5;
ctx.strokeStyle = '#003300';
ctx.stroke();
}
});
this.canvas.add(new customObj2('Hello', {
left: 100,
top:10,
fontSize: 21,
stroke: 'rgba(50,80,220)',
textAlign: 'center',
fill: 'rgba(100,80,220)'
}));
使用this post,我可以使圆圈出现,但是文本没有显示(这是我看到的:)
通过检查元素,我可以看到键入时的文本更改,因此我知道它已附加到圆上。任何帮助都将不胜感激!
答案 0 :(得分:0)
将_render
更改为_renderBackground
。