当前位置: 软件>php软件
把html页面转成pdf zhtmltopdf
来源: http://www.oschina.net/p/zhtmltopdf
发布时间:2014-12-18
本文导语: zhtmltopdf, 把html页面转成pdf或image的php扩展 编译和安装 phpize ./configure make make install 得到的zhtmltopdf.so文件加入到你的php.ini里 用法 //参数1: 网址 //参数2: 输出的pdf文件名 //会生成pdf文件 zhtml2pdf("http://www.oschina.net", "....
zhtmltopdf, 把html页面转成pdf或image的php扩展
编译和安装
phpize ./configure make make install 得到的zhtmltopdf.so文件加入到你的php.ini里
用法
//参数1: 网址 //参数2: 输出的pdf文件名 //会生成pdf文件 zhtml2pdf("http://www.oschina.net", "./osc.pdf"); //参数1: 网址 //只输入参数,可直接到到pdf的数据, 可直接echo或输出到浏览器 $content = zhtml2pdf("http://www.oschina.net""); echo $content; //参数1: 网址 //参数2: 输出的img文件名 //会生成图片文件 zhtml2img("http://www.oschina.net"", "./osc.jpg"); //参数1: 网址 //只输入参数,可直接到到图片的数据, 可直接echo或输出到浏览器 $content = zhtml2img("http://www.oschina.net""); echo $content;
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。