Java生成jpg格式图片:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
package other.pic;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.RandomAccessFile;
import java.awt.image.BufferedImage;
import java.awt.*;
import java.util.Random;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2005-6-10
* Time: 11:19:49
* This class can create jpg picture.
* To change this template use File | Settings | File Templates.
*/
public class ChartGraphics {
BufferedImage image;
void createImage(String fileLocation) {
try {
FileOutputStream fos = new FileOutputStream(fileLocation);
BufferedOutputStream bos = new BufferedOutputStream(fos);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(bos);
encoder.encode(image);
bos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
public void graphicsGeneration( int h1, int h2, int h3, int h4, int h5) {
final int X = 10 ;
int imageWidth = 300 ; //图片的宽度
int imageHeight = 300 ; //图片的高度
int columnWidth = 30 ; //柱的宽度
int columnHeight = 200 ; //柱的最大高度
// ChartGraphics chartGraphics = new ChartGraphics();
image = new BufferedImage(imageWidth, imageHeight, BufferedImage.TYPE_INT_RGB);
Graphics graphics = image.getGraphics();
graphics.setColor(Color.white);
graphics.fillRect( 0 , 0 , imageWidth, imageHeight);
graphics.setColor(Color.red);
graphics.drawRect(X + 1 * columnWidth, columnHeight - h1, columnWidth, h1);
graphics.drawRect(X + 2 * columnWidth, columnHeight - h2, columnWidth, h2);
graphics.drawRect(X + 3 * columnWidth, columnHeight - h3, columnWidth, h3);
graphics.drawRect(X + 4 * columnWidth, columnHeight - h4, columnWidth, h4);
graphics.drawRect(X + 5 * columnWidth, columnHeight - h5, columnWidth, h5);
createImage( "D://Temp//chart.jpg" );
}
public static void main(String[] args) {
int [] height = { 40 , 50 , 16 , 22 , 85 };
ChartGraphics cg= new ChartGraphics();
try {
for ( int i = 0 ; i < 5 ; i++) {
cg.graphicsGeneration(height[ 0 ],height[ 1 ],height[ 2 ],height[ 3 ],height[ 4 ]);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
|
以下是生成的图片
Java压缩图片为jpg缩略图
我们在网站上想上传资料与大家分享时,都会碰到一个这样的问题,随着高分辨率DC的普及,上传的图片容量会很大,比如300万象素DC出来的文件基本不下600K.为了管理方便,大家可能不愿意每次都用ACDsee修改它,而直接上传到服务器。但是这种做法在客户端看来就没有那么轻松了,对于拨号上网的用户简直是一场恶梦,虽然你可以在图片区域设置wide和high!问题的解决之道来了!我们可以在类中处理一张大图,并缩小它。前提是需要JDK1.4,这样才能进行处理。按以下方法做:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import java.io.File;
import java.io.FileOutputStream;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
public class JpgTest {
public void JpgTset() throws Exception{
File _file = new File( "/Order005-0001.jpg" ); //读入文件
Image src = javax.imageio.ImageIO.read(_file); //构造Image对象
int wideth=src.getWidth( null ); //得到源图宽
int height=src.getHeight( null ); //得到源图长
BufferedImage tag = new BufferedImage(wideth/ 2 ,height/ 2 ,BufferedImage.TYPE_INT_RGB);
tag.getGraphics()。drawImage(src, 0 , 0 ,wideth/ 2 ,height/ 2 , null ); //绘制缩小后的图
FileOutputStream out= new FileOutputStream( "newfile.jpg" ); //输出到文件流
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(tag); //近JPEG编码
System.out.print(width+ "*" +height);
out.close();
}
}
|
过程很简单,从本地磁盘读取文件Order005-0001.jpg(2032*1524),变成Image对象src,接着构造目标文件tag,设置tag的长宽为源图的一半,对tag进行编码,输出到文件流out,最后关闭文件流。
还有一些问题需要说明:第一,目前只能支持JPG(JPEG)、GIF、PNG三种格式。第二,对于源图的容量有限制,最好不要超过1M,否则会抛内存不足的错误,不过我试验过1.8M的源图,可以成功,但是也很容易抛内存不足。引用一位前辈的话:图象运算本身是密集型运算,需要大量的内存存放象素值。我用VC试了一下,4M的图象也有问题,而且越是压缩比大的图片在内存中还原成BITMAP时需要的内存越大。解决的方法,可以重写编码类,先开一定的内存,然后一段一段编码写到临时文件中,输出的时候再一段一段读出来。或利用nio的内存映象来操作。JavaMail由于采用了Builder模式,先生成一个邮件的每一个部分,然后合并成一个完整的邮件对象,这样每个构件都要先生成到内存中,你如果发送一个上百兆的附件,那么在构造Part时肯定内存溢出,所以我就改写了BodyPart的构造,让他和一个临时文件关联,然后用临时文件保存Part而不是构造在内存中,这样任义大小的附件(硬盘能放得下为限)都可以发送了。
最后,如果大家对图像处理有更高的要求,不妨关注一下开源项目。比如JMagick,可以使用JMagick来实现图片的复制、信息获取、斜角、特效、组合、改变大小、加边框、旋转、切片、改变格式、去色等等功能。
PS:一些老的Java代码在JDK下编译会报错,比如这个:程序包com.sun.image.codec.jpeg不存在。
1
|
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
|
JPEGImageEncoder类是SUN公司私有类
一般出现在这样的代码段中:
1
2
3
|
FileOutputStream out = new FileOutputStream(dstName);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(dstImage);
|
改写成:
1
2
3
4
5
|
String formatName = dstName.substring(dstName.lastIndexOf( "." ) + 1 );
//FileOutputStream out = new FileOutputStream(dstName);
//JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
//encoder.encode(dstImage);
ImageIO.write(dstImage, /*"GIF"*/ formatName /* format desired */ , new File(dstName) /* target */ );
|
都使用统一的ImageIO进行图像格式文件的读写,没有必要使用过时的实现类JPEGImageEncoder类。