java实现截屏程序

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;

public class ImgTool {
    private int startX;
    private int startY;
    private int width;
    private int height;
    /**
     * 源路径
     */
    private String srcPath;
    /**
     * 目标路径
     */
    private String tarPath;

    public static void main(String args[]){
        ImgTool imgT = new ImgTool();
        imgT.setStartX(100);
        imgT.setStartY(100);
        imgT.setHeight(200);
        imgT.setWidth(200);
        imgT.setSrcPath("农场.jpg");
        imgT.setTarPath("d:/1.jpg");    
        imgT.cut();
    }
    /**
     * 根据开始坐标,宽度和高度切图。
     * 把图片读入内存缓冲区,然后再
     * 根据具体坐标切取子图最后把子
     * 图按规定的格式存入指定文件
     */
    public void cut(){
        try {
            BufferedImage bufImg = ImageIO.read(new File(srcPath));
            bufImg = bufImg.getSubimage(startX, startY, width, height);
            ImageIO.write(bufImg,"jpg",new File(tarPath));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public int getStartX() {
        return startX;
    }
    public void setStartX(int startX) {
        this.startX = startX;
    }
    public int getStartY() {
        return startY;
    }
    public void setStartY(int startY) {
        this.startY = startY;
    }
    public int getWidth() {
        return width;
    }
    public void setWidth(int width) {
        this.width = width;
    }
    public int getHeight() {
        return height;
    }
    public void setHeight(int height) {
        this.height = height;
    }
    public String getSrcPath() {
        return srcPath;
    }
    public void setSrcPath(String srcPath) {
        this.srcPath = srcPath;
    }
    public String getTarPath() {
        return tarPath;
    }
    public void setTarPath(String tarPath) {
        this.tarPath = tarPath;
    }
}


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:java使用XPath解析xml

下一篇:图片缩放的Java类