Image.getScaledInstance

public image getscaledinstance(int width,
                               int height,
                               int hints)

创建此图像的缩放版本。返回一个新的 image 对象,默认情况下,该对象按指定的 width 和 height 呈现图像。即使已经完全加载了初始源图像,新的 image 对象也可以被异步加载。

如果 width 或 height 为负数,则替换该值以维持初始图像尺寸的高宽比。如果 width 和 height 都为负,则使用初始图像尺寸。

 

参数:

width - 将图像缩放到的宽度。

height - 将图像缩放到的高度。

hints - 指示用于图像重新取样的算法类型的标志。

返回:

图像的缩放版本。

抛出:

illegalargumentexception - 如果 width 或 height 为零。

你可能感兴趣的:(java)