Jump to content

Screen Shot


TheScrub

Recommended Posts

Was bored soo w/ee

 

Ideas on how to use

  • Have a area on your paint and call the method if a mouse action.
  • Display the image instead of writing on a jframe or jpanel etc.
  • many more ways!
    public void takePicture() throws AWTException {
        Robot r = new Robot();
        BufferedImage screenShot = r.createScreenCapture(new Rectangle(
                Toolkit.getDefaultToolkit().getScreenSize()));
        Date d = new Date();
        int currentHour =    d.getHours(); // deprecated methods i don't know the new ones
        int currentMin = d.getMinutes(); // same as the Hour
        String format = null;
        if (currentHour >11){
            format="PM";
        }
        if (currentHour <12){
            format="AM";
        }
        try {
            ImageIO.write(screenShot, "JPG", new File("Script_Name"+currentHour+"_"+currentMin+format+".jpg"));
        } catch (IOException e) {

            e.printStackTrace();
        }
    }
Edited by TheScrub
  • Like 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...