waqasawan44
waqasawan44
No We are also trying, and will post here if we find. On Sat, Aug 19, 2017 at 5:53 PM, kirantpatil wrote: > @SumanBhowmick , > > Did you find...
imageView.setRotation(imageView.getRotation() + 90);
public static Bitmap RotateBitmap(Bitmap source, float angle) { Matrix matrix = new Matrix(); matrix.postRotate(angle); return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix, true); }
no idea