Processing image data in java me
- by Trimack
Hi, I want to process raw data from a picture taken in java me with
byte[] snap = videoControl.getSnapshot(encoding);
My question is, whether I should try working already with snap or should I first create the image from this array
Image im = Image.createImage(snap, 0, snap.length);
and then work with that? Or is there some better documentation of both methods, i.e. getSnapshot and createImage than the Java API reference?