J2ME – How to write – read image in – from RMS
The example below saves image file into RMS and shows it on mobile.
Data like image, image name, width, height can be stored in RMS.
The size of the image file do matters if phone capacity is small.
Sample.java
package freesrc.com;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Image;
import javax.microedition.midlet.*;
/**
* @author freesrc.com
*/
public class Sample extends MIDlet {
private Display [...]
RSS