将 Microsoft Chart 导出为 PDF 和 JPG 格式
在我的应用程序中,我使用 Microsoft Chart。在生成的图表下方,有两个按钮:“导出为 PDF”和“导出为 JPG”。但是,我不确定如何实现这两个按钮。
将图表导出为 PDF 和 JPG 格式的最佳方法是什么?预先感谢您的任何帮助。
In my application, I use Microsoft Chart. Below a generated chart, I have two buttons: "Export to PDF", and "Export to JPG". However, I'm not sure of how to go about implementing these two buttons.
What would be the best way to export the chart to PDF and JPG formats? Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jPeg 很简单:
Chart1.SaveImage(@"C:\MyImage.jpg", System.Web.UI.DataVisualization.Charting.ChartImageFormat.Jpeg);
对于 PDF,您需要获取第三方工具(ItextSharp?)或使用 PDF 打印机驱动程序(dopdf)。它不是内置的。
jPeg is easy:
Chart1.SaveImage(@"C:\MyImage.jpg", System.Web.UI.DataVisualization.Charting.ChartImageFormat.Jpeg);
For PDF, you'll need to get a third party tool (ItextSharp?) or use a PDF printer driver (dopdf). It's not built in.