import java.awt.*;
import java.applet.*;
//Download by http://www.codesc.net
public class useTrackedImage extends Applet implements Runnable
{
private Image picture;
private MediaTracker tracker;
//初始化
public void init()
{
this.picture = this.getImage(this.getCodeBase(),
//获取图片信息
this.getParameter("imagefile"));
this.tracker = new MediaTracker(this);
//加载图片
this.tracker.addImage(this.picture, 1);
Thread play = new Thread(this);
//启动线程
play.start();
}
//执行线程
public void run()
{
try
{
this.tracker.waitForID(1);
//刷新界面
this.repaint();
}
catch (InterruptedException ie)
{ }
}
//绘制图片
public void paint(Graphics g)
{
if (this.tracker.checkID(1, true))
{
g.drawImage(this.picture, 0, 0, this);
}
else
{
g.drawString("Loading Picture. Please hang on", 25, 50);
}
}
}
weixin_39841856
- 粉丝: 491
- 资源: 1万+
最新资源
- (175601006)51单片机交通信号灯系统设计
- Starter SINAMICS S120驱动第三方直线永磁同步电机系列视频-调试演示.mp4
- (174755032)抽烟、烟雾检测voc数据集
- 基于滑膜控制的差动制动防侧翻稳定性控制,上层通过滑膜控制产生期望的横摆力矩,下层根据对应的paper实现对应的制动力矩分配,实现车辆的防侧翻稳定性控制,通过通过carsim和simulink联合仿真
- 伺服系统基于陷波滤波器双惯量伺服系统机械谐振抑制matlab Simulink仿真 1.模型简介 模型为基于陷波滤波器的双惯量伺服系统机械谐振抑制仿真,采用Matlab R2018a Simul
- (175989002)DDR4 JESD79-4C.pdf
- lanchaoHunanHoutaiQiantai
- (177377030)Python 爬虫.zip
- (177537818)python爬虫基础知识及爬虫实例.zip
- 自动驾驶横纵向耦合控制-复现Apollo横纵向控制 基于动力学误差模型,使用mpc算法,一个控制器同时控制横向和纵向,实现横纵向耦合控制 matlab与simulink联合仿真,纵向控制已经做好油门刹
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈