如何在 ASP.Net 中将 FusionChart 导出为图像
我们正在使用融合图表的免费版本,想知道是否有一种方法可以在不使用任何第三方组件的情况下将生成的图表导出到图像。我们使用 ASP.Net 来生成图表。
We are using the free version of fusion charts and want to know is there a way to export the generated chart to image without using any third party components. We are using the ASP.Net for generating the charts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解决方案
经过对这个主题的研究,我找到了一个有用的解决方案。
为此,我们需要 Bytecout 的免费软件来将 swf 转换为图像。可以从此链接下载该文件。
然后我们需要注册 COM dll 并将引用添加到我们的项目中。进一步使用请参考下文
这里animation='0'起着非常重要的作用,它指定融合图表swf,必须在没有动画的情况下加载。另外,如果我们让代码休眠 1 或 2 秒,swf 将完全加载,并且图像将转换为所选格式,这是可取的。
希望这对像我这样的人有用。 :-)
SOLUTION
After a research on this topic, I have found a useful solution for this.
For that we need to have a freeware from Bytecout to convert swf to image. This can be downloaded from this link.
Then we need to register the COM dlls and add the reference to our project. Refer to the below for further usage
Here animation='0' plays a very important role, it specifies the fusion chart swf that, it must be loaded without animation. Also it is advisable if we sleep the code for 1 or 2 sec the swf would be loaded completely and image is converted to the selected format.
Hope this would be useful for someone like me. :-)
当然,还有免费的 Asp.net 图表控件 (此处)。 此处 是如何使用这些工具导出的示例。
Of course, there's also the free Asp.net charting controls (here). Here's an example of how to export with those tools.
FusionCharts 团队开发了一个 .NET 程序集,使您能够在服务器上导出图表,而无需在浏览器中加载图表。
您可以通过写信给 FusionCharts 支持来获取它:http://www.fusioncharts.com/contact/ 。
这仅适用于 FusionCharts v3 图表。
FusionCharts Team has developed a .NET assembly which will enable you to export chart at server without loading the chart in the browser.
You can have it by writing to FusionCharts Support at http://www.fusioncharts.com/contact/.
This only works for FusionCharts v3 charts.