Examples of printDebug()


Examples of org.stathissideris.ascii2image.text.TextGrid.printDebug()

        debug("External renderer: allowing " + timeoutMillis + " ms to complete.");

        {
            TextGrid grid = new TextGrid();
            grid.initialiseWithText(gridText, options.processingOptions);
            grid.printDebug();
            debug("Printed grid in " + (System.currentTimeMillis() - start) + " ms");
        }

        File workingDir = new File("/tmp");
        String classPath = Config.getExternalRenderClasspath(context);
View Full Code Here

Examples of org.stathissideris.ascii2image.text.TextGrid.printDebug()

                grid.initialiseWithText("/-+\n| |\n+-/", options.processingOptions);
            }
        }
        else grid.initialiseWithText(gridText, options.processingOptions);

        grid.printDebug();

        long start = System.currentTimeMillis();
        Diagram diagram = new Diagram(grid, options);
        final RenderedImage image = new BitmapRenderer().renderToImage(diagram, options.renderingOptions);
        System.out.println("0. Rendered in " + (System.currentTimeMillis() - start) + " ms");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.