Package net.sourceforge.marathon.screencapture.ImagePanel

Examples of net.sourceforge.marathon.screencapture.ImagePanel.Annotation


    private void updateAnnotations(BufferedImage image) {
        Graphics graphics = image.getGraphics();
        ArrayList<Annotation> annotations = imagePanel.getAnnotations();
        for (int i = 0; i < annotations.size(); i++) {
            Annotation a = annotations.get(i);
            a.drawDecoration(graphics, i, false);
        }
    }
View Full Code Here

TOP

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

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.