0
加入一個Rect對象後到畫布通過使用以下代碼:獲取畫布對象尺寸後改性
canvas = new fabric.Canvas("mycanvas");
// create a rectangle object
var rect = new fabric.Rect({
left: 30,
top: 30,
fill: "green",
width: 80,
height: 40
});
// "add" rectangle onto canvas
canvas.add(rect);
我選擇矩形和調整其大小。我的要求是:調整大小後獲得新的寬度和高度。
我試圖使用object:modified event沒有成功。以下是對象的代碼段代碼:修改事件:
canvas.on("object:modified", function (options) {
var width = options.target.width;
var height = options.target.height;
$("#widthTextBox").val(width);
$("#heightTextBox").val(height);
});
在此先感謝您。