在Applet中显示一幅图像,首先要把它调入内存,保存在一个Image对象中,然后调用drawImage()方法画出这个图像。() 此题为判断题(对,错)。
在Applet中显示一幅图像,首先要把它调入内存,保存在一个Image对象中,然后调用drawImage()方法画出这个图像。()
此题为判断题(对,错)。
相关考题:
对于drawImage(image,x,y,width,height,this)方法解释正确的是()。 A.image是要绘制的图像B.x,y是表示图像的中心的位置C.width是源图像的宽度D.this是容器
下列Applet在坐标 ( 20,20) 处显示一幅GIF图像,在横线处填入正确的语句。import java. net.*;import java. awt.*;import java. applet.*;public class Test extends Applet {Image IMG;public void init() {URL url = getDocumentBase ();String name="IMG.gif";【 】}public void paint(Graphics g) {g. drawImage ( IMG,20,20,this);}}
下列关于Applet中加载图像的说法,错误的是A.可以使用Applet类的getImage()方法获得图像对象B.程序员必须自行定义获得图像及显示图像的类和方法C.图像由一个java. Image类的对象来表示D.可以使用Graphics类的drawImage()方法显示图像
对于drawImage(image,x,y,width,height,this)方法解释正确的是()。 A、image是要绘制的图像B、x,y是表示图像的中心的位置C、width是源图像的宽度D、this是容器
JAVA中,对于drawImage(image,x,y,width,height,this)方法解释正确的是()。A、image是要绘制的图像B、x,y是表示图像的中心的位置C、width是源图像的宽度D、this是容器
多选题JAVA中,对于drawImage(image,x,y,width,height,this)方法解释正确的是()。Aimage是要绘制的图像Bx,y是表示图像的中心的位置Cwidth是源图像的宽度Dthis是容器