Re: [android-developers] image capture and get both the original image and a thumbnail

2010-11-01 Thread niedhui
thanks ,this class only work on Api Level 8 On Nov 1, 2010, at 10:49 PM, TreKing wrote: > On Wed, Oct 27, 2010 at 12:36 AM, niedhui wrote: > so is there an easy way to get both the thumbnail and the original picture ? > > Try this? Never used it, so I don't know how it works, but seems usef

Re: [android-developers] image capture and get both the original image and a thumbnail

2010-11-01 Thread TreKing
On Wed, Oct 27, 2010 at 12:36 AM, niedhui wrote: > so is there an easy way to get both the thumbnail and the original picture > ? Try this? Never used it, so I don't know how it works, but seems useful. http://developer.android.com/reference/android/media/ThumbnailUtils.html --

[android-developers] image capture and get both the original image and a thumbnail

2010-10-28 Thread niedhui
hi i want to take a picture with camera, after read the document and googling,I found, if i don't want the original picture,i just use Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, CAPTURE_PICTURE_CODE); to start the camera activity, and in onActi

[android-developers] Image Capture resolution on HTC EVO

2010-07-21 Thread duwei
Hi, I'm trying to capture an image by calling camera utility from "MeidaStore.ACTION_IMAGE_CAPTURE". However, it seems there is only on resolution available 640x480, while the native camera support 8MB resolution. The code to invoke the activity: Intent intent = new Intent(MediaStore.ACTION_IM

[android-developers] Image Capture

2009-06-11 Thread Sharmila
Hi everyone, this is the code that I have for camera preview and image capture.I am trying to do camera preview and as I press the space button I am trying to take picture and save it in the picture gallery of the Android development phone. The code compiles fine,but as I press the space button,it

[android-developers] Image capture

2008-12-02 Thread fala70
Using : Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); startActivityForResult(intent, GET_IMAGE_FROM_CAMERA); is possibile to run the camera capture application, but I didn't understand how get the image file info or data on onActivityResult. somebody know how do it ? thanks