中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php怎樣調用phantomJS截圖

發布時間:2020-11-18 09:49:01 來源:億速云 閱讀:208 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關php怎樣調用phantomJS截圖,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

php調用phantomJS截圖

  • 知識儲備

*unix系統安裝phantomjs,權限相關知識

基本JavaScript語法知識

php exec函數調用REPL phantomjs

phantomjs js截圖文檔 http://javascript.ruanyifeng.com/tool/phantomjs.html

  • 代碼(php 代碼環境為yii2框架)

<?php
namespace weapp\library\phantomjs;
use weapp\library\BizException;
class ScreenShot
{
    /** @var string 獲取phantomjs 參數中 js文件的決定路徑 */
    private $js_path;
    /** @var bool|string 獲取php 有777權限的臨時文件目錄 */
    private $temp_dir;
    function __construct()
    {
        $dir = __DIR__;
        $this->js_path = "{$dir}/script.js";
        /** @var bool|string 獲取php 有777權限的臨時文件目錄 */
        $this->temp_dir = \Yii::getAlias('@runtime');
    }
    /**
     * 截圖并上傳
     * @param string $url
     * @param string $filename
     * @return string
     * @throws BizException
     */
    public function screenShotThenSaveToOss(string $url, string $filename = 'temp.jpg')
    {
        //輸出圖片的路徑
        $outputFilePath = "{$this->temp_dir}/$filename";
        //執行的phantomjs命令
        //phantomjs 可執行文件必須是 絕對路徑 否則導致 exec 函數返回值127錯誤
        $cmd = "\usr\local\bin\phantomjs {$this->js_path} '$url' '$outputFilePath'";
        //捕捉不到phantomjs命令輸出結果
        exec($cmd, $output);
        //檢查截圖文件是否存在
        $isShotImgaeExist = file_exists($outputFilePath);
        if (!$isShotImgaeExist) {
            throw new BizException(0, 'phantomjs截圖失敗', BizException::SELF_DEFINE);
        }
        //保存截圖到oss
        $result = $this->postScreenShotImageToOss($outputFilePath);
        //刪除臨時文件夾的截圖圖片
        unlink($outputFilePath);
        return $result;
    }
    /**
     * 上傳截圖到阿里云直傳oss
     * @param string $screenshot_path
     * @return string
     */
    public function postScreenShotImageToOss(string $screenshot_path): string
    {
        $ossKey = 'raw_file_name';
        $file = new \CURLFile($screenshot_path, 'image/jpeg', 'file');
        $tokenArray = $this->getOssPolicyToken('fetch');
        $url = $tokenArray->host;
        $postData = [
            'key' => "{$tokenArray->dir}/$ossKey",
            'policy' => $tokenArray->policy,
            'OSSAccessKeyId' => $tokenArray->accessid,
            'success_action_status' => '200',
            'signature' => $tokenArray->signature,
            'callback' => $tokenArray->callback,
            'file' => $file
        ];
        $ch = curl_init();
        //$data = array('name' => 'Foo', 'file' => '@/home/user/test.png');
        curl_setopt($ch, CURLOPT_URL, $url);
        // Disable SSL verification
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_SAFE_UPLOAD, true); // required as of PHP 5.6.0
        curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_TIMEOUT, 20);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
        //curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: $mime_type"]);
        $res = curl_exec($ch);
        $res = json_decode($res);
        curl_close($ch);
        if (empty($res) || $res->code != 0) {
            return '';
        } else {
            return $res->data->url;
        }
    }
    /**
     * 調用管理后臺阿里云oss token接口
     * @param null $url
     * @return array
     */
    public function getOssPolicyToken($url = null)
    {
        $url = \Yii::$app->params['oss_screen_shot_token_api'];
        $ch = curl_init();
        // Disable SSL verification
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        // Will return the response, if false it print the response
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        // Set the url
        curl_setopt($ch, CURLOPT_URL, $url);
        // Execute
        $result = curl_exec($ch);
        // Closing
        curl_close($ch);
        $res = json_decode($result);
        if (empty($res) || $res->code != 0) {
            return [];
        } else {
            return $res->data;
        }
    }
}
phantomjs javascript腳本內容
"use strict";
var system = require('system');
var webPage = require('webpage');
var page = webPage.create();
//設置phantomjs的瀏覽器user-agent
page.settings.userAgent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1';
//獲取php exec 函數的命令行參數
if (system.args.length !== 3) {
    console.log(system.args);
    console.log('參數錯誤');
    console.log('第2個參數為url地址 第3個參數為截圖文件名稱');
    phantom.exit(1);
}
//命令行 截圖網址參數
var url = system.args[1];
//圖片輸出路徑
var filePath = system.args[2];
console.log('-------');
console.log(url);
console.log('-------');
console.log(filePath);
console.log('-------');
//設置瀏覽器視口
page.viewportSize = {width: 480, height: 960};
//打開網址
page.open(url, function start(status) {
    //1000ms之后開始截圖
    setTimeout(function () {
        //截圖格式為jpg 80%的圖片質量
        page.render(filePath, {format: 'jpg', quality: '80'});
        console.log('success');
        //退出phantomjs 避免phantomjs導致內存泄露
        phantom.exit();
    }, 1000);
});

關于php怎樣調用phantomJS截圖就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平远县| 南投县| 新田县| 汉阴县| 伊金霍洛旗| 营口市| 额敏县| 临泽县| 宁安市| 肃宁县| 中卫市| 芒康县| 达拉特旗| 潞西市| 临安市| 莱芜市| 北辰区| 霍邱县| 蒲城县| 滦平县| 湖州市| 临沂市| 石门县| 会昌县| 临武县| 宾阳县| 呼玛县| 高阳县| 丰原市| 江达县| 庆云县| 库车县| 胶州市| 松原市| 徐水县| 大厂| 西昌市| 民权县| 诸城市| 深圳市| 互助|