forked from fabricjs/fabric.js
-
Notifications
You must be signed in to change notification settings - Fork 0
kangax edited this page Jun 1, 2011
·
25 revisions
canvas.getObjects()
returns an array of all objects on canvas.
canvas.item(n)
returns n-th object on canvas (where indexing is associated with z-order)
canvas.getObjects(); // [...]
canvas.item(0); // first item
canvas.item(1); // second item
Using fabric.Object#set
method or one of the set* methods — setFill
, setWidth
, setHeight
, setOpacity
, etc.
rect.set('width', 100).set('height', 50);
// or
rect.set({ width: 100, height: 50 });
// or
rect.setFill('red');
rect.setOpacity(0.5);
Using "backgroundColor" property of fabric.Element
instance.
canvas.backgroundColor = 'red';
// or
canvas.backgroundColor = rgba(0, 255, 0, 0.5);