I'm using the default camera API of Android 1.6 like this:

                Intent photoIntent = new 
Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                photoIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new 
File
                                (Environment.getExternalStorageDirectory(), 
"test.jpg")));
                startActivityForResult(photoPickerIntent, 1);


But the image is saved on very low resolution 512 x 348. I added the
QUALITY property but it doesn't make sence:

                photoPickerIntent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);


There are many more posts on the internet talking about this issue but
there's no solution (jet). Is it solved on 2.0??? I realy need the
high resolution image (3MP).

Thanks in advance,

Ben

-- 
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