
Originally Posted by
ad2apps
Hi all
Using the camera midlet code and extending it to other things. The problem is the viewing of the captured image .
standard code-
imageData = videoControl.getSnapshot(null);
capturedImage = Image.createImage(imageData, 0, imageData.length);
then on the captured image form -
Item p = (Item)capturedImage;
THe problem here is that the image is clipped to fit into the item on the form. I have also tried using the imageitem as well but I get no difference. Therefore the question is how can you scale down the image so that it fits within the item like it does when the camera views before the snapshot is taken ?