Return to Snippet

Revision: 48504
at July 3, 2011 13:51 by arpit


Initial Code
Bitmap bitmapOrg = BitmapFactory.decodeResource(this.getContext().getResources(), R.drawable.moon);
Matrix matrix = new Matrix();
matrix.postRotate(-40);

Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
                    bitmapOrg.getWidth(), bitmapOrg.getHeight(), matrix, true);
BitmapDrawable bmd = new BitmapDrawable(resizedBitmap);

Initial URL


Initial Description


Initial Title
Rotate an image

Initial Tags
android

Initial Language
Java