0

我有 jai-imageio jar 并将其添加到我的类路径中。我只是不知道将 .tif 图像写入响应的输出流。有人能帮我吗?

这是我的代码:

RenderedOp image = JAI.create("fileload", filepath);
ImageIO.write(image.getAsBufferdImage(), "tif", response.getOutputStream());

我知道 javax.imageio.ImageIO 不支持 tif 图像,那么我该如何使用 jai-imageio 来使其工作?我迷路了。

注意:上面的代码适用于其他图像类型,如 jpeg 和 png。

4

1 回答 1

2

看起来您在存储和提供上传的图像方面走错了方向。您根本不需要整个 Java 2D API。

当您检索上传的图像时,只需执行

InputStream input = uploadedFile.getInputStream();
OutputStream output = new FileOutputStream(uniqueImagePath);
// Now write input to output in a loop the usual way.

当您提供上传的图片时,只需执行

InputStream input = new FileInputStream(uniqueImagePath);
OutputStream output = response.getOutputStream();
// Now write input to output in a loop the usual way.

您根本不需要按摩/操作字节。只需未经修改即可流式传输它们。

于 2012-10-08T20:11:45.880 回答