如何将 pChart 创建的图像保存到文件中?
我正在使用以下内容:
$chartImage->autoOutput('/statistics/'.$image.'.png');
问题是此代码将图像输出到浏览器。如果它将图像保存到具有我指定的目录和名称的文件中,我会更喜欢它。我该怎么做?我正在查看 pChart wiki,它与所有 pCache 内容非常令人困惑。我不需要任何缓存或类似的东西......我只想保存图像。
I am using the following:
$chartImage->autoOutput('/statistics/'.$image.'.png');
The problem is that this code outputs the image to the browser. I would prefer it if it saved the image to a file with the directory and name I specified. How do I do this? I was looking at the pChart wiki, and its very confusing with all this pCache stuff. I don't have a need for any caching or anything like that... I just want to save the image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用:
它在 1.x 中对我有用,不知道 2.x - 没有使用它。
Try to use:
It worked for me in 1.x, don't know about 2.x - did not used it.
如果没有办法,那就这样做
If there is no way, then do
我把这个工作得很好。
I got this working very well.