is it possible to ALWAYS center an object on a fabricjs canvas?
Background: I am building a webtool that makes it easy to create complex animations using fabricjs. I wan
Or you can center the object like so
// add the image object Canvas.add(oImg) // set the object to be centered to the Canvas Canvas.centerObject(oImg); Canvas.setActiveObject(oImg); Canvas.renderAll();