Handles capturing, storing, and transmitting screenshots from an arcade PC to a custom web server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ArcadeScreenshotHandler/src/sig/ArcadeScreenshotHandler.java

46 lines
1.1 KiB

3 years ago
package sig;
import java.io.IOException;
import java.nio.file.Path;
import java.awt.image.BufferedImage;
import java.awt.AWTException;
import java.awt.GraphicsEnvironment;
import javax.imageio.ImageIO;
3 years ago
import javax.swing.JFrame;
import java.awt.Robot;
3 years ago
import sig.engine.Panel;
public class ArcadeScreenshotHandler {
public static Robot r;
3 years ago
public static final String PROGRAM_NAME="Sig's Java Project Template";
public static void main(String[] args) {
JFrame f = new JFrame(PROGRAM_NAME);
Panel p = new Panel(f);
p.init();
f.add(p);
f.setSize(1280,720);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
p.render();
try {
r = new Robot();
BufferedImage img = CaptureScreen();
ImageIO.write(img,"png",Path.of("screenshot.png").toFile());
} catch (AWTException | IOException e) {
e.printStackTrace();
}
}
private static BufferedImage CaptureScreen() throws IOException {
BufferedImage screenshot = r.createScreenCapture(GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds());
//ImageIO.write(screenshot,"png",new File("screenshot.png"));
return screenshot;
3 years ago
}
}