Hi everyone,
I'm trying to send an image stored in midlet to a servlet through http. However to do this, the midlet has this method that retrieves an Image type. I need to convert from Image to a byte array[] or something that can be sent through a DataOutputStream, any ideas?
Code:DataOutputStream dos = conn.openDataOutputStream();
Image ima = data.getImg();
dos.writeUTF(data.getName());
dos.writeUTF(data.getTel());
