[android-developers] Re: Confusion about using Camera to take pictures from my application

2010-01-20 Thread Neil
I'm trying to do this too, except I want a full-sized picture. I have it working. I'm using your code, but without all the extras (maybe those extras are causing your error?) My code: File tmpFile = new File(Environment.getExternalStorageDirectory(), "tmp_" + String.valu

[android-developers] Re: Confusion about using Camera to take pictures from my application

2010-01-20 Thread Streets Of Boston
I'm going to upload a camera app in the market soon that does provide the Uri to full-sized images. If your intent requires an in-memory bitmap, it is still a small-sized image (<100KBytes in size), but the Uri should point to the size of the image as it was taken by the camera. I'm still writing