previous = new Button("上一");
next = new Button("下一");
select.addActionListener(this);
previous.addActionListener(this);
3.2.图像加载:
Applet 常用来显示储存在文件中的图像,多数 Applet 使用的是 GIF 或 JPEG
格式的图像文件。需 Applet 加载图像只需首先定义 Image 对象,然后使用
getImage()方法把图像和文件结合起来即可。
image_width = bi.getWidth(this);
image_height = bi.getHeight(this);
double image_proportion = 1.0 * image_height / image_width;
System.out.println("image: w "+image_width+" ,h "+image_height+" ,p1
"+image_proportion);
if(image_proportion > screen_proportion){
image_height = screen_height;
image_width = (int)(image_height / image_proportion);
System.out.println(" p1>p0 w= "+image_width);
}else{
image_width = screen_width;
image_height = (int)(image_width * image_proportion);
评论0
最新资源