Java图像缩放提高了质量?

时间:2013-04-12 15:44:32

标签: java image scaling

我目前正在使用以下代码缩放图像。

Image scaledImage = img.getScaledInstance( width, int height, Image.SCALE_SMOOTH);
BufferedImage imageBuff = new BufferedImage(width, scaledImage.getHeight(null), BufferedImage.TYPE_INT_RGB);
Graphics g = imageBuff.createGraphics();
g.drawImage(scaledImage, 0, 0, new Color(0, 0, 0), null);
g.dispose();
ImageIO.write(imageBuff, "jpg", newFile);

任何人都知道如何更好地扩展图像并获得更好的质量结果,甚至可以帮助改进我当前的代码以获得更高质量的输出。

3 个答案:

答案 0 :(得分:3)

您可以使用Affine Transorm

public static BufferedImage getScaledImage(BufferedImage image, int width, int height) throws IOException {
    int imageWidth  = image.getWidth();
    int imageHeight = image.getHeight();

    double scaleX = (double)width/imageWidth;
    double scaleY = (double)height/imageHeight;
    AffineTransform scaleTransform = AffineTransform.getScaleInstance(scaleX, scaleY);
    AffineTransformOp bilinearScaleOp = new AffineTransformOp(scaleTransform, AffineTransformOp.TYPE_BILINEAR);

    return bilinearScaleOp.filter(
        image,
        new BufferedImage(width, height, image.getType()));
}

另请尝试Example

另请尝试java-image-scaling

答案 1 :(得分:2)

您可能希望查看此image scaling library。它有像bicubic和Lanczos这样的算法,还有一个非锐化滤波器。

答案 2 :(得分:1)