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 cut an image with custom shape. The shape is draw with finger by the users. Is this possible in android?

share|improve this question
Everything is possible. – StarsSky Feb 3 at 17:36
I think this could be possible with two BitmapShaders. One would be then original image and then draw user drawn object into other one. For clipping/composing the final image you could put these BitmapShaders into ComposeShader and choose appropriate PorterDuff mode. – harism Feb 3 at 18:05

closed as not a real question by Simon, Radu Murzea, ElYusubov, Jave, Mario Feb 3 at 20:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

As suggested by @harism, you should use BitmapShader

I know one example in which Bitmap is cropped circular, here is a nice code snippet by @Altaf

public Bitmap getCroppedBitmap(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());

    paint.setAntiAlias(true);
    canvas.drawARGB(0, 0, 0, 0);
    paint.setColor(color);
    // canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
    canvas.drawCircle(bitmap.getWidth() / 2, bitmap.getHeight() / 2,
            bitmap.getWidth() / 2, paint);
    paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
    canvas.drawBitmap(bitmap, rect, rect, paint);
    //Bitmap _bmp = Bitmap.createScaledBitmap(output, 60, 60, false);
    //return _bmp;
    return output;
}

And here is Link

Cropping Circular Area from bitmap in android

May be helpful to you.

share|improve this answer

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