. f Android capture image from Camera and Gallery ~ Android Developers Blog

Thursday, 20 February 2014

Android capture image from Camera and Gallery

Hello Droid Friends,

Today , I am sharing the code for capture Image from Camera and Gallery . Actually
I found different behavior of Camera capture Intent and Gallery Intent on different
Android devices .

Here are the few issue I found while capturing Image from Camera and Gallery:
1. In some devices like Samsung  the Camera capture Intent returns
    data null or some time gallery Intent returns data null.
2. Android Camera : data intent returns null
3. Android camera capture activity returns null Uri
4. onActivityResult Camera resulting data as null (SAMSUNG)

I too faces all these issue, then I uses below code which works dine for me.

Code:.

1. MainActivity.java:


  1. package com.gallerycamera.demo;  
  2.   
  3. import java.io.IOException;  
  4.   
  5. import android.app.Activity;  
  6. import android.content.Intent;  
  7. import android.database.Cursor;  
  8. import android.graphics.Bitmap;  
  9. import android.net.Uri;  
  10. import android.os.Bundle;  
  11. import android.provider.MediaStore;  
  12. import android.view.Menu;  
  13. import android.view.View;  
  14. import android.widget.Button;  
  15. import android.widget.ImageView;  
  16.   
  17. public class MainActivity extends Activity {  
  18.   
  19.  private static int THUMBNAIL_SIZE = 300;  
  20.  private static final int YOUR_SELECT_PICTURE_REQUEST_CODE = 232;  
  21.   
  22.  private Button button;  
  23.  private ImageView image;  
  24.  private Bitmap bmp;  
  25.   
  26.  @Override  
  27.  protected void onCreate(Bundle savedInstanceState) {  
  28.   super.onCreate(savedInstanceState);  
  29.   setContentView(R.layout.activity_main);  
  30.   
  31.   image = (ImageView) findViewById(R.id.activity_main_image);  
  32.   button = (Button) findViewById(R.id.activity_main_button);  
  33.   button.setOnClickListener(buttonListener);  
  34.  }  
  35.   
  36.  @Override  
  37.  public boolean onCreateOptionsMenu(Menu menu) {  
  38.   getMenuInflater().inflate(R.menu.main, menu);  
  39.   return true;  
  40.  }  
  41.   
  42.  @Override  
  43.  protected void onDestroy() {  
  44.   super.onDestroy();  
  45.   if (bmp != null && !bmp.isRecycled()) {  
  46.    bmp.recycle();  
  47.    bmp = null;  
  48.   }  
  49.  }  
  50.   
  51.  private View.OnClickListener buttonListener = new View.OnClickListener() {  
  52.   @Override  
  53.   public void onClick(View v) {  
  54.    // Determine Uri of camera image to save.  
  55.    FileUtils.createDefaultFolder(MainActivity.this);  
  56.    //final File file = FileUtils.createFile(FileUtils.IMAGE_FILE);  
  57.    //outputFileUri = Uri.fromFile(file);  
  58.    
  59.    // Camera.  
  60.    final Intent captureIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);  
  61.    //captureIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);  
  62.    
  63.    final Intent galleryIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);  
  64.    //galleryIntent.setType("image/*");  
  65.    // Filesystems  
  66.    // galleryIntent.setAction(Intent.ACTION_GET_CONTENT); // To allow file managers or any other app that are not gallery app.  
  67.    
  68.    final Intent chooserIntent = Intent.createChooser(galleryIntent, "Select Image");  
  69.    // Add the camera options.  
  70.    chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { captureIntent });  
  71.    startActivityForResult(chooserIntent, YOUR_SELECT_PICTURE_REQUEST_CODE);  
  72.   }  
  73.  };  
  74.   
  75.  @Override  
  76.  public void onActivityResult(int requestCode, int resultCode, Intent data) {  
  77.   try {  
  78.    //if (resultCode == Activity.RESULT_OK) {  
  79.     if (requestCode == YOUR_SELECT_PICTURE_REQUEST_CODE) {  
  80.       Bundle extras2 = data.getExtras();  
  81.       if (extras2 != null) {      
  82.        Uri selectedImage = data.getData();  
  83.        if (selectedImage != null) {  
  84.         String[] filePathColumn = {MediaStore.Images.Media.DATA};  
  85.         Cursor cursor = getContentResolver().query(  
  86.               selectedImage, filePathColumn, nullnullnull);  
  87.         cursor.moveToFirst();  
  88.   
  89.         int columnIndex = cursor.getColumnIndex(filePathColumn[0]);  
  90.         String filePath = cursor.getString(columnIndex);  
  91.         cursor.close();  
  92.           
  93.         bmp = ImageUtils.getThumbnail(this,filePath, THUMBNAIL_SIZE);  
  94.         image.setImageBitmap(bmp);  
  95.         bmp = null;  
  96.        }  
  97.       }  
  98.      }  
  99.     //}  
  100.      
  101.   } catch (IOException e) {  
  102.    System.out.println(e.getMessage());  
  103.   }  
  104.  }  
  105.   
  106. }  


2. ImageUtils.java

  1. package com.gallerycamera.demo;  
  2.   
  3. import java.io.FileNotFoundException;  
  4. import java.io.IOException;  
  5.   
  6. import android.content.Context;  
  7. import android.graphics.Bitmap;  
  8. import android.graphics.BitmapFactory;  
  9.   
  10. public class ImageUtils {  
  11.   
  12.  /** 
  13.   * Get a thumbnail bitmap. 
  14.   * @param uri 
  15.   * @return a thumbnail bitmap 
  16.   * @throws FileNotFoundException 
  17.   * @throws IOException 
  18.   */  
  19.  public static Bitmap getThumbnail(Context context, String filePath, int thumbnailSize) throws FileNotFoundException, IOException {  
  20.   BitmapFactory.Options onlyBoundsOptions = new BitmapFactory.Options();  
  21.   onlyBoundsOptions.inJustDecodeBounds = true;  
  22.   onlyBoundsOptions.inDither = true;// optional  
  23.   onlyBoundsOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;// optional  
  24.   BitmapFactory.decodeFile(filePath, onlyBoundsOptions);  
  25.   if ((onlyBoundsOptions.outWidth == -1) || (onlyBoundsOptions.outHeight == -1))  
  26.    return null;  
  27.   
  28.   int originalSize = (onlyBoundsOptions.outHeight > onlyBoundsOptions.outWidth) ? onlyBoundsOptions.outHeight : onlyBoundsOptions.outWidth;  
  29.   
  30.   double ratio = (originalSize > thumbnailSize) ? (originalSize / thumbnailSize) : 1.0;  
  31.   
  32.   BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();  
  33.   bitmapOptions.inSampleSize = getPowerOfTwoForSampleRatio(ratio);  
  34.   bitmapOptions.inDither = true;// optional  
  35.   bitmapOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;// optional  
  36.   Bitmap bitmap = BitmapFactory.decodeFile(filePath, bitmapOptions);  
  37.   return bitmap;  
  38.  }  
  39.   
  40.  /** 
  41.   * Resolve the best value for inSampleSize attribute. 
  42.   * @param ratio 
  43.   * @return 
  44.   */  
  45.  private static int getPowerOfTwoForSampleRatio(double ratio) {  
  46.   int k = Integer.highestOneBit((int) Math.floor(ratio));  
  47.   if (k == 0)  
  48.    return 1;  
  49.   else  
  50.    return k;  
  51.  }  
  52.    
  53. }  

Download code Camera and Gallery Demo

Hope this will help some one.
Enjoy Coding.... :)


Mukesh Kumar

Hi Guys I am from Delhi working as Web/Mobile Application Developer(Android Developer), also have knowledge of Roboelctric and Mockito ,android test driven development... Blogging has been my passion and I think blogging is one of the powerful medium to share knowledge and ideas....

0 comments:

Post a Comment

 

Copyright @ 2013 Android Developers Blog.