首頁  >  文章  >  後端開發  >  php怎麼實作網頁截圖

php怎麼實作網頁截圖

coldplay.xixi
coldplay.xixi原創
2020-08-24 10:51:124194瀏覽

php實現網頁截圖的方法:先安裝Qt47,利用CutyCapt實現網頁截圖;然後安裝CutyCapt,並下載【x-server】;接著安裝中文包以及ImageMagick;最後測試並下載64位flash插件。

php怎麼實作網頁截圖

【相關學習推薦:php程式設計(影片)】

php實作網頁截圖的方法:

網頁截圖這個功能大家可能用到最多的就是QQ截圖,或利用asp.net來實現截圖,其實我們也可以直接使用php來網頁截圖,這裡就來跟大家介紹php利用CutyCapt實現網頁截圖的流程:

CutyCapt下載地址:http://sourceforge.net/projects/cutycapt/files/cutycapt/

windows CutyCapt不需要安裝,直接儲存到你的電腦中即可,然後php程式碼如下寫:

<?php
/*
网页截图功能,必须安装IE+CutyCapt
url:要截图的网页
out:图片保存路径
path:CutyCapt路径
cmd:CutyCapt执行命令
比如:http://你php路径.php?url=https://www.jb51.net
*/
$url=$_GET["url"];
$imgname=str_replace(&#39;http://&#39;,&#39;&#39;,$url);
$imgname=str_replace(&#39;https://&#39;,&#39;&#39;,$imgname);
$imgname=str_replace(&#39;.&#39;,&#39;-&#39;,$imgname);
$out = &#39;D:/webroot/test/&#39;.$imgname.&#39;.png&#39;;
$path = &#39;D:/webserver/CutyCapt.exe&#39;;
$cmd = "$path --url=$url --out=$out";
echo $cmd;
system($cmd);
?>

如果你是linux系統就需要簡單的設定一下CutyCapt,安裝網站截圖軟體CutyCapt.

#一、先安裝Qt47,增加qt47的下載來源,程式碼如下:

vi /etc/yum.repos.d/atrpms.repo
[atrpms]
name=CentOS $releasever – $basearch – ATrpms
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
enabled=1
[atrpms-testing]
name=CentOS $releasever – $basearch – ATrpms testing
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/testing
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
enabled=1
yum update
yum installqt47
yum installqt47-devel
yum installqt47-webkit
yum installqt47-webkit-devel

也許這裡還會有報錯提示:

warning: qt44-x11-4.4.3-10_4.el5.x86_64.rpm: Header V4 DSA signature: NOKEY, key ID 66534c2b
error: Failed dependencies:
    libGLU.so.1()(64bit) is needed by qt44-x11-4.4.3-10_4.el5.x86_64
    libmng.so.1()(64bit) is needed by qt44-x11-4.4.3-10_4.el5.x86_64

//解決:

//yum -y installqt-devel*

二、安裝CutyCapt,程式碼如下:

cd /data0/software
svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
mv cutycapt/CutyCapt /usr/local/cutycapt
cd /usr/local/cutycapt
qmake
make

這裡可能會報錯:

make: *** [CutyCapt] Error 1

解決:yum update sqlite,再次執行make,如果還不成功qmake-qt47 再次執行make.

三、下載x-server,程式碼如下:

wget http://www.flexthinker.com/wp-content/uploads/2009/11/xvfb-run.sh.txt
mv ./xvfb-run.sh.txt/usr/local/cutycapt/xvfb-run.sh
chmodu+x /usr/local/CutyCapt/xvfb-run.sh

四、安裝中文套件

yum installfonts-chinese

五、安裝ImageMagick

yum installImageMagick

六、測試,程式碼如下:

/usr/local/cutycapt/xvfb-run.sh --server-args="-screen 0, 1024x768x24"/usr/local/cutycapt/CutyCapt --url=https://www.jb51.net--out=/tmp/163.jpg

163.jpg沒有載入出flash.

#七、下載64位元flash外掛程式,程式碼如下:

cd /data0/software
#wget http://119.188.72.26/1/ishare.down.sina.com.cn/14036482.so?ssig=YB70Xk7Ph9&Expires=1340899200&KID=sina,ishare&ip=1340777795,114.255.44.&fn=libflashplayer.so
http://ishare.iask.sina.com.cn/f/13659493.html
ll /usr/lib64/mozilla/plugins/
lrwxrwxrwx 1 root root 41 06-27 14:00 libflashplayer.so ->/usr/lib64/flash-plugin/libflashplayer.so
cp /data0/software/libflashplayer.so /usr/lib64/flash-plugin/

【相關學習推薦:php圖文教學

以上是php怎麼實作網頁截圖的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn