嗨,我所有的图表都是出口的高图,我得到我的PHP项目的图表
但问题是
有可能吗?
可以帮我吗
或者在这里显示的是一个样本小提琴http://jsfiddle.net/YBXdq/
我需要导出图表下方的文字很好
有这么多直接和间接的方式来实现这一点
原文链接:https://www.f2er.com/php/132444.html>使用HTML Canvas:http://html2canvas.hertzen.com/
>使用wkhtmltoimage
例
exec('wkhtmltoimage --quality 50 http://www.bbc.com bbc.jpg');
>使用wkhtmltopdf ImageMagic
– 使用wkhtmltopdf将网页转换为pdf
– 使用ImageMagic将pdf转换为jpg
例
exec("convert a.pdf a.jpg");
>使用PHP imagegrabwindow和imagegrabscreen
例
$browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://localhost"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle,0); $browser->Quit(); header("Content-Type: image/png"); imagepng($im); imagedestroy($im);
先进的例子
– 另见Get Website Screenshots Using PHP
可能的问题:Getting imagegrabscreen to work
>使用Webshort,如果你安装了python,使用exec调用它
例
exec("python webshot.py https://example.com/webshot/PHP example.png");
>下载并使用Website Thumbnail Generator
例
webthumb.PHP?url=http://www.google.com&x=150&y=150
>使用boxcutter
例
exec('Boxcutter -f image.png');
例
$grabzIt = new GrabzItClient("APPLICATION KEY","APPLICATION SECRET"); $id = $grabzIt->TakePicture("http://www.google.com","http://www.example.com/GrabzItHandler.PHP");
>使用wimg.ca
使用此当前页面的示例
http://wimg.ca/https://stackoverflow.com/questions/10328457/how-to-export-the-whole-page-or-html-content-with-highcharts-not-just-the-chart/10330701#10330701
> TimThumb – PHP Image Resizer
例
timthumb.PHP?src=http://www.google.com/&webshot=1
我认为已经给出了足够的例子