PHP如何實作網頁截圖

藏色散人
發布: 2023-03-04 13:46:01
原創
5497 人瀏覽過

PHP實作網頁截圖的方法:先下載CutyCapt;然後解壓縮tar包;最後使用程式碼「public function index(){echo '

';echo date('Y-m-d H:m:s ')...}”實現截圖即可。 </p></blockquote>
<p><img  src="https://img.php.cn/upload/article/202008/15/2020081509330277584.jpg" alt="PHP如何實作網頁截圖" ></p>
<p>推薦:《<a href="https://www.php.cn/course/list/29/type/2.html" target="_blank">PHP影片教學</a>》</p>
<link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-963e387caa.css">
<p id="content_views" class="markdown_views prism-tomorrow-night-eighties"><!-- flowchart 箭头图标 勿删 --><svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><path stroke-linecap="round" d="M5,0 0,2.5 5,5z" id="raphael-marker-block" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></path></svg></p>
<blockquote><p><strong>如果需要將一個網址的內容做成視圖圖片輸出,則需要輔助工具<code>CutyCapt</code>來實現這個需求</strong></p></blockquote>
<h2>Windows系統</h2>
<ul>
<li>下載CutyCapt<br>CutyCapt下載位址:http://sourceforge.net/projects/cutycapt/files/cutycapt/</li>
<li>#解壓縮tar包,看到<code>CutyCapt.exe</code>  不需要再點選安裝</li>
<li>#程式碼實作(時間需要20多秒):</li>
</ul><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:js;toolbar:false;"> public function index()
    {
        echo &#39;<pre class="brush:php;toolbar:false">&#39;;
        echo date(&#39;Y-m-d H:m:s&#39;).&#39;<br>&#39;;
        $_GET[&#39;url&#39;] = &#39;https://www.aliyun.com/jiaocheng/970387.html&#39;;
        $url=$_GET["url"];
        $imgName = rand(10000,99999);
        $out = &#39;D:/game/&#39;.$imgName.&#39;.png&#39;; //输出图片地址
        $path = &#39;D:/game/CutyCapt.exe&#39;;   //工具存储地址
        $cmd = "$path --url=$url --out=$out";
        echo $cmd.&#39;<br>&#39;;
        system($cmd, $em);
        if(!empty($em)){
            echo &#39;成功了呢&#39;;
        };
        echo date(&#39;Y-m-d H:m:s&#39;).&#39;<br>&#39;;

    }
登入後複製
  • #注意(如果直接命令列執行$cmd報錯):

QIODevice::read: maxSize argument exceeds QByteArray size limit terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.

處理
1、開始–運行–輸入cmd
2、輸入cd %windir%\system32 (進入windows安裝目錄的system32資料夾)
3、輸入Regsvr32 Msxml3.dll
4、緣由連結

Linux系統

CutyCapt是一個截圖工具

官方網站http://cutycapt.sourceforge.net /
我主要的目的是解決用php儲存網頁為圖片,廢話不多少開始安裝CutyCapt

yum install epel-release
#依赖安装
yum install Xvfbyum install xorg-x11-fonts*yum install qtwebkit-devel qt-devel
#中文字体
yum install fonts-chinese
yum install CutyCapt
#测试使用
xvfb-run --server-args="-screen 0, 1920x1080x24" CutyCapt --url=http://www.phpsong.com --out=phpsong.jpg
如果提示错误libEGL warning: DRI2: failed to open swrast (search paths /usr/lib64/dri)
登入後複製

解決方法

yum install mesa-dri-drivers
登入後複製

問題

1)截圖時候有亂碼
2) 執行速度慢
3)截取百度和小松博客,發現按鈕上的文字沒有顯示,應該也是亂碼導致的

PS.中文亂碼問題

#將windows下的中文字體上傳至/usr/share/fonts目錄,執行下指令fc-cache即可

測試截圖

xvfb-run --server-args="-screen 0, 1920x1080x24" CutyCapt --url=http://www.phpsong.com --out=1.jpg
xvfb-run --server-args="-screen 0, 1920x1080x24" CutyCapt --url=http://www.baidu.com --out=2.jpg
xvfb-run --server-args="-screen 0, 1920x1080x24" CutyCapt --url=http://www.163.com --out=3.jpg
xvfb-run --server-args="-screen 0, 1920x1080x24" CutyCapt --url=http://www.sina.com.cn --out=4.jpg
登入後複製

範例

<?php
/* 
网页截图功能,必须安装IE+CutyCapt
url:要截图的网页
out:图片保存路径
path:CutyCapt路径
cmd:CutyCapt执行命令
比如:http://你php路径.php?url=http://www.111cn.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);
?>
登入後複製

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

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板