You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scaling is available for each object (or group of objects). Take a look at http://kangax.github.com/fabric.js/docs/symbols/fabric.Object.html#scale (as well as scaleToHeight and scaleToWidth methods). There's no public API for scaling the entire canvas, although it shouldn't be hard to implement it.
HTML Canvas support scaling by doing ctx.scale(x,y), how is that functionality exposed in fabric.js?
I tried doing..
var ctx = canvas.getContext();
ctx.scale(650, 650);
..but that doesn't seam to do anything.
Also, is this is the right place to be asking such questions?
The text was updated successfully, but these errors were encountered: