I have a problem where I have a program that takes an image file as input on a Java desktop program, processes it and now I need to send this image from the Java application to an Android handset.
In Java I have it stored as either a ImageIcon or BufferedImage and I need to turn it into an Android Drawable, preferably without sending the file back to disk.
I am using the latest in Java and Android 1.6
Currently using a RESTful webserver sitting between the Java Desktop application and the Android handset to assist communications.