JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q58145F
  • License MIT

Render FabricJS data into PNG/JPG

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

    var fssr = require('fabric-ssr');

    var canvasData = {objects: [], background: "white"}; // canvas data from fabric.Canvas.prototype.toJSON()

    new fssr.Render(canvasData, {width: 1024,height: 768}, function (buff) {
        if(buff.error){

        }
        if(buff.image) {

        }
    });