加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

java实现截屏程序

发布时间:2020-12-15 00:15:03 所属栏目:Java 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 import java.awt.image.BufferedImage;import java.io.File;import javax.imageio.ImageIO;public class ImgTool { private int startX; private int

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

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;
    }
}


以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读