All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xhtmlrenderer.test.SimplePageTest Maven / Gradle / Ivy

Go to download

Flying Saucer is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code as well as Java2D output.

There is a newer version: 9.9.3
Show newest version
package org.xhtmlrenderer.test;

import java.io.File;
import java.util.Date;

import org.xhtmlrenderer.simple.Graphics2DRenderer;
import org.xhtmlrenderer.util.Uu;

public class SimplePageTest {

    public static void main(String[] args) throws Exception {
        long total = 0;
        int cnt = 1;
        String demosDir = "d:/java/javanet/xhtmlrenderer/demos/browser/xhtml/new";
        String page = demosDir + "/dead-simple-page.xhtml";
        if ( args.length == 1 ) {
            page = demosDir + "/" + args[0];
        }
        //String page = demosDir + "/browser/xhtml/hamlet.xhtml";
        //String page = demosDir + "/splash/splash.html";
        System.out.println("Testing with page " + page);
        for (int i = 0; i < cnt; i++) {
            Date start = new Date();
            Graphics2DRenderer.renderToImage(new File(page).toURL().toExternalForm(),
                    700, 700);
            Date end = new Date();
            long diff = (end.getTime() - start.getTime());
            Uu.p("ms = " + diff);
            if (i > 4) total += diff;
        }
        long avg = total / cnt;
        System.out.println("average : " + avg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy