62,627
社区成员
发帖
与我相关
我的任务
分享
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.lisc.imagetool;
import java.awt.image.BufferedImage;
/**
* 监听截屏抓图
* @author Administrator
*/
public interface ScreenCaptureListener {
public void captureImageCreated(BufferedImage buff);
}