Za pomocą tego kodu możemy obrócić obraz:Przerzucanie bitmapy poziomo lub pionowo
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);
}
Ale jak możemy odwrócić obraz w pionie lub poziomie?
jak znaleźć środek obrazu? –
@MayurRokade 'source.getWidth()/2f'' source.getHeight()/2f' – weston