I would like to Scale, Move, Resize Image. I would like to surround the image with Indicators which guide user what operation these indicators perform i.e. Moving, Rotating, Scaling.
I've tried
Is there any library which can do me simple image edit [Move, Scale, Rotate]?
You can use Matrix transaformation to achieve rotating, scaling, and moving....I hope this will help you....
for rotating
Matrix matrix = new Matrix();
matrix.postRotate(90);
for scaling
matrix.postScale(scaleWidth, scaleHeight);
create new bitmap without changing the original one...like this
Bitmap bmp2 = Bitmap.createBitmap(bmp1, 0, 0, pow2, pow2, matrix, true);