私は 'GetImage'クラスで複数の画像を取得しようとしていて、それらをメインクラスに表示しています。画像を保存して別のクラスに表示する
誰でも私に例を示すことができますか?私は他のサンプルをたくさん試しましたが、2つのクラスがあるので動作しませんでした。
これは私が試したものです。
メインCLSS:
import java.awt.*;
import hsa.*;
public class Test
{
static Console c;
public void Display()
{
GetImage c = new GetImage();
c.paint(g);
}
public Test()
{
c = new Console();
}
public static void main (String[] args) throws Exception
{
Test = new Test();
a.Display();
}
}
別々のクラス:
import java.awt.*;
import hsa.Console;
import java.awt.event.*;
public class GetImage extends Frame
{
Image image;
String imageName = "ImageFileName.jpg";
public void paint (Graphics g)
{
Toolkit tool = Toolkit.getDefaultToolkit();
image = tool.getImage (imageName);
g.drawImage (image, 30, 30, this); // location of the image
g.drawString (imageName, 100, 50); // location of the name
}
}