網頁這個功能大家可能用到最多的就是QQ,或利用asp.net來實現,其實我們也可以直接使用php來網頁哦,下面我來給大家介紹php利用CutyCapt實現網頁,有需要的朋友可參考。
CutyCapt下載地址:http://sourceforge.net/projects/cutycapt/files/cutycapt/
windows CutyCapt不需要安裝,直接儲存到你的電腦中即可。
然後你php代碼如下寫
| 代碼如下 |
複製代碼 |
/* 網頁功能,必須安裝IE+CutyCapt url:要的網頁 out:圖片儲存路徑 path:CutyCapt路徑 cmd:CutyCapt執行命令 比如:http://你php路徑.php?url=http://www.bkjia.com */ $url=$_GET["url"]; $imgname=str_replace('http://','',$url); $imgname=str_replace('https://','',$imgname); $imgname=str_replace('.','-',$imgname); $out = 'D:/webroot/test/'.$imgname.'.png'; $path = 'D:/webserver/CutyCapt.exe'; $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=http://www.bkjia.com--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/
|
測試載入成功
http://www.bkjia.com/PHPjc/444600.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/444600.htmlTechArticle網頁這個功能大家可能用到最多的就是QQ,或利用asp.net來實現,其實我們也可以直接使用php來網頁哦,下面我來給大家介...