Processing image data in java me
Posted
by Trimack
on Stack Overflow
See other posts from Stack Overflow
or by Trimack
Published on 2010-04-17T16:06:09Z
Indexed on
2010/04/17
16:13 UTC
Read the original article
Hit count: 324
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?
© Stack Overflow or respective owner