我正在使用此功能调整图像大小:
static ImageIcon ChangeSize(String path, int width, int hight){
ImageIcon Icon = new ImageIcon(path);
Image image = Icon.getImage();
Image newimg = image.getScaledInstance(width, hight, java.awt.Image.SCALE_SMOOTH);
Icon = new ImageIcon(newimg);
return Icon;
}
有没有简单的方法以类似的方式调整gif的大小?