This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// imports | |
public class ImageRotator { | |
public static Bitmap rotateImage(String path) throws IOException { | |
Bitmap bitmap = BitmapFactory.decodeFile(path); | |
return rotateImage(bitmap); | |
} | |
public static Bitmap rotateImage(Bitmap bitmap) throws IOException { | |
int rotate = 0; |