java 缩放比例_java文件比例缩小放大

1首先添加修改图片宽度和高度的方法

public static void reduceImg(String imgsrc, int widthdist, int heightdist) {

try {

File srcfile = new File(imgsrc);

if (!srcfile.exists()) {

return;

}

// 载入图片文件

Image src = javax.imageio.ImageIO.read(srcfile);

int w0 = src.getWidth(null); // 得到源图宽

int h0 = src.getHeight(null); // 得到源图长

BufferedImage tag = new BufferedImage((int) widthdist,

(int) heightdist, BufferedImage.TYPE_INT_RGB);

// 保存文件

// 绘制缩小后的图

tag.getGraphics().drawImage(

src.getScaledInstance(widthdist, heightdist,

java.awt.Image.SCALE_SMOOTH), 0, 0, null);

// tag.getGraphics().drawImage(src.getScaledInstance(widthdist,

// heightdist, Image.SCALE_AREA_AVERAGING), 0, 0, null);

// 标注水印

// int x = widthdist/10*8; //水印位置(x,y)

// int y = heightdist/10*8;

// jpg_logo( tag , x , y );

// 重命名并新建图片

String oleName = imgsrc.substring(imgsrc.lastIndexOf(".") - 1,

imgsrc.lastIndexOf("."));

String newName = oleName + "v";

String imgdist = imgsrc.replace(oleName, newName);

// 输出到文件流

FileOutputStream out = new FileOutputStream(imgdist);

JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);

// 近JPEG编码

encoder.encode(tag);

out.close();

} catch (IOException ex) {

ex.printStackTrace();

}

}

2按比例去缩小图片

public void BLDeal(String srcName,int width,int height) throws IOException

{

if (srcName != null) {

BufferedImage sourceImg = javax.imageio.ImageIO

.read(new File(srcName));

if (sourceImg.getWidth() < width && sourceImg.getHeight() < height) {

int beishu = (300 / sourceImg.getWidth()) > (300 / sourceImg

.getHeight())? 300 / sourceImg.getHeight()

: 300 / sourceImg.getWidth();

reduceImg(srcName, sourceImg.getWidth() * beishu, sourceImg

.getHeight()

* beishu);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值