算出图片的大小,设置Jlable的大小!

解决方案 »

  1.   

    我的意思是jlalle的大小是不变的。
    另:图片的大小怎么算:)
      

  2.   

    Try using something like this -:Image scaledImage = mIcon.getImage().getScaledInstance(reqWidth, reqHeight, Image.SCALE_DEFAULT);
    ImageIcon scaledIcon = new ImageIcon(scaledImage);
    where getScaledInstance() is available with java.awt.Image class.