Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1471610
  • 博文数量: 254
  • 博客积分: 8696
  • 博客等级: 中将
  • 技术积分: 2961
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-03 16:46
文章分类

全部博文(254)

文章存档

2015年(4)

2014年(18)

2013年(16)

2012年(8)

2011年(25)

2010年(2)

2009年(74)

2008年(107)

分类: Java

2009-08-27 20:12:04

方法一:
// Define the source and destination file names.
String inputFile = /images/Rose.tif
String outputFile = /images/Rose.jpg

// Load the input image.
RenderedOp src = JAI.create("fileload", inputFile);

// Encode the file as a JPEG image.
FileOutputStream stream =
new FileOutputStream(outputFile);
JAI.create("encode", src, stream, JPEG, null);

// Store the image in the BMP format.
JAI.create("filestore", src, outputFile, JPEG, null);
(请阅读:)
阅读(4227) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~