I am able to do this using the solution I provided.
Use the IMAGE_CAPTURE intent and add extra info to save the result to a
file.
See info on intents and startActivityForResult in the documentation.

    Intent i = new Intent("android.media.action.IMAGE_CAPTURE");
                File photo=new
File(Environment.getExternalStorageDirectory(),  "123.jpg");
                i.putExtra(MediaStore.EXTRA_OUTPUT,
                        Uri.fromFile(photo));
                startActivityForResult(i, 1);


-- 
Carmen
http://www.twitter.com/CarmenDelessio
http://www.talkingandroid.com
http://www.facebook.com/BFFPhoto
http://www.twitter.com/DroidDrop


On Sun, Oct 4, 2009 at 5:03 AM, Rana <[email protected]> wrote:

>
> I am also in this problem. If any solution please help
>
> On Oct 4, 5:48 am, midtoad <[email protected]> wrote:
> > stand further back from your subject.
> >
> > s
> >
> > On Oct 1, 7:37 am, Isuru Samaraweera <[email protected]> wrote:
> >
> >
> >
> > > Hi All,
> > >   I want to capture much largerimagethan the current smallimagecaptured
> > > by the android g1 phone camera.Any clue???
> >
> > > Thanks
> > > Isuru
> >
>

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