java:建了一个frame,添加了一个panel,如何在panel根据打开文件得到的image对象打开图片
如题,例题上是直接在frame重写paint,但是我继承的是frame,不会重写panel的paint了,用的是就的awt,没有用到swing一楼,用了你的代码,不会报错...
如题,例题上是直接在frame重写paint,但是我继承的是frame,不会重写panel的paint了,用的是就的awt,没有用到swing
一楼,用了你的代码,不会报错,但是图片只会闪一下就没了
这是实现打开文件响应的代码
class Mopen implements ActionListener{
public void actionPerformed(ActionEvent e){
FileDialog fd=new FileDialog(getMenuFrameIns(),"open",FileDialog.LOAD);
fd.setVisible(true);
m.setText(fd.getFile());
String fname = fd.getDirectory() + fd.getFile();
ig=p.getToolkit().getImage(fname);
Graphics s=p.getGraphics();
s.drawImage(ig, 0, 0, Color.white, p);
}
} 展开
一楼,用了你的代码,不会报错,但是图片只会闪一下就没了
这是实现打开文件响应的代码
class Mopen implements ActionListener{
public void actionPerformed(ActionEvent e){
FileDialog fd=new FileDialog(getMenuFrameIns(),"open",FileDialog.LOAD);
fd.setVisible(true);
m.setText(fd.getFile());
String fname = fd.getDirectory() + fd.getFile();
ig=p.getToolkit().getImage(fname);
Graphics s=p.getGraphics();
s.drawImage(ig, 0, 0, Color.white, p);
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询