phantomjs是什么

PhantomJS是一个基于webkit的javascript API。它使用QtWebKit作为它核心浏览器的功能,使用webkit来编译解释执行JavaScript代码。任何你可以在基于webkit浏览器做的事情,它都能做到。它不仅是个隐形的浏览器,提供了诸如CSS选择器、支持Web标准、DOM操作、JSON、html5、Canvas、SVG等,同时也提供了处理文件I/O的操作,从而使你可以向操作系统读写文件等。PhantomJS的用处可谓非常广泛,诸如网络监测、网页截屏、无需浏览器的 Web 测试、页面访问自动化等
PhantomJS官方地址:http://phantomjs.org/。
PhantomJS官方API:http://phantomjs.org/api/。
PhantomJS官方示例:http://phantomjs.org/examples/。
PhantomJS GitHub:https://github.com/ariya/phantomjs/

安装

官方下载地址:http://phantomjs.org/download.html。目前官方支持三种操作系统,包括windows\Mac OS\linux这三大主流的环境。你可以根据你的运行环境选择要下载的包,我的运行环境是Windows10。

windows安装

下载完成后解压文件,建议为方便使用,单独放在一个文件夹里,如我放在D:\sysncfiles\phantomjs-2.1.1-windows里。到这里,你已经成功下载安装好PhantomJS了。那么,打开D:\sysncfiles\phantomjs-2.1.1-windows\bin文件夹,双击运行phantomjs.exe。
如果使用程序需要在后台调用phantomjs命令,则需要配置运行环境。
在这里插入图片描述在这里插入图片描述
添加环境变量后,打开cmd命令窗口。
在这里插入图片描述
到此windows下的phantomjs就已经安装完成。

linux安装(centos)

在phantomjs的官网下载linux版本,linux版本有32和64位,安装自己的系统类型下载即可。
  1. 上传至服务器 (可以直接在linux服务器中下载,或者使用wget等方式下载),使用xshell等工具,将下载完成的问卷phantomjs-2.1.1-linux-x86_64.tar.bz2.tar上传至服务器中。
  2. 解压已经上传的文件,tar xjf phantomjs-2.1.1-linux-x86_64.tar.bz2.tar
  3. 将文件移至同意管理目录下(可选)mv phantomjs-2.1.1-linux-x86_64 /usr/local/phantomjs211
  4. 设置软链接 ln -s /usr/local/phantomjs211/bin/phantomjs /usr/bin/phantomjs
  5. 检查环境phantomjs –version
    在这里插入图片描述
    到此linux下的phantomjs就已经安装完成。

phantomjs导出echarts报表图片

准备工作

1.将下面代码保存至文件echarts-convert.js
(function () {
var system = require('system');
var fs = require('fs');
var config = {
    // define the location of js files
    JQUERY: 'jquery-3.3.1.min.js',
    //ESL: 'esl.js',
    ECHARTS: 'echarts.min.js',
    // default container width and height
    DEFAULT_WIDTH: '600',
    DEFAULT_HEIGHT: '700'
}, parseParams, render, pick, usage;

usage = function () {
    console.log("\nUsage: phantomjs echarts-convert.js -options options -outfile filename -width width -height height"
        + "OR"
        + "Usage: phantomjs echarts-convert.js -infile URL -outfile filename -width width -height height\n");
};

pick = function () {
    var args = arguments, i, arg, length = args.length;
    for (i = 0; i < length; i += 1) {
        arg = args[i];
        if (arg !== undefined && arg !== null && arg !== 'null' && arg != '0') {
            return arg;
        }
    }
};

parseParams = function () {
    var map = {}, i, key;
    if (system.args.length < 2) {
        usage();
        phantom.exit();
    }
    for (i = 0; i < system.args.length; i += 1) {
        if (system.args[i].charAt(0) === '-') {
            key = system.args[i].substr(1, i.length);
            if (key === 'infile') {
                // get string from file
                // force translate the key from infile to options.
                key = 'options';
                try {
                    map[key] = fs.read(system.args[i + 1]).replace(/^\s+/, '');
                } catch (e) {
                    console.log('Error: cannot find file, ' + system.args[i + 1]);
                    phantom.exit();
                }
            } else {
                map[key] = system.args[i + 1].replace(/^\s+/, '');
            }
        }
    }
    return map;
};

render = function (params) {
    var page = require('webpage').create(), createChart;

    var bodyMale = config.SVG_MALE;
    page.onConsoleMessage = function (msg) {
        console.log(msg);
    };

    page.onAlert = function (msg) {
        console.log(msg);
    };

    createChart = function (inputOption, width, height,config) {
        var counter = 0;
        function decrementImgCounter() {
            counter -= 1;
            if (counter < 1) {
                console.log(messages.imagesLoaded);
            }
        }

        function loadScript(varStr, codeStr) {
            var script = $('<script>').attr('type', 'text/javascript');
            script.html('var ' + varStr + ' = ' + codeStr);
            document.getElementsByTagName("head")[0].appendChild(script[0]);
            if (window[varStr] !== undefined) {
                console.log('Echarts.' + varStr + ' has been parsed');
            }
        }

        function loadImages() {
            var images = $('image'), i, img;
            if (images.length > 0) {
                counter = images.length;
                for (i = 0; i < images.length; i += 1) {
                    img = new Image();
                    img.onload = img.onerror = decrementImgCounter;
                    img.src = images[i].getAttribute('href');
                }
            } else {
                console.log('The images have been loaded');
            }
        }
        // load opitons
        if (inputOption != 'undefined') {
            // parse the options
            loadScript('options', inputOption);
            // disable the animation
            options.animation = false;
        }

        // we render the image, so we need set background to white.
        $(document.body).css('backgroundColor', 'white');
        var container = $("<div>").appendTo(document.body);
        container.attr('id', 'container');
        container.css({
            width: width,
            height: height
        });
        // render the chart
        var myChart = echarts.init(container[0]);
        myChart.setOption(options);
        // load images
        loadImages();
        return myChart.getDataURL();
    };

    // parse the params
    page.open("about:blank", function (status) {
        // inject the dependency js
        page.injectJs(config.ESL);
        page.injectJs(config.JQUERY);
        page.injectJs(config.ECHARTS);


        var width = pick(params.width, config.DEFAULT_WIDTH);
        var height = pick(params.height, config.DEFAULT_HEIGHT);

        // create the chart
        var base64 = page.evaluate(createChart, params.options, width, height,config);
        fs.write("base64.txt",base64);
        // define the clip-rectangle
        page.clipRect = {
            top: 0,
            left: 0,
            width: width,

            height: height
        };
        // render the image
        page.render(params.outfile);
        console.log('render complete:' + params.outfile);
        // exit
        phantom.exit();
    });
};
// get the args
var params = parseParams();

// validate the params
if (params.options === undefined || params.options.length === 0) {
    console.log("ERROR: No options or infile found.");
    usage();
    phantom.exit();
}
// set the default out file
if (params.outfile === undefined) {
    var tmpDir = fs.workingDirectory + '/tmp';
    // exists tmpDir and is it writable?
    if (!fs.exists(tmpDir)) {
        try {
            fs.makeDirectory(tmpDir);
        } catch (e) {
            console.log('ERROR: Cannot make tmp directory');
        }
    }
    params.outfile = tmpDir + "/" + new Date().getTime() + ".png";
}

// render the image
render(params);
}());

2.在echarts官网(https://www.echartsjs.com/zh/index.html)下载echarts.min.js
3.在jquery官网下载jquery-XXX.min.js
4.将已下载后的文件放置同一个文件夹下
在这里插入图片描述

使用java程序生成echarts图片

1.废话不多说直接上代码

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.UUID;

public class EchartsTest {

	    private static final String JSpath = "C:\\workspaces\\shangshi\\lcssprj\\lcss-internal\\lcss-internal-web\\src\\main\\webapp\\WEB-INF\\ExcelModel\\template\\echarts-convert.js";
	     
	    public static void main(String[] args) {
	    	
	        String options = "{\"title\":{\"text\":\"销售图\",\"subtext\":\"销售统计\",\"x\":\"CENTER\"},\"toolbox\": {\"feature\": {\"saveAsImage\": {\"show\": true,}}},\"tooltip\": {\"show\": true},\"legend\": {\"data\":[\"直接访问\",\"邮件营销\",\"联盟广告\",\"视频广告\",\"搜索引擎\"]}, \"series\":[{\"name\":\"访问来源\",\"type\":\"pie\",\"radius\": '55%',\"center\": ['50%', '60%'],\"data\":[{\"value\":335, \"name\":\"直接访问\"},{\"value\":310, \"name\":\"邮件营销\"},{\"value\":234, \"name\":\"联盟广告\"},{\"value\":135, \"name\":\"视频广告\"},{\"value\":1548, \"name\":\"搜索引擎\"}]}]}";
	        String picPath = generateEChart(options);
	 
	    }
	    
	    /*
	     * 主程序
	     */
	    public static  String generateEChart(String options) {
	        String dataPath = writeFile(options);
	        String fileName= UUID.randomUUID().toString() + ".png";
	        String path = "D:/usr/Echart/" +fileName;
	        try {
	            File file = new File(path);     //文件路径
	            if (!file.exists()) {  
	                File dir = new File(file.getParent());
	                dir.mkdirs();
	                file.createNewFile();
	            }
	            String cmd = "phantomjs " + JSpath + " -infile " + dataPath + " -outfile " + path;//生成命令行
	            Process process = Runtime.getRuntime().exec(cmd);
	            BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));
	            String line = "";
	            while ((line = input.readLine()) != null) {
	            }       
	            input.close();
	 
	        } catch (IOException e) {
	            e.printStackTrace();
	        }finally{
	     
	        }
			return path;
	    }
	 
	    /*
	     * 
	     * options生成文件存储
	     */
	    public static String writeFile(String options) {
	        String dataPath="D:\\usr\\Echart\\data"+ UUID.randomUUID().toString().substring(0, 8) +".json";
	        try {
	            /* option写入文本文件 用于执行命令*/
	            File writename = new File(dataPath); 
	            if (!writename.exists()) {   
	                File dir = new File(writename.getParent());
	                dir.mkdirs();
	                writename.createNewFile(); // 
	            }
	            BufferedWriter out = new BufferedWriter(new FileWriter(writename));
	            out.write(options); 
	            out.flush(); // 把缓存区内容压入文件
	            out.close(); // 最后关闭文件
	        } catch (IOException e) {
	            e.printStackTrace();
	        }
	        return dataPath;
	    }
	}

2.执行后会生成一下文件
在这里插入图片描述
其中json文件为echart图表的option部分。png为echarts根据option的数据显示的图片在这里插入图片描述
到此简单的java后台导出echarts图表就完成了。

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐