日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

php如何调用phantomJS截图

發(fā)布時間:2023/12/31 综合教程 34 生活家
生活随笔 收集整理的這篇文章主要介紹了 php如何调用phantomJS截图 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

推薦:《PHP視頻教程》

php調(diào)用phantomJS截圖

知識儲備

*unix系統(tǒng)安裝phantomjs,權(quán)限相關(guān)知識

基本JavaScript語法知識

php exec函數(shù)調(diào)用REPL phantomjs

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

代碼(php 代碼環(huán)境為yii2框架)

<?php
namespace weapp\\library\\phantomjs;
use weapp\\library\\BizException;
class ScreenShot
{
    /** @var string 獲取phantomjs 參數(shù)中 js文件的決定路徑 */
    private $js_path;
    /** @var bool|string 獲取php 有777權(quán)限的臨時文件目錄 */
    private $temp_dir;
    function __construct()
    {
        $dir = __DIR__;
        $this->js_path = "{$dir}/script.js";
        /** @var bool|string 獲取php 有777權(quán)限的臨時文件目錄 */
        $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";
        //執(zhí)行的phantomjs命令
        //phantomjs 可執(zhí)行文件必須是 絕對路徑 否則導(dǎo)致 exec 函數(shù)返回值127錯誤
        $cmd = "\\usr\\local\\bin\\phantomjs {$this->js_path} '$url' '$outputFilePath'";
        //捕捉不到phantomjs命令輸出結(jié)果
        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;
        }
    }
    /**
     * 調(diào)用管理后臺阿里云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腳本內(nèi)容
"use strict";
var system = require('system');
var webPage = require('webpage');
var page = webPage.create();
//設(shè)置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 函數(shù)的命令行參數(shù)
if (system.args.length !== 3) {
    console.log(system.args);
    console.log('參數(shù)錯誤');
    console.log('第2個參數(shù)為url地址 第3個參數(shù)為截圖文件名稱');
    phantom.exit(1);
}
//命令行 截圖網(wǎng)址參數(shù)
var url = system.args[1];
//圖片輸出路徑
var filePath = system.args[2];
console.log('-------');
console.log(url);
console.log('-------');
console.log(filePath);
console.log('-------');
//設(shè)置瀏覽器視口
page.viewportSize = {width: 480, height: 960};
//打開網(wǎng)址
page.open(url, function start(status) {
    //1000ms之后開始截圖
    setTimeout(function () {
        //截圖格式為jpg 80%的圖片質(zhì)量
        page.render(filePath, {format: 'jpg', quality: '80'});
        console.log('success');
        //退出phantomjs 避免phantomjs導(dǎo)致內(nèi)存泄露
        phantom.exit();
    }, 1000);
});

總結(jié)

以上是生活随笔為你收集整理的php如何调用phantomJS截图的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。