Draw mutable image on a canvas : Image « J2ME « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » J2ME » ImageScreenshots 
Draw mutable image on a canvas

/*--------------------------------------------------
* 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();
  }
}


           
       
Related examples in the same category
1. Image Loader
2. Immutable Image Example
3. Image MIDletImage MIDlet
4. Mutable Image ExampleMutable Image Example
5. Immutable Image 1Immutable Image 1
6. Download and view a png fileDownload and view a png file
7. View Png 2View Png 2
8. View Png ThreadView Png Thread
9. Draw immutable image on a canvasDraw immutable image on a canvas
10. MutableImageMutableImage
11. Immutable Image From Byte ArrayImmutable Image From Byte Array
12. ImmutableImage From FileImmutableImage From File
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.