คือผมต้องการ Group ภาพ 2 ภาพ ที่ทำการเปลี่ยนรูปทรง จาก สี่เหลี่ยมเป็นวงกลม โดยใช้ Clip To คับ แต่ปรากฏว่ามัน Group ไม่ได้คับ แต่ถ้าเป็นภาพปกติ ที่ไม่มี Clip To มันสามารถ Group ได้คับ
function roundedCorners(ctx)
{
var rect = new fabric.Rect({
rx:rd / this.scaleX,
ry:rd / this.scaleY,
width:this.width,
height:this.height,
fill:'#ffffff'
});
rect._render(ctx, false);
}
if(obj)
{
obj.set({clipTo: roundedCorners.bind(obj)});
}