Excel php图表生成
我正在使用 PHPExcel 库来读取/写入 Excel 文件。现在我想生成一个图表,或添加一个图像(使用 pChart 生成的图表)。我想知道是否有其他库支持动态图像插入(不是模板图像)或基于书面数据生成图表。
I am using PHPExcel library to read/write excel files. Now I want to generate a chart, or add an image (chart generated with pChart ). I would like to know if there are other libraries that support dinamic image insertion (not template images) or chart generation based on written data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前在 Excel 中处理图表的唯一 PHP 选项是:
所有这些都使用外部组件来处理 Excel 数据本身。
读取和写入图表的目标是针对 Excel 2007 (.xlsx) 文件的 PHPExcel 下一个版本(从现在到 6 月底的某个时间)以及针对 BIFF (.xls) 文件的下一个版本(大约 9 月份)
Your only PHP options at present to work with charts in Excel are:
all of which use an external component for handling the excel data itself.
Reading and Writing charts is targeted for the next realease of PHPExcel (sometime between now and the end of June) for Excel 2007 (.xlsx) files, and in the following release (sometime around September) for BIFF (.xls) files