Java 图片合并类
发布时间:2020-05-24 21:46:02 所属栏目:Java 来源:互联网
导读:Java 图片合并类
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 package com.loyom.mp.handle;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ImageHandle {
public BufferedImage marge(String first,String last,boolean isVertical) {
BufferedImage one = this.readImage(first);
BufferedImage two = this.readImage(last);
if (isVertical) {
return this.mergeTwoImageByVertical(one,two);
} else {
return this.mergeTwoImageByHorizontal(one,two);
}
}
public void saveImage(String savePath,BufferedImage image) {
try {
File file = new File(savePath);
ImageIO.write(image,"jpg",file);// 写图片
} catch (IOException ex) {
ex.printStackTrace();
}
}
private BufferedImage mergeTwoImageByVertical(BufferedImage one,BufferedImage two) {
int width = this.getWidth(one);
int height = this.getHeight(one);
int[] oneRPG = this.readImageRPG(one);
int[] twoRPG = this.readImageRPG(two);
BufferedImage result = new BufferedImage(width,height * 2,BufferedImage.TYPE_INT_RGB);
result.setRGB(0,width,height,oneRPG,width);
result.setRGB(0,twoRPG,width);
return result;
}
private BufferedImage mergeTwoImageByHorizontal(BufferedImage one,BufferedImage two) {
int width = this.getWidth(one);
int height = this.getHeight(one);
int[] oneRPG = this.readImageRPG(one);
int[] twoRPG = this.readImageRPG(two);
BufferedImage result = new BufferedImage(width * 2,width);
result.setRGB(width,width);
return result;
}
private int[] readImageRPG(BufferedImage image) {
int width = this.getWidth(image);
int height = this.getHeight(image);
int[] imageRPG = new int[width * height];// 从图片中读取RGB
imageRPG = image.getRGB(0,imageRPG,width);
return imageRPG;
}
private int getWidth(BufferedImage image) {
if (image == null) {
return 0;
}
return image.getWidth();
}
private int getHeight(BufferedImage image) {
if (image == null) {
return 0;
}
return image.getHeight();
}
private BufferedImage readImage(String path) {
try {
File file = new File(path);
return ImageIO.read(file);
} catch (IOException ex) {
ex.printStackTrace();
}
return null;
}
}
来自:http://my.oschina.net/u/2370543/blog/487821 以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
