Excel php图表生成

发布于 2024-11-09 17:16:21 字数 173 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

当梦初醒 2024-11-16 17:16:21

目前在 Excel 中处理图表的唯一 PHP 选项是:

  • 使用 PHP 的 COM扩展以及服务器上 MS Excel 本身的副本。
  • Ilia Alshanetsky 的 Excel 扩展(仅限 xls,需要商业组件)。
  • Open Office 的 COM 替代方案的 PHP 包装器 (PUNO) (需要在服务器上安装 Open Office 并启用 Java 支持)。

所有这些都使用外部组件来处理 Excel 数据本身。

读取和写入图表的目标是针对 Excel 2007 (.xlsx) 文件的 PHPExcel 下一个版本(从现在到 6 月底的某个时间)以及针对 BIFF (.xls) 文件的下一个版本(大约 9 月份)

Your only PHP options at present to work with charts in Excel are:

  • To use PHP's COM extension with a copy of MS Excel itself on the server.
  • Ilia Alshanetsky's Excel extension< (xls only, and requires a commercial component).
  • The PHP wrapper around Open Office's alternative to COM (PUNO) (requires Open Office installed on the server with Java support enabled).

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文