I am trying to load images from my canvas to fabric canvas using
fabric.Image.fromURL(hc.toDataURL(),
function(img) {
canvas.add(img);
}
);
But if I add a 25 MB image it doesn't load the image at all. However without using fabric js I was able to do that by copying canvas and putImageData.
Any suggestions on how to improve performance ?