Java屏幕截图并另存为PNG
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java屏幕截图并另存为PNG相关的知识,希望对你有一定的参考价值。
This snippet will allow you to capture your screen in Java and saves the image as a PNG
import java.awt.AWTException; import java.awt.Robot; import java.awt.Rectangle; import java.awt.Toolkit; import java.awt.image.BufferedImage; import java.io.*; import javax.imageio.ImageIO; class ScreenCapture { // Captures the image from the screen // Writes the File as a PNG ImageIO.write(screencapture, "png", file); } }
以上是关于Java屏幕截图并另存为PNG的主要内容,如果未能解决你的问题,请参考以下文章