J2ME中利用缓存将屏幕内容存储为Image
副标题#e#
本文先容如何将手机屏幕的内容存储为Image工具,这里认为手机屏幕上显示的是一个Canvas。完成这一个成果的思想就是利用缓冲机制。我们不能直接得到Canvas上的像素,因此不能直接从Canvas上的内容得到Image工具。转换一下思路,假如把要绘制的Canvas上的内容首先绘制到一个Image上,而这个Image并不显示到屏幕上,只是在绘画完成后一次性的显示到屏幕上。有履历的伴侣必然遐想到了双缓冲机制,不外这里并不是要利用双缓冲办理闪屏的问题,而是要获得当前Canvas的内容。
下面我们编写一个简朴的Canvas类来测试一下这个想法,SimpleCanvas是Canvas的子类,为了生存Canvas的内容,我们建设一个Image,巨细与Canvas的尺寸相当。
class SimpleCanvas extends Canvas{
int w;
int h;
private Image offImage = null;
private boolean buffered = true;
public SimpleCanvas(boolean _buffered){
buffered = _buffered;
w = getWidth();
h = getHeight();
if(buffered)
offImage = Image.createImage(w,h);
}
protected void paint(Graphics g) {
int color = g.getColor();
g.setColor(0xFFFFFF);
g.fillRect(0,0,w,h);
g.setColor(color);
Graphics save = g;
if(offImage != null)
g = offImage.getGraphics();
//draw the offimage
g.setColor(128,128,0);
g.fillRoundRect((w-100)/2,(h-60)/2,100,60,5,3);
//draw the offimage to the canvas
save.drawImage(offImage,0,0,Graphics.TOP|Graphics.LEFT);
}
public Image printMe(){
return offImage;
}
#p#副标题#e#
可以看到paint()要领,并不是直接对Canvas操纵,而是先把要画的内容绘制到一个Image上,然后再绘制到Canvas上。这样到你想抓取屏幕内容的时候就可以挪用printMe()要领了,返回offImage。编写一个MIDlet测试一下这个结果。
package com.J2MEdev;
import Javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
* @author mingjava
* @version
*/
public class PrintScreen extends MIDlet implements CommandListener{
private Display display = null;
private SimpleCanvas canvas = new SimpleCanvas(true);
private Command printCommand = new Command("Print",Command.OK,1);
public void startApp() {
if(display == null)
display = Display.getDisplay(this);
canvas.addCommand(printCommand);
canvas.setCommandListener(this);
display.setCurrent(canvas);
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command command, Displayable displayable) {
if(command == printCommand){
Form form = new Form("screen");
form.append(canvas.printMe());
display.setCurrent(form);
}
}
}
运行PrintScreen,选择Print,即可把当前的屏幕显示到一个Form中。如下图所示: