将 jquery 图表包含到 pdf 中
我在 php 中使用 tcpdf 生成 pdf。 http://www.tcpdf.org/examples.php
我使用 javascript / jquery 框架/ 显示一些图表的插件。 (fe http://filamentgroup.com/lab/update_to_jquery_visualize_accessible_charts_with_html5_from_designing_with/ )
图表的 tcpdf 实习生方式对我来说没有机会。 有一种将 canvas 转换为 png 的方法,如下所述( Capture HTML Canvas as gif/jpg/png/pdf? )不幸的是,在所有测试的插件/框架中,它只转换所需图表的片段。
tcpdf 支持 javascript,但 imo 仅支持表单交互,如示例之一所示。
哪种方式,甚至哪个库(与 tcpdf 不同)允许我将 js-charts 包含到 php 中的 pdf 中,而无需服务器访问?
i use tcpdf for pdf generation in php. http://www.tcpdf.org/examples.php
i use a javascript / jquery framwork / plugin to display some charts. (f.e. http://filamentgroup.com/lab/update_to_jquery_visualize_accessible_charts_with_html5_from_designing_with/ )
the tcpdf intern way for charts is no opportunity for me.
there is a method transforming canvas to png like described here ( Capture HTML Canvas as gif/jpg/png/pdf? ) which unfortunately does only convert, in all tested plugins/frameworks, fragments of the needed chart.
tcpdf supports javascript but imo only for form interactions, like seen in one of the samples.
which way, even which library (different than tcpdf) allows me to include js-charts into a pdf in php without server access?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
wkhtmltopdf 位于 WebKit 的 QT 端口之上(因此名称中包含“wk”) 。它的 JavaScript 支持非常好。
我已经用它成功地渲染了包含谷歌地图的页面。没有比这更需要脚本的了。我确实需要稍微玩一下命令行(允许页面的 JS 完成时间比默认的时间长,100 毫秒,200?)。
wkhtmltopdf sits on top of a QT port of WebKit (thus the "wk" in the name). Its JavaScript support is EXCELLENT.
I've used it to successfully render a page containing a google map. It doesn't get much more script-intense than that. I did have to play with the command line a bit (allowed the page's JS longer than the default time to complete, 100ms, 200?).
我的工作方法是使用谷歌图表API。谷歌帮助您在网页上获取交互式图表,并将其转换为 pdf,谷歌创建静态 png 并显示整个数据。到目前为止我还可以接受这一点。
My work-arround for this goes along by using google charts api. google helps you to get interactive charts on the webpage and for converting to pdf google creates static png's with the whole data displayed. so far i can live with that pretty good.