I would like to change an image I loaded to have round corners.

Any hints, tutorials, best practices you know of?

link|improve this question

feedback

4 Answers

up vote 14 down vote accepted

Why not use clipPath?

protected void onDraw(Canvas canvas) {
    Path clipPath = new Path();
    int w = this.getWidth();
    int h = this.getHeight();
    clipPath.addRoundRect(new RectF(0,0,w,h), 10.0f, 10.0f, Path.Direction.CW);
    canvas.clipPath(clipPath);
    super.onDraw(canvas);
}
link|improve this answer
Haven't tested this yet, but it sounds like this'll do it. Thanks Jerry! – iamkoa Mar 17 '11 at 19:29
1  
Note, after trying this I have found: 1 - you clip canvas first then draw bitmap 2 - it is not faster than using a bitmap mask and the xfer mode overlay 3 - one cannot anti-alias clipPath, while one can anti-alias the paint which draws a mask for the xfer mode overlay. – Lumis Jul 26 '11 at 0:27
This worked great for the case I was looking for, although it was not drawing a bitmap with rounded corners but an entire view. – Jes Sep 20 '11 at 19:27
Apparently clipping does not allow for antialiasing. The result is jagged corners. The solution by Ralpheon is the solution. – Sky Kelsey Nov 5 '11 at 20:16
3  
clipPath isn't supported by the hardware accelerated mode used by some devices that are 3.0 and higher. Expect exceptions if you run this code with hardware acceleration on (and you really want that setting turned on for any phone that supports it) – haseman Jan 4 at 21:15
show 1 more comment
feedback

For a more controlled method draw a rounded rectangle and mask it onto your image using the porter-duff Xfer mode of the paint.

First setup the Xfer paint and the rounded bitmap:

Bitmap myCoolBitmap = ... ; // <-- Your bitmap you want rounded    
int w = myCoolBitmap.getWidth(), h = myCoolBitmap.getHeight();

// We have to make sure our rounded corners have an alpha channel in most cases
Bitmap rounder = Bitmap.createBitmap(w,h,Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(rounder);    

// We're going to apply this paint eventually using a porter-duff xfer mode.
// This will allow us to only overwrite certain pixels. RED is arbitrary. This
// could be any color that was fully opaque (alpha = 255)
Paint xferPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
xferPaint.setColor(Color.RED);

// We're just reusing xferPaint to paint a normal looking rounded box, the 20.f
// is the amount we're rounding by.
canvas.drawRoundRect(new RectF(0,0,w,h), 20.0f, 20.0f, xferPaint);     

// Now we apply the 'magic sauce' to the paint  
xferPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));

Now apply this bitmap ontop of your image:

canvas.drawBitmap(myCoolBitmap, 0,0, null);
canvas.drawBitmap(rounder, 0, 0, xferPaint);

Note: this is not the same canvas as before, it is a canvas to whatever buffer you're drawing to.

link|improve this answer
Wow, very nice! My only concern with this method is speed - if I was applying this technique to nine images at a time, would the app chug? – iamkoa Nov 12 '09 at 19:46
I use this technique in a high performance graphics situation -- and haven't seen any issue with it (even after profiling)! Just make sure to save the xferPaint and the rounder bitmap as a field in your class, creating a bitmap is slow, but drawing it is reasonably fast. – Ralphleon Nov 13 '09 at 19:19
It would be great if you could edit some explanations about the parameters you are using into your post. The sample code looks nice but understanding it is not that easy if you haven't worked with this classes already. – Janusz Jun 23 '10 at 9:38
1  
Good point! I added some more comments. – Ralphleon Jul 1 '10 at 16:50
How does one use the bitmap after done? ie: how would I set my ImageView's bitmap? Would I set it to myCoolBitmap or to rounder? If I set it to rounder, I see a red rounded rectangle behind my object, if I set it to myCoolBitmap, I see the original (non-rounded) bitmap. – TK Kocheran Feb 15 '11 at 19:34
show 3 more comments
feedback

How about creating a NinePatchDrawable image that has just rounded corners and has a transparent body. Overlay your image with an appropriately re-sized version of your NinePatchDrawable.

link|improve this answer
Very good idea, but what if my rounded-corners image is placed over a gradient background? Would this still work? – iamkoa Nov 10 '09 at 8:13
1  
I agree that this is the less hack-ish way to achieve this. You can simply put the image and the image frame into a FrameLayout (in this order) and you're done. – Matthias Jul 28 '10 at 9:37
@iamkoa: Make sure the blank parts of your rounded-corners image are transparent. If you're using a gradient in your corners, then use the pixel's alpha channel. (I use Gimp and set a gradient to go from transparent to your colour.) – pydave Dec 3 '10 at 19:15
This would not work for textured images, in fact it would only work for images with gradient, or solid color. – Sky Kelsey Nov 5 '11 at 18:35
feedback
package com.pkg;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.PorterDuffXfermode;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Bitmap.Config;
import android.graphics.PorterDuff.Mode;
import android.os.Bundle;
import android.os.Environment;
import android.widget.ImageView;

public class RoundedImage extends Activity {
    /** Called when the activity is first created. */
    ImageView imag;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        imag=(ImageView)findViewById(R.id.image);

        //ImageView img1=(ImageView)findViewById(R.id.imageView1);
        BitmapFactory.Options bitopt=new BitmapFactory.Options();
        bitopt.inSampleSize=1;
        // String img=Environment.getExternalStorageDirectory().toString();
        // String filepath =Environment.getExternalStorageDirectory().toString();
        String filepath ="/mnt/sdcard/LOST.DIR";
        File imagefile = new File(filepath + "/logo.jpg");
        FileInputStream fis = null;
        try 
        {
        fis = new FileInputStream(imagefile);
        }  
        catch (FileNotFoundException e1)
        {
        // TODO Auto-generated catch block
        e1.printStackTrace();
        }
        Bitmap bi = BitmapFactory.decodeStream(fis);
        if(bi!=null){
            imag.setImageBitmap(getRoundedCornerBitmap(bi));
        }

    }

    public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) {
    Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
         bitmap.getHeight(), Config.ARGB_8888);
    Canvas canvas = new Canvas(output);

    final int color = 0xff424242;
    final Paint paint = new Paint();
    final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
    final RectF rectF = new RectF(rect);
    final float roundPx = 12;

    paint.setAntiAlias(true);
    canvas.drawARGB(0, 0, 0, 0);
    paint.setColor(color);

    canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

    paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
    canvas.drawBitmap(bitmap, rect, rect, paint);

    return output;
    }
}
link|improve this answer
this code help you to get rounded image . – Swati Jun 22 '11 at 12:00
but this code doesnt help to get rounded corners when we need them transparent. Do you know how to achieve that? – Thiago Jun 28 '11 at 21:49
feedback

Your Answer

 
or
required, but never shown

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