properly rotate landscape photos

This commit is contained in:
tibbi
2016-06-11 13:11:30 +02:00
parent e06b98c825
commit 9b8a8777f6
3 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
package com.simplemobiletools.camera;
public class Constants {
public static final int ORIENT_PORTRAIT = 0;
public static final int ORIENT_LANDSCAPE_LEFT = 1;
public static final int ORIENT_LANDSCAPE_RIGHT = 2;
}