phantomjs插件---实现通过链接生成网页截图

Phantomjs | PhantomJS


  • 配置要求

    windows下,安装完成phantomJS
    设置phantomjs环境变量【也可直接使用phantomjs目录下的执行文件】
    直接通过访问php文件执行/通过cmd命令行执行【phantomjs phantom_script.js】

    linux下,安装完成phantomJS
    设置phantomjs环境变量
    直接命令行执行phantom_script.js即可【phantomjs phantom_script.js】

  • phantom.php

php 复制代码
<?php
// 引入并执行 PhantomJS 脚本
$phantomScript = './phantom_script.js';
$command = 'phantomjs ' . $phantomScript;
$output = shell_exec($command);

echo 'Screenshot saved at: ' . trim($output);
  • phantom_script.js
javascript 复制代码
var page = require('webpage').create();
page.viewportSize = { width: 900, height: 600 };

var url = 'https://www.kancloud.cn/manual/thinkphp6_0/1037479';  // 替换为您的URL

var timestamp = new Date().getTime();
var savePath = './phantomimg/'+timestamp+'.png';  // 保存截图的路径

function takeScreenshot() {
    page.open(url, function(status) {
        if (status === 'success') {
            // 在页面加载完成后,等待一段时间以确保动态数据(如echarts 图表)渲染完全
            setTimeout(function() {
                page.render(savePath);
                console.log(savePath);
                phantom.exit();
            }, 2000);  // 设置等待时间,单位为毫秒(根据网页数据加载时间参考等待时间)
        } else {
            console.log('Unable to load the page.');
            phantom.exit();
        }
    });
}

takeScreenshot()
相关推荐
装疯迷窍_A1 天前
ARCGIS国土超级工具集1.3更新说明
arcgis·c#·插件·变更调查·尖锐角·狭长
zfj3213 天前
学英语学技术: jmeter插件管理器
jmeter·插件·压测工具
xiangxiongfly91515 天前
Vue3 自定义插件(plugin)
vue3·插件·plugin
drebander21 天前
在 IntelliJ IDEA 中开发 GPT 自动补全插件
intellij-idea·插件
Alan_Wdd1 个月前
解决谷歌人机验证 (reCAPTCHA) 无法加载问题
前端·chrome·浏览器·插件·人机验证·recaptcha
哆啦 AI 梦1 个月前
【Maven】生命周期和插件详解
maven·生命周期·插件·插件目标
哆啦 AI 梦1 个月前
【Maven】自定义Maven插件
maven·插件·插件开发
小小工匠1 个月前
Plugin - 插件开发03_Spring Boot动态插件化与热加载
spring boot·插件
程序设计实验室2 个月前
一个有趣的插件,让写代码变成打怪升级的游戏
插件
ShihanW2 个月前
geocodeCN:一个批量将地址转为地理坐标的插件
gis·qgis·插件·地理编码