我正在servlet中读取两个图像,需要同时显示这两个图像。 目前,仅显示一个图像(首先写入一个图像)。无法写另一张图片。 我没有收到任何错误。
我的servlet代码如下:
BufferedImage buffImageA = ImageIO.read(getServletContext().getResourceAsStream("/images/3520276097315A.jpg"));
BufferedImage buffImageB = ImageIO.read(getServletContext().getResourceAsStream("/images/3520276097315B.jpg"));
logger.logDebug("Images has been read");
watermark(buffImageA,ApplicationConfig.WATERMARK_TEXT);
watermark(buffImageB,ApplicationConfig.WATERMARK_TEXT);
byte[] resultDataA = encodeJPEG(buffImageA, 100);
byte[] resultDataB = encodeJPEG(buffImageB, 100);
byte[] combinedImage = new byte[resultDataA.length+resultDataB.length];
for(int i=0; i<resultDataA.length ;i++){
combinedImage[i] = resultDataA[i];
}
for(int i=resultDataA.length; i<resultDataB.length ;i++){
combinedImage[i] = resultDataB[i];
}
response.setContentType("image/jpeg");
response.setContentLength(resultDataA.length + resultDataB.length);
OutputStream os = response.getOutputStream();
os.write(combinedImage);
os.close();
//水印过程就在这里
private void watermark(BufferedImage original, String watermarkText) {
}
private byte[] encodeJPEG(BufferedImage image, int quality) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream((int) ((float) image.getWidth() * image.getHeight() / 4));
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(baos);
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(image);
quality = Math.max(0, Math.min(quality, 100));
param.setQuality((float) quality / 100.0f, false);
encoder.setJPEGEncodeParam(param);
encoder.encode(image);
byte[] result = baos.toByteArray();
baos.close();
return result;
}
我已尝试使用ImageIO.write来编写图像,但未能得到所需的内容。
答案 0 :(得分:3)
你的第二个for
循环必须是这样的:
for(int i=resultDataA.length; i<resultDataB.length+resultDataA.length ;i++){
combinedImage[i] = resultDataB[i-resultDataA.length];
}
编辑:
这是一个可编辑的,可运行的例子,接近你所期望的:
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import javax.imageio.ImageIO;
import java.awt.Graphics;
public class Essai2 {
public static void main(String[] args) {
try {
byte[] imageInByte;
BufferedImage originalImage1 = ImageIO.read(new File("essai1.jpg"));
BufferedImage originalImage2 = ImageIO.read(new File("essai2.jpg"));
// convert BufferedImage to byte array
ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
ImageIO.write(originalImage1, "jpg", baos1);
ImageIO.write(originalImage2, "jpg", baos2);
baos1.flush();
baos2.flush();
byte[] ba1 = baos1.toByteArray();
byte[] ba2 = baos2.toByteArray();
imageInByte = new byte[ba1.length + ba2.length];
//System.out.println(new String(imageInByte));
System.arraycopy(ba1, 0, imageInByte, 0, ba1.length);
//System.out.println(new String(imageInByte));
System.arraycopy(ba2, 0, imageInByte, ba1.length, ba2.length);
//System.out.println(new String(imageInByte));
baos1.close();
baos2.close();
// convert byte array back to BufferedImage
InputStream in = new ByteArrayInputStream(imageInByte);
int w = Math.max(originalImage1.getWidth(), originalImage2.getWidth());
//int h = Math.max(originalImage1.getHeight(), originalImage2.getHeight());
int h = originalImage1.getHeight() + originalImage2.getHeight();
BufferedImage bImageFromConvert = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
//BufferedImage bImageFromConvert = new BufferedImage(w, h, BufferedImage.TYPE_4BYTE_ABGR );
//BufferedImage bImageFromConvert = ImageIO.read(in);
Graphics g = bImageFromConvert.getGraphics();
g.drawImage(originalImage1, 0, 0, null);
g.drawImage(originalImage2, 0, originalImage1.getHeight(), null);
ImageIO.write(bImageFromConvert, "jpg", new File("result.jpg"));
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
}
essai1.jpg:
essai2.jpg:
result.jpg:
我暂时没有找到为什么在result.jpg中添加了第三种颜色。但我认为这个例子可以帮助你,我会尽快修复我的代码。
EDIT2:
更改:
BufferedImage bImageFromConvert = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
致:
BufferedImage bImageFromConvert = new BufferedImage(w, h, originalImage1.getType());
它会正常工作。
result.jpg: