最新消息: 新版网站上线了!!!

php将网站截图生成pdf

<?php
wkhtmltox_convert('pdf',
    array(
        'out' => 'test2.pdf',
        'imageQuality' => '95'
    ), // global settings
    array(
        array(
            'page' => 'http://www.kuitao8.com/'
        ),
        array(
            'page' => 'http://www.zhaodaima.net/'
        )
    )// object settings
);
?>
安装方法 参考资料

Linux下php给网站截图的方法

  到tmp目录下就可以看到我们已经将google的首页保存为test.jpg图片,是不是很有成就感,把图片下载到本地,查看图片,你可能会发现中文显示为乱码,不用担心,请看下文。

1.6.让CentOS支持中文

 

#yum groupinstall chinese-support

例子截图


转载请注明:谷谷点程序 » php将网站截图生成pdf