zoukankan      html  css  js  c++  java
  • java图片转换格式并设定大小

    import java.awt.Graphics2D;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    /**
    * 支持转换成BMP, JPG,PNG, JPEG, WBMP, GIF格式
    *
    */
    public class ImageConvertJPEG {
    private String inPath; //输入路径
    private String outPath; //输出路径,不包含文件名,如C:\\Users\\Administrator\\Desktop或C:/Users/Administrator/Desktop
    private String outFileName; //输出文件名,如myPicture
    private int width=200; //转换后的图片宽度
    private int heigth=200; //轮换后的图片高度

    public void beginConvert() throws IOException {
    File inFile
    = new File(inPath);
    if (!inFile.exists() || inFile.isDirectory()) {
    throw new IOException("文件不存在!");
    }
    File outFile
    = new File(outPath + "/" + outFileName + ".jpeg");
    try {
    BufferedImage bufferedImage
    = ImageIO.read(inFile);
    BufferedImage bufferedChange
    =new BufferedImage(width, heigth, BufferedImage.TYPE_INT_BGR);
    Graphics2D g
    = (Graphics2D) bufferedChange.getGraphics();
    g.drawImage(bufferedImage,
    0, 0, 256, 256, null);
    g.dispose();
    bufferedChange.flush();
    ImageIO.write(bufferedChange,
    "JPEG", outFile);
    }
    catch (Exception e) {
    throw new IOException("输入文件不是允许图片!");
    }
    }
    public ImageConvertJPEG() {
    }

    public ImageConvertJPEG(String inPath, String outPath, String outFileName) {
    this.inPath = inPath;
    this.outPath = outPath;
    this.outFileName = outFileName;
    }
    }
  • 相关阅读:
    linux的msl
    kubernetes资源调度之LimitRange
    使用setfacl实现子目录继承父目录权限 转载
    k8s glusterfs,GlusterFS Volume 添加ACL支持
    windows10环境下编译python3版pjsua库
    Java单链表反转
    Linux常用命令
    slice()和splice()区别
    js文件三斜杠注释///reference path用途,js文件引用另一个js文件的写法
    【UML】如何记忆UML类图的画法
  • 原文地址:https://www.cnblogs.com/live365wang/p/2150131.html
Copyright © 2011-2022 走看看