Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to set a certain Drawable as the device's wallpaper, but all wallpaper functions accept Bitmaps only. I cannot use WallpaperManager because I'm pre 2.1.

Also, my drawables are downloaded from the web and do not reside in R.drawable.

share|improve this question

9 Answers

This piece of code helps.

Bitmap icon = BitmapFactory.decodeResource(context.getResources(),
                                           R.drawable.icon_resource);

Edit: Here a version where the image gets downloaded.

String name = c.getString(str_url);
URL url_value = new URL(name);
ImageView profile = (ImageView)v.findViewById(R.id.vdo_icon);
if (profile != null) {
    Bitmap mIcon1 =
        BitmapFactory.decodeStream(url_value.openConnection().getInputStream());
    profile.setImageBitmap(mIcon1);
}
share|improve this answer
1  
Hi Praveen. The drawable I want to set as the wallpaper is not in R.drawable. It is a drawable I downloaded from the web and keep it in an arrayList of type Drawable along with other drawables. – Rob Jun 14 '10 at 8:37
i think you have the url values. then my edited answer should help. – Praveen Jun 14 '10 at 8:49
where does str_url come from? I couldn't find any Drawable function related to strings... thanks for your help. – Rob Jun 14 '10 at 9:08
4  
I think I found something: if "draw" is the drawable I want to convert to a bitmap then: Bitmap bitmap = ((BitmapDrawable)draw).getBitmap(); does the trick! – Rob Jun 14 '10 at 9:29
That's the answer I was looking for. Simple and robust solution. – toro Mar 2 at 16:16
up vote 129 down vote accepted

This converts a BitmapDrawable to a Bitmap.

Drawable d = ImagesArrayList.get(0);  
Bitmap bitmap = ((BitmapDrawable)d).getBitmap();
share|improve this answer
5  
is this really the best way? Surely the drawable could be of another type and this would throw a runtimeException? For example it could be a ninePatchDrawble...? – Dori Jun 9 '11 at 11:38
2  
@Dori you could wrap the code in a conditional statement to check if it is indeed a BitmapDrawable before casting it: if (d instanceof BitmapDrawable) { Bitmap bitmap = ((BitmapDrawable)d).getBitmap(); } – Turbo Jul 9 '11 at 1:57
111  
Can't believe the 64 upvotes? That code obviously only works if d already is a BitmapDrawable, in which case it's trivial to retrieve it as a bitmap... Will crash with ClassCastException in all other cases. – Matthias Nov 3 '11 at 16:12
3  
This answer is WRONG, since it doesn't answer how to convert Drawable, but derived class BitmapDrawable. – mice Dec 7 '12 at 20:55
@Matthias not to mention that.. the question itself, same author, has 100 votes :/ – quinestor Dec 18 '12 at 17:29
show 1 more comment
public static Bitmap drawableToBitmap (Drawable drawable) {
    if (drawable instanceof BitmapDrawable) {
        return ((BitmapDrawable)drawable).getBitmap();
    }

    Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap); 
    drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
    drawable.draw(canvas);

    return bitmap;
}
share|improve this answer
7  
This looks like the only answer that would work for any kind of drawable and also has a quick solution for a drawable that is already a BitmapDrawable. +1 – Matt Wolfe Jun 6 '12 at 22:37
Add @Mauro's solution to this after the check for BitmapDrawable and you've got a very ideal solution with any/ all quicker solutions Incorporated. – Tom Jul 4 '12 at 23:45
This solution works even if the drawable is a 9 patch image. – Prakash Nadar Aug 15 '12 at 18:47
just one amendment: docs says about BitmapDrawable.getBitmap() that it may come back null. I say it may also come back already recycled. – kellogs Sep 1 '12 at 21:20
6  
Watch out: getIntrinsicWidth() and getIntrinsicHieght() will return -1 if drawable is a solid color. – user117 Oct 12 '12 at 13:51
show 1 more comment

A Drawable can be drawn onto a Canvas, and a Canvas can be backed by a Bitmap:

(Updated to handle a quick conversion for BitmapDrawables and to ensure that the Bitmap created has a valid size)

public static Bitmap drawableToBitmap (Drawable drawable) {
    if (drawable instanceof BitmapDrawable) {
        return ((BitmapDrawable)drawable).getBitmap();
    }

    int width = drawable.getIntrinsicWidth();
    width = width > 0 ? width : 1;
    int height = drawable.getIntrinsicHeight();
    height = height > 0 ? height : 1;

    Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap); 
    drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
    drawable.draw(canvas);

    return bitmap;
}
share|improve this answer

very simple

Bitmap tempBMP = BitmapFactory.decodeResource(getResources(),R.drawable.image);
share|improve this answer

Use this code:

Bitmap bitmap= BitmapFactory.decodeResource(context.getResources(), R.drawable.icon_name);

share|improve this answer

Maybe this will help someone...

From PictureDrawable to Bitmap, use:

private Bitmap pictureDrawableToBitmap(PictureDrawable pictureDrawable){ 
    Bitmap bmp = Bitmap.createBitmap(pictureDrawable.getIntrinsicWidth(), pictureDrawable.getIntrinsicHeight(), Config.ARGB_8888); 
    Canvas canvas = new Canvas(bmp); 
    canvas.drawPicture(pictureDrawable.getPicture()); 
    return bmp; 
}

... implemented as such:

Bitmap bmp = pictureDrawableToBitmap((PictureDrawable) drawable);
share|improve this answer
As with Rob's answer, you're requiring a specific type of Drawable, in this case a PictureDrawable. – kabuko Feb 22 '12 at 7:33
2  
"Maybe this will help someone..." – Mauro Feb 22 '12 at 23:08
 // get image path from gallery

    protected void onActivityResult(int requestCode, int resultcode, Intent intent)
   {
  super.onActivityResult(requestCode, resultcode, intent);

  if (requestCode == 1)
  {
      if (intent != null && resultcode == RESULT_OK)
      {             

            Uri selectedImage = intent.getData();

            String[] filePathColumn = {MediaStore.Images.Media.DATA};
            Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null);
            cursor.moveToFirst();
            int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
            filePath = cursor.getString(columnIndex);

            //display image using BitmapFactory

            cursor.close(); bmp = BitmapFactory.decodeFile(filepath); 
            iv.setBackgroundResource(0);
            iv.setImageBitmap(bmp);
    }
}
share|improve this answer
/**
 * This method returns a bitmap related to resource id. It is ready to use method, you can 
 * use it by simply copying in your project.
 * 
 * @param context Context of calling activity
 * @param drawableId Resource ID of bitmap drawable
 * @return Bitmap whose resource id was passed to method.
 */
public static Bitmap getBitmapFromDrawableId(Context context,int drawableId){
    Bitmap bitmap = null;
    try {
        BitmapDrawable drawable = (BitmapDrawable)context.getResources().getDrawable(drawableId);
        bitmap = drawable.getBitmap();

    } catch (Exception e) {
        e.printStackTrace();
    }
    return bitmap;
}
/**
 * This method returns a bitmap related to drawable. It is ready to use method, you can 
 * use it by simply copying in your project.
 * 
 * @param drawable Drawable resource of image 
 * @return Bitmap whose resource id was passed to method.
 */
public static Bitmap getBitmapFromDrawable(Drawable drawable){
    Bitmap bitmap = null;
    try {
        BitmapDrawable bitmapDrawable = (BitmapDrawable)drawable;
        bitmap = bitmapDrawable.getBitmap();

    } catch (Exception e) {
        e.printStackTrace();
    }
    return bitmap;
}
share|improve this answer
5  
All this does is cast a drawable to a bitmap drawable, how is this even useful? – Matt Wolfe Jun 6 '12 at 22:35

protected by Praveen Apr 26 at 9:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.