Package Exports
- fabric-ssr
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fabric-ssr) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
#Fabric-SSR (based on manray) ###Converts Fabric.js JSON data into Image on server side
###How?
var fssr = require('fabric-ssr');
var canvasData = {objects: [], background: "white"}; // canvas data from fabric.Canvas.prototype.toJSON()
var pool = new fssr.Pool(10);
pool.render(canvasData,
{
output: 'base64',
width: 1024,
height: 768
},
function (buff) {
}
);