Thursday, 19 September 2013

Zoom in and rotate simultaneously on seekbar in Android

Zoom in and rotate simultaneously on seekbar in Android

I am working on a project where I need to ZoomIn and rotate the image
simultaneously on seekbar progress value.
I have tried below code. But this is not working. This is just rotating
the image.
Matrix matrix = new Matrix();
matrix.postRotate(curValue);
//matrix.postScale(curValue, curValue);
Bitmap resizedBitmap = Bitmap.createBitmap(bitmaprotate, 0, 0, bmpWidth,
bmpHeight, matrix, true);
mainImage.setImageBitmap(resizedBitmap);

No comments:

Post a Comment