当前位置: 代码迷 >> J2SE >> getHeight()返回-1?解决方法
  详细解决方案

getHeight()返回-1?解决方法

热度:477   发布时间:2016-04-24 01:24:22.0
getHeight()返回-1?
Java code
import java.awt.*;import java.applet.*;import java.awt.geom.*;import java.awt.font.*;import java.awt.font.*;import java.awt.image.*;import java.net.*;import java.net.URL;public class GUIImage extends Applet{    public void paint(Graphics oldg)    {        Graphics2D g=(Graphics2D)oldg;        try        {            URL imgURL=new URL(getDocumentBase(),"Test.gif");            Image img=getImage(imgURL);                      int h=img.getHeight(this);            int w=img.getWidth(this);                        BufferedImage buf=new BufferedImage(w,h,BufferedImage.TYPE_INT_ARGB);            Graphics tmpG=buf.createGraphics();            tmpG.drawImage(img,10,10,this);            g.drawImage(buf,10,20,this);        }        catch(Exception e)        {            System.out.println("Error:"+e.getMessage());        }    }}

调试到int h=img.getHeight(this)时发现h=-1,而w正常。
这是为什么呢?

------解决方案--------------------
int h=img.getHeight(this)时发现h=-1
说明 从this观察 这个图片的高度,发现比自己高,高度未知则返回 -1。
  相关解决方案