Package net.sourceforge.marathon.screencapture

Examples of net.sourceforge.marathon.screencapture.ImagePanel


            }
        }
        if (captureFile != null) {
            File file = new File(System.getProperty(Constants.PROP_IMAGE_CAPTURE_DIR), captureFile);
            try {
                ImagePanel imagePanel = new ImagePanel(new FileInputStream(file), false);
                ArrayList<Annotation> annotations = imagePanel.getAnnotations();
                printWriter.println(indent + "  " + "<annotations>");
                for (Annotation a : annotations) {
                    printWriter.println(indent + "    " + "<annotation x=\"" + a.x + "\" y=\"" + a.y + "\" w=\"" + a.width
                            + "\" h=\"" + a.height + "\" text=\"" + quoteCharacters(a.getText()) + "\"/>");
                }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.screencapture.ImagePanel

Copyright © 2018 www.massapicom. 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.