如何在j2me应用程序中创建和显示图像?
我可以在哪个文件夹中将该图像放入我的应用程序中?
答案 0 :(得分:5)
This link正是您正在寻找的开始。
基本上,要创建图像,请调用Image.createImage();
Image img = Image.createImage("/imageName.png");
如果它位于Jar中的子文件夹中:
Image img = Image.createImage("/subDir/imageName.png");
要显示图像,您需要通过与Canvas相关联的Graphics实例将其绘制到Canvas(在上面的链接中更好地显示)。
public void paint(Graphics g) {
...
g.drawImage(img, 0, 0, Graphics.TOP | Graphics.LEFT);
....
}
你也可以使用Graphics.drawRegion函数,但是here is a link到JavaDocs for J2ME,你可以查看什么最适合你的需要。
答案 1 :(得分:1)
要在JavaME MIDlet上绘制图像,您需要使用Canvas将其绘制到。你可以这样做: 您必须将原始图像文件放在包中(通常在“res”或其子目录中)。 其次,您需要创建一个扩展Canvas的类并实现paint方法:
import java.io.IOException;
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;
public class MyCanvas extends Canvas {
private Image image;
public MyCanvas(){
try {
image = Image.createImage("picture.png");
} catch (IOException e) {
e.printStackTrace();
}
}
protected void paint(Graphics g) {
g.drawImage(image, 10, 10, Graphics.TOP | Graphics.LEFT);
}
}
现在您需要创建此类的实例并告诉MIDlet显示它,例如:
import javax.microedition.lcdui.Display;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
public class MyMIDlet extends MIDlet {
public MyMIDlet(){
}
protected void destroyApp(boolean unconditional)
throws MIDletStateChangeException {
}
protected void pauseApp() {
}
protected void startApp() throws MIDletStateChangeException {
Display.getDisplay(this).setCurrent(new MyCanvas());
}
}
请记住,这样Canvas只会被绘制一次,如果你改变某些东西,你需要调用repaint()方法。
答案 2 :(得分:0)
此源代码基于之前发布的评论:
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.io.file.FileConnection;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class ImageLoader extends MIDlet
implements CommandListener, Runnable {
private Display mDisplay;
private Form mForm;
public ImageLoader() {
mForm = new Form("Connecting...");
mForm.addCommand(new Command("Exit", Command.EXIT, 0));
mForm.setCommandListener(this);
}
public void startApp() {
if (mDisplay == null) mDisplay = Display.getDisplay(this);
mDisplay.setCurrent(mForm);
Thread t = new Thread(this);
t.start();
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command c, Displayable s) {
if (c.getCommandType() == Command.EXIT)
notifyDestroyed();
}
public void run() {
FileConnection fc = null;
DataInputStream in = null;
DataOutputStream out = null;
try {
fc = (FileConnection)Connector.open("file:///root1/i.PNG");
int length = (int)fc.fileSize();//possible loss of precision may throw error
byte[] data = null;
if (length != -1) {
data = new byte[length];
in = new DataInputStream(fc.openInputStream());
in.readFully(data);
}
else {
int chunkSize = 512;
int index = 0;
int readLength = 0;
in = new DataInputStream(fc.openInputStream());
data = new byte[chunkSize];
do {
if (data.length < index + chunkSize) {
byte[] newData = new byte[index + chunkSize];
System.arraycopy(data, 0, newData, 0, data.length);
data = newData;
}
readLength = in.read(data, index, chunkSize);
index += readLength;
} while (readLength == chunkSize);
length = index;
}
Image image = Image.createImage(data, 0, length);
ImageItem imageItem = new ImageItem(null, image, 0, null);
mForm.append(imageItem);
mForm.setTitle("Done.");
fc = (FileConnection)Connector.open("file:///root1/x.PNG");
if(!fc.exists()){
try{
fc.create();
}catch(Exception ce){System.out.print("Create Error: " + ce);}
}
out = new DataOutputStream(fc.openOutputStream());
out.write(data);
}
catch (IOException ioe) {
StringItem stringItem = new StringItem(null, ioe.toString());
mForm.append(stringItem);
mForm.setTitle("Done.");
}
finally {
try {
if (in != null) in.close();
if (fc != null) fc.close();
}
catch (IOException ioe) {}
}
}
}
代码是从Fostah提供的链接修改的。
它打开一个图像,显示它,然后使用FileConnection将其保存为x.PNG而不是i.PNG。要注意的棘手问题是文件的保存/加载位置。如果您使用带有Netbeans的J2meWTK,那么当您运行移动应用程序时,该文件夹将显示在输出窗口中。该文件夹将类似temp.DefaultColorPhone / filesystem / root1。这是你必须有一个图像的地方。我不确定如何在默认情况下使用图像创建临时环境。这意味着您必须在IDE中启动移动应用程序,检查temp root1 /所在的位置,然后将图像放入该文件夹,然后继续运行ImageLoader应用程序。我将尝试通过发布问题来了解如何自动执行此操作。此外,从小图像开始,50x50(较大的图像可能会导致问题)。