Search code examples
javascriptcanvasgojs

Is there a way to export the PowerPoint?


I wanna export GoJs diagrams to Microsoft Office PowerPoint. so examined it, but I couldn't get a good result.

Is there a good way to do it?


Solution

  • I found the best way.

    Gojs can't export to PowerPoint, but I can get diagram objects.

    Using that object, write an intermediate json file.

    We grasp the state of diagram from that json and create a PowerPoint using apache poi.

    apache poi https://poi.apache.org/

    thanks.