如何减少java中的图像缩略图大小

时间:2011-01-06 08:27:54

标签: java struts2

我有一张大小为4.7kb的图像a.jpg,当它上传到网络服务器时,它的大小变为15.5KB ......

我正在使用以下代码。

BufferedImage bi = ImageIO.read(business.getImage()); //business is sturts2 Form & image instance of File class
            int height = bi.getHeight();
            int width = bi.getWidth();

            if (height > Constants.BIZ_IMAGE_HEIGHT || width > Constants.BIZ_IMAGE_WIDTH) {
                height = Constants.BIZ_IMAGE_HEIGHT;
                width = Constants.BIZ_IMAGE_WIDTH;
            }

            InputStream is = UtilMethod.scaleImage(new FileInputStream(business.getImage()), width, height);
            File f = new File(businessImagesPath, business.getImageFileName());
            UtilMethod.saveImage(f, is);
            is.close();

UtilMethod.scaleImage(..)...如下:

public static InputStream scaleImage(InputStream p_image, int p_width, int p_height) throws Exception {

    InputStream imageStream = new BufferedInputStream(p_image);
    Image image = (Image) ImageIO.read(imageStream);

    int thumbWidth = p_width;
    int thumbHeight = p_height;

    // Make sure the aspect ratio is maintained, so the image is not skewed
    double thumbRatio = (double) thumbWidth / (double) thumbHeight;
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    double imageRatio = (double) imageWidth / (double) imageHeight;
    if (thumbRatio < imageRatio) {
        thumbHeight = (int) (thumbWidth / imageRatio);
    } else {
        thumbWidth = (int) (thumbHeight * imageRatio);
    }

    // Draw the scaled image
    BufferedImage thumbImage = new BufferedImage(thumbWidth,
            thumbHeight, BufferedImage.TYPE_INT_RGB);

    Graphics2D graphics2D = (Graphics2D) thumbImage.createGraphics();
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, Color.WHITE, null);


    // Write the scaled image to the outputstream
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);

    int quality = 85; // Use between 1 and 100, with 100 being highest quality
    quality = Math.max(0, Math.min(quality, 100));

    param.setQuality((float) quality / 100.0f, false);
    encoder.setJPEGEncodeParam(param);        
    encoder.encode(thumbImage);
    ImageIO.write(thumbImage, "png", out);

    ByteArrayInputStream bis = new ByteArrayInputStream(out.toByteArray());
    return bis;
}

使用java保存图像时的任何其他尺寸和质量优化想法。我正在使用struts2 MVC ...非常感谢你。

1 个答案:

答案 0 :(得分:2)

int quality = 85; // Use between 1 and 100, with 100 being highest quality

这似乎是JPEG缩略图的高品质。尝试大约60或50。

quality = Math.max(0, Math.min(quality, 100));

咦?

param.setQuality((float) quality / 100.0f, false);
encoder.setJPEGEncodeParam(param);        

行..

encoder.encode(thumbImage);
ImageIO.write(thumbImage, "png", out);
但是,不是吗?为什么设置JPEGEncodeParam并存储为PNG?这甚至有什么影响吗?尝试..

ImageIO.write(thumbImage, "jpg", out);