文件名称:截图软件带图片保存功能
文件大小:598KB
文件格式:RAR
更新时间:2013-12-25 16:46:59
截图 图片 保存 功能
截图 图片 保存 功能ScreenCapture capture = ScreenCapture.getInstance();
capture.captureImage();// 生成蒙版图层
FileSaveAndPrintUtil saveUtil = new FileSaveAndPrintUtil(capture);
ImageSelection imageSelection = new ImageSelection(capture.getPickedImage());
// 获取系统剪切板、并存储图片
Clipboard systemClipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
systemClipboard.setContents(imageSelection, imageSelection);
String message = "截图已成功的保存在系统的剪切板中,
你可以使用 'Ctrl+ V' 组合键调出截图.
是否要保存截图到本地文件?";
int result = JOptionPane.showConfirmDialog(capture.getRootPanel(), message, "确认", JOptionPane.OK_OPTION, JOptionPane.PLAIN_MESSAGE, new ImageIcon(
ScreenCaptureTest.class.getResource("confirm.png")));
if (result == JOptionPane.OK_OPTION)
{
if (saveUtil.saveImage())
JOptionPane.showMessageDialog(capture.getRootPanel(), "截图保存成功。");
else
JOptionPane.showMessageDialog(capture.getRootPanel(), "截图保存失败。");
}
System.exit(0);// 系统正常退出
【文件预览】:
CommonUtil
----src()
--------com()
ScreenCapture.exe