This implementation of <code>javaToNative</code> converts an ImageData object represented by java <code>ImageData</code> to a platform specific representation.
This implementation of <code>nativeToJava</code> converts a platform specific representation of an image to java <code>ImageData</code>.
Returns the singleton instance of the ImageTransfer class.
This implementation of <code>javaToNative</code> converts a java <code>byte[]</code> to a platform specific representation.
This implementation of <code>nativeToJava</code> converts a platform specific representation of a byte array to a java <code>byte[]</code>.
The class <code>ImageTransfer</code> provides a platform specific mechanism for converting an Image represented as a java <code>ImageData</code> to a platform specific representation of the data and vice versa.
<p>An example of a java <code>ImageData</code> is shown below:</p>
<code><pre> Image image = new Image(display, "C:\temp\img1.gif"); ImageData imgData = image.getImageData(); </code></pre>
@see Transfer
@since 3.4