如何在Java中将TIFF转换为JPEG / PNG
最近,当我尝试显示图像文件时遇到问题。不幸的是,图像格式是TIFF格式,主要的网络浏览器不支持该格式(因为我知道Safari仅支持该格式)。由于某些限制,我必须将此格式转换为主流浏览器支持的其他格式。但是,当我尝试转换格式时,这给我带来了很多问题。
我已经在网上搜索过,尽管在此链接中发布了类似的问题,但我如何在Java中将TIF转换为PNG?“但是我无法获得建议的结果。
因此,我再次提出这个问题,希望大家能有更好的解释和指导。
在提出建议的解决方案期间,我几乎没有遇到任何问题:
1)根据 提出的答案,需要安装JAI和JAI /
ImageIO。但是,安装完这两个文件后,我仍然无法在Netbean 7.2中导入文件。NetBean 7.2仍然建议导入默认的imageIO库。
2)当我使用默认的ImageIO库Read方法时,它将返回NULL值,并且我无法继续进行。
3)我还尝试了其他方法,例如使用BufferedOutputStream方法将TIFF文件转换为BIN文件,但结果文件大于11
MB,该文件太大而无法加载,最终加载失败。
if (this.selectedDO != null) { String tempDO = this.selectedDO.DONo;
String inPath = "J:\\" + tempDO + ".TIF";
String otPath = "J:\\" + tempDO + ".bin";
File opFile = new File(otPath);
File inFile = new File(inPath);
BufferedInputStream input = null;
BufferedOutputStream output = null;
try {
input = new BufferedInputStream(new FileInputStream(inPath), DEFAULT_BUFFER_SIZE);
output = new BufferedOutputStream(new FileOutputStream(otPath), DEFAULT_BUFFER_SIZE);
byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
int length;
while ((length = input.read(buffer)) > 0) {
output.write(buffer, 0, length);
}
} finally {
try {
output.flush();
output.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
因此,希望能得到大家的帮助和建议,以便我可以将TIFF格式转换为其他格式,例如JPEG / PNG。
回答:
经过一些研究和测试,找到了一种将TIFF转换为JPEG的方法,对不起,这么久才上传了这个答案。
SeekableStream s = new FileSeekableStream(inFile);TIFFDecodeParam param = null;
ImageDecoder dec = ImageCodec.createImageDecoder("tiff", s, param);
RenderedImage op = dec.decodeAsRenderedImage(0);
FileOutputStream fos = new FileOutputStream(otPath);
JPEGEncodeParam jpgparam = new JPEGEncodeParam();
jpgparam.setQuality(67);
ImageEncoder en = ImageCodec.createImageEncoder("jpeg", fos, jpgparam);
en.encode(op);
fos.flush();
fos.close();
otPath
是您要存储JPEG图像的路径。例如:“ C:/image/abc.JPG”;
inFile
是输入文件,即TIFF文件
至少这种方法对我可行。如果还有其他更好的方法,请与我们分享。
以上是 如何在Java中将TIFF转换为JPEG / PNG 的全部内容, 来源链接: utcz.com/qa/425507.html