Examples of transferAggregates()


Examples of ar.app.display.ARComponent.transferAggregates()

        int rv = chooser.showSaveDialog(arc);
        if (rv != JFileChooser.APPROVE_OPTION) {return;}
        File file = chooser.getSelectedFile();
 
        @SuppressWarnings("unchecked") //Will fail if the transfer didn't end up with colors
        BufferedImage img = AggregateUtils.asImage((Aggregates<Color>) arc.transferAggregates(), arc.getWidth(), arc.getHeight(), Color.white);
        Util.writeImage(img, file);
      }
    });
   
       
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.