I have written a simple app that opens the camera and passes in a path
for saving any captured images.

The code basically looks like this:

File file = new File( Environment.getExternalStorage() + "myimages/",
"my_image.jpg" );

Uri outputUri = Uri.fromFile( file );

Intent intent = new
Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
Intent.putExtra( MediaStore.EXTRA_OUTPUT, outputUri );

This works perfectly on my Motorola Droid. Images are saved 2592x1936.
However, when tested on the Motorola Milestone, the images are saved
at much smaller sizes such as 320x240 and 1280 x 1900.

It seems like there is some default setting on the Milestone causing
this behavior. The difficult part about this bug is that I don't
actually have the device to test on. This is part of a research
project that is happening in Greece and the Milestones are there. I am
testing at home with a Droid.

Any help would be greatly appreciated.

Thanks,
~Jeremy

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to