Based on this article, I'm trying do capture the photo from camera on Android Emulator. I followed the instructions as per they said. But I didn't get the positive result.

I'm getting the Player is null, while I'm running the WebcamBroadcaster.java(Java Application).

Is anyone achieve this before? If yes, Just let me how to do.

Or

Is there any other option to capture the photo from camera on Android Emulator?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted
+50

In Android emulator 2.1 my code is working to capture image but not working in others version of android

To start camera for capture you can start camera for capture using below intent filter

Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, CAMERA_RESULT);

After capturing you will get the image as bitmap so you need to get activity result

if (resultCode == RESULT_OK && requestCode == CAMERA_RESULT) {
    Bundle extras = data.getExtras();
    if(extras.containsKey("data")) {
        Bitmap bmp = (Bitmap) extras.get("data");
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bmp.compress(Bitmap.CompressFormat.PNG, 100, baos);
        byte[] image = baos.toByteArray();
        if(image != null) {
            //User this byte array in your application
        }
    }else {
        Toast.makeText(getBaseContext(), "Fail to capture Image", Toast.LENGTH_LONG).show();
    }
}
link|improve this answer
Thanks. I'm using Android 2.3.3 version. Is there any other option? – bharath Dec 23 '11 at 6:34
In emulator there is a issue only camera is working for Android-2.1 but in all device it will work fine in which there is a camera hardware so for testing purpose you can use Emulator with Android 2.1 – Dharmendra Dec 23 '11 at 9:13
Thanks Dharmendra. – bharath Dec 23 '11 at 10:04
Is this code working on Android 2.3.3 version? – bharath Dec 24 '11 at 12:58
feedback

As hes mentioning in his article he wrote this code in haste and it may be kinda buggy therefore. It's not said to work everywhere at all.

Im assuming your using exactly this code to run this thing:

CameraSource cs = new SocketCamera("192.168.0.100", 9889, 320, 240, true);
if (!cs.open()) { /* deal with failure to obtain camera */ }
while(/*some condition*/) {
  cs.capture(canvas) //capture the frame onto the canvas
}
cs.close();

What is, by the way, the main purpose of doing such things? All camera aligned things should tested exhaustively on a real device, because it can cause loads of problems which does not occur at an emulator. The camera implementation of the camera is for debug/testing purposes, only!

I would strongly recommend to not spend to much time into getting this running, it won't lead you very far. It still has not been tested on a real device, though, which would be the very most important.

I hope I didn't disappoint you too much with this answer :/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.