Kxgx.com - 移动开发网

本站快讯:
搜索: 您的位置主页>参考源码>软件源码>>阅读源码:在Canvas上绘制可修改的图片

在Canvas上绘制可修改的图片

2006-02-16   来源:   作者:john   【 】 评论:0条
在Image的静态方法中,只有Image.createImage(width,height)方法创建的图片是可以修改的。本列介绍了如何在Canvas上绘制可修改的Image。


/*--------------------------------------------------
* MutableImage.java
*
* Draw mutable image on a canvas
*
* Example from the book:     Core J2ME Technology
* Copyright John W. Muchow   http://www.CoreJ2ME.com
* You may use/modify for any non-commercial purpose
*-------------------------------------------------*/  
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

public class MutableImageWithCanvas extends MIDlet
{
  private Display  display;     // The display
  private ImageCanvas canvas;   // Canvas 


  public MutableImageWithCanvas()
  {
    display = Display.getDisplay(this);
    canvas  = new ImageCanvas(this);
  }
  protected void startApp()
  {
    display.setCurrentcanvas );
  }
  protected void pauseApp()
  { }

  protected void destroyAppboolean unconditional )
  { }

  public void exitMIDlet()
  {
    destroyApp(true);
    notifyDestroyed();
  }
}

/*--------------------------------------------------
* Class ImageCanvas
*
* Draw mutable image
*-------------------------------------------------*/
class ImageCanvas extends Canvas implements CommandListener
{
  private Command cmExit;  // Exit midlet
  private MutableImage midlet;
  private Image im = null;
  private String message = "Core J2ME";

  public ImageCanvas(MutableImage midlet)
  {
    this.midlet = midlet;
    // Create exit command & listen for events
    cmExit = new Command("Exit", Command.EXIT, 1);
    addCommand(cmExit);
    setCommandListener(this);

    try
    {
      // Create mutable image
      im = Image.createImage(8020);

      // Get graphics object to draw onto the image        

      Graphics graphics = im.getGraphics();

      // Specify a font face, style and size
      Font font = Font.getFont(Font.FACE_SYSTEM, Font.STYLE_PLAIN, Font.SIZE_MEDIUM);
      graphics.setFont(font);

      // Draw a filled (black) rectangle
      graphics.setColor(000);
      graphics.fillRoundRect(0,0, im.getWidth()-1, im.getHeight()-12020)
      // Center text horizontally in the image. Draw text in white

      graphics.setColor(255255255);           
      graphics.drawString(message,
        (im.getWidth() 2(font.stringWidth(message2)0


         Graphics.TOP | Graphics.LEFT);
    }
    catch (Exception e)
    {
      System.err.println("Error during image creation");
    }    
  

  /*--------------------------------------------------
  * Draw mutable image 
  *-------------------------------------------------*/
  protected void paint(Graphics g)
  {
    // Center the image on the display
    if (im != null)g.drawImage(im, getWidth() 2, getHeight() 2, Graphics.VCENTER

 | Graphics.HCENTER);
  }

  public void commandAction(Command c, Displayable d)
  {
    if (c == cmExit)
      midlet.exitMIDlet();
  }


}

Tags:  
责任编辑:
  • 请文明参与讨论,禁止漫骂攻击。 用户名:新注册)密码:匿名:
    评论总数:0 [ 查看全部 ] 网友评论
    关于我们 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 帮助