diff options
Diffstat (limited to 'src/PHPImageWorkshop/Exif/ExifOrientations.php')
-rw-r--r-- | src/PHPImageWorkshop/Exif/ExifOrientations.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/PHPImageWorkshop/Exif/ExifOrientations.php b/src/PHPImageWorkshop/Exif/ExifOrientations.php new file mode 100644 index 0000000..94fa5df --- /dev/null +++ b/src/PHPImageWorkshop/Exif/ExifOrientations.php @@ -0,0 +1,19 @@ +<?php + +namespace PHPImageWorkshop\Exif; + +/** + * Container for all EXIF orientations. + */ +final class ExifOrientations +{ + const UNDEFINED = 0; + const TOP_LEFT = 1; + const TOP_RIGHT = 2; + const BOTTOM_RIGHT = 3; + const BOTTOM_LEFT = 4; + const LEFT_TOP = 5; + const RIGHT_TOP = 6; + const RIGHT_BOTTOM = 7; + const LEFT_BOTTOM = 8; +} |