用Java调整图像大小。如何调整大小

时间:2010-02-23 23:06:48

标签: java user-interface swing awt image-scaling

我正在尝试在Frame上显示图像,但图像并不完全适合框架。如何调整图像大小?我无法调整框架的大小。我需要它始终保持相同的大小。

  // Override paint():
  public void paint (Graphics g)
  {
      Dimension dimension = this.getSize();
      Insets I = this.getInsets();

      Toolkit tk = Toolkit.getDefaultToolkit();
      try{
          URL u = new URL ("http://www.gstatic.com/hostedimg/c195c33263b5205c_large");
          Image img = tk.getImage(u);
          g.drawImage(img, 0+I.left, 0+I.top, this);
      }
      catch(MalformedURLException e){
          System.out.println(e);
      }
  }

1 个答案:

答案 0 :(得分:4)

使用drawImage方法之一,您可以在其中提供绘图区域所需的宽度和高度。 E.g:

g.drawImage(img, 0+I.left, 0+I.top, myWidth, myHeight, this);