有没有办法导出 PowerPoint?
Is there a way to export the PowerPoint?
我想将 GoJs 图表导出到 Microsoft Office PowerPoint。所以检查了它,但我没有得到一个好的结果。
有什么好的方法吗?
目前支持jpeg图片类型。
myDiagram.makeImage({
scale: 1,
background: "AntiqueWhite",
type: "image/jpeg"
});
下图是使用指定的 AntiqueWhite 背景创建的 jpeg。
更多信息请参考本页documentation。
我找到了最好的方法。
Gojs 无法导出到 PowerPoint,但我可以获取图表对象。
使用该对象,编写一个中间 json 文件。
我们从中掌握图表的状态json,并使用 apache poi 创建 PowerPoint。
apache poi https://poi.apache.org/
谢谢。
我想将 GoJs 图表导出到 Microsoft Office PowerPoint。所以检查了它,但我没有得到一个好的结果。
有什么好的方法吗?
目前支持jpeg图片类型。
myDiagram.makeImage({
scale: 1,
background: "AntiqueWhite",
type: "image/jpeg"
});
下图是使用指定的 AntiqueWhite 背景创建的 jpeg。
更多信息请参考本页documentation。
我找到了最好的方法。
Gojs 无法导出到 PowerPoint,但我可以获取图表对象。
使用该对象,编写一个中间 json 文件。
我们从中掌握图表的状态json,并使用 apache poi 创建 PowerPoint。
apache poi https://poi.apache.org/
谢谢。